Lines Matching refs:status
31 status_t status = devicesFactory->registerAsService("example"); in registerDevicesFactoryService() local
32 ALOGE_IF(status != OK, "Error registering devices factory as service: %d", status); in registerDevicesFactoryService()
33 return status; in registerDevicesFactoryService()
39 status_t status = devicesFactory->registerAsService("example"); in registerEffectsFactoryService() local
40 ALOGE_IF(status != OK, "Error registering effects factory as service: %d", status); in registerEffectsFactoryService()
41 return status; in registerEffectsFactoryService()
46 status_t status = registerDevicesFactoryService(); in main() local
47 if (status != OK) { in main()
48 return status; in main()
50 status = registerEffectsFactoryService(); in main()
51 if (status != OK) { in main()
52 return status; in main()