Lines Matching refs:status
31 binder::Status status = service->run(args, &output); in Run() local
32 if (status.isOk()) { in Run()
36 std::cerr << status.exceptionMessage(); in Run()
37 if (status.serviceSpecificErrorCode() != 0) { in Run()
38 return status.serviceSpecificErrorCode(); in Run()
40 return -status.exceptionCode(); in Run()
56 status_t status = getService(String16("lpdump_service"), &service_); in LpdumpService() local
58 while (status != OK && wait_counter++ < 3) { in LpdumpService()
60 status = getService(String16("lpdump"), &service_); in LpdumpService()
62 if (status != OK || service_ == nullptr) { in LpdumpService()
63 std::cerr << "Cannot get lpdump service: " << strerror(-status) << std::endl; in LpdumpService()
64 LOG(ERROR) << "Cannot get lpdump service: " << strerror(-status); in LpdumpService()