Lines Matching refs:status
170 status_t status = mAudioTrack->initCheck();
171 if (status != NO_ERROR) {
173 ALOGE("open(), initCheck() returned %d", status);
174 return AAudioConvert_androidToAAudioResult(status);
474 status_t status = mAudioTrack->getTimestamp(&extendedTimestamp);
475 if (status == WOULD_BLOCK) {
477 } if (status != NO_ERROR) {
478 return AAudioConvert_androidToAAudioResult(status);
497 status_t status = NO_INIT;
501 status = NO_ERROR;
503 return status;
519 binder::Status status = mAudioTrack->applyVolumeShaper(spConfiguration, spOperation);
520 if (status < 0) { // a non-negative value is the volume shaper id.
521 ALOGE("applyVolumeShaper() failed with status %d", status);
523 return binder::Status::fromStatusT(status);