Home | History | Annotate | Download | only in soundtrigger

Lines Matching defs:status

62         status_t status = remote()->transact(LOAD_SOUND_MODEL, data, &reply);
63 if (status != NO_ERROR ||
64 (status = (status_t)reply.readInt32()) != NO_ERROR) {
65 return status;
68 return status;
76 status_t status = remote()->transact(UNLOAD_SOUND_MODEL, data, &reply);
77 if (status != NO_ERROR) {
78 status = (status_t)reply.readInt32();
80 return status;
95 status_t status = remote()->transact(START_RECOGNITION, data, &reply);
96 if (status != NO_ERROR) {
97 status = (status_t)reply.readInt32();
99 return status;
107 status_t status = remote()->transact(STOP_RECOGNITION, data, &reply);
108 if (status != NO_ERROR) {
109 status = (status_t)reply.readInt32();
111 return status;
135 status_t status = loadSoundModel(modelMemory, &handle);
136 reply->writeInt32(status);
137 if (status == NO_ERROR) {
146 status_t status = unloadSoundModel(handle);
147 reply->writeInt32(status);
158 status_t status = startRecognition(handle, dataMemory);
159 reply->writeInt32(status);
166 status_t status = stopRecognition(handle);
167 reply->writeInt32(status);