Home | History | Annotate | Download | only in soundtrigger

Lines Matching defs:status

61         status_t status = remote()->transact(LIST_MODULES, data, &reply);
62 if (status == NO_ERROR) {
63 status = (status_t)reply.readInt32();
66 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
67 if (status == NO_ERROR) {
75 return status;
87 status_t status = reply.readInt32();
91 return status;
99 status_t status = remote()->transact(SET_CAPTURE_STATE, data, &reply);
100 if (status == NO_ERROR) {
101 status = reply.readInt32();
103 return status;
123 status_t status = listModules(modules, &numModules);
124 reply->writeInt32(status);
126 ALOGV("LIST_MODULES status %d got numModules %d", status, numModules);
128 if (status == NO_ERROR) {
146 status_t status = attach(handle, client, module);
147 reply->writeInt32(status);