Lines Matching defs:status
63 status_t status = remote()->transact(LIST_MODULES, data, &reply);
64 if (status == NO_ERROR) {
65 status = (status_t)reply.readInt32();
68 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
69 if (status == NO_ERROR) {
77 return status;
88 status_t status = remote()->transact(ATTACH, data, &reply);
89 if (status != NO_ERROR) {
90 return status;
92 status = reply.readInt32();
96 return status;
104 status_t status = remote()->transact(SET_CAPTURE_STATE, data, &reply);
105 if (status == NO_ERROR) {
106 status = reply.readInt32();
108 return status;
136 status_t status = listModules(modules, &numModules);
137 reply->writeInt32(status);
139 ALOGV("LIST_MODULES status %d got numModules %d", status, numModules);
141 if (status == NO_ERROR) {
159 status_t status = attach(handle, client, module);
160 reply->writeInt32(status);