Lines Matching refs:Status
21 #include <binder/Status.h>
34 android::binder::Status(android::aidl::tests::ITestService::*func)(T, T*),
37 android::binder::Status status = (*service.*func)(input, &reply);
38 if (!status.isOk() || input != reply) {
39 LOG(ERROR) << "Failed to repeat primitive. status=" << status.toString8()
49 android::binder::Status(android::aidl::tests::ITestService::*func)(
54 android::binder::Status status = (*service.*func)(
56 if (!status.isOk()) {
57 LOG(ERROR) << "Failed to repeat array. status=" << status.toString8()