Home | History | Annotate | Download | only in libmedia

Lines Matching refs:lStatus

126         status_t lStatus = remote()->transact(CREATE_TRACK, data, &reply);
127 if (lStatus != NO_ERROR) {
128 ALOGE("createTrack error: %s", strerror(-lStatus));
139 lStatus = reply.readInt32();
143 *status = lStatus;
175 status_t lStatus = remote()->transact(OPEN_RECORD, data, &reply);
176 if (lStatus != NO_ERROR) {
177 ALOGE("openRecord error: %s", strerror(-lStatus));
187 lStatus = reply.readInt32();
189 if (lStatus == NO_ERROR) {
192 lStatus = UNKNOWN_ERROR;
196 ALOGE("openRecord returned an IAudioRecord but with status %d", lStatus);
202 *status = lStatus;
672 status_t lStatus = remote()->transact(CREATE_EFFECT, data, &reply);
673 if (lStatus != NO_ERROR) {
674 ALOGE("createEffect error: %s", strerror(-lStatus));
676 lStatus = reply.readInt32();
689 *status = lStatus;