Lines Matching full:lstatus
140 status_t lStatus = remote()->transact(CREATE_TRACK, data, &reply);
141 if (lStatus != NO_ERROR) {
142 ALOGE("createTrack error: %s", strerror(-lStatus));
156 lStatus = reply.readInt32();
158 if (lStatus == NO_ERROR) {
161 lStatus = UNKNOWN_ERROR;
165 ALOGE("createTrack returned an IAudioTrack but with status %d", lStatus);
171 *status = lStatus;
216 status_t lStatus = remote()->transact(OPEN_RECORD, data, &reply);
217 if (lStatus != NO_ERROR) {
218 ALOGE("openRecord error: %s", strerror(-lStatus));
236 lStatus = reply.readInt32();
246 if (lStatus == NO_ERROR) {
249 lStatus = UNKNOWN_ERROR;
252 lStatus = NO_MEMORY;
258 "or buffers but with status %d", lStatus);
261 if (lStatus != NO_ERROR) {
268 *status = lStatus;
741 status_t lStatus = remote()->transact(CREATE_EFFECT, data, &reply);
742 if (lStatus != NO_ERROR) {
743 ALOGE("createEffect error: %s", strerror(-lStatus));
745 lStatus = reply.readInt32();
758 *status = lStatus;