Home | History | Annotate | Download | only in libaudioclient

Lines Matching refs:status

66     status_t status = NO_INIT;
68 status = mAudioTrack->start();
70 return status;
74 status_t status = NO_INIT;
77 status = NO_ERROR;
79 return status;
84 status_t status = NO_INIT;
87 status = NO_ERROR;
89 return status;
97 status_t status = NO_INIT;
102 status = NO_ERROR;
104 return status;
108 binder::Status TrackPlayerBase::applyVolumeShaper(
117 VolumeShaper::Status status = mAudioTrack->applyVolumeShaper(spConfiguration, spOperation);
118 if (status < 0) { // a non-negative value is the volume shaper id.
119 ALOGE("TrackPlayerBase::applyVolumeShaper() failed with status %d", status);
121 return binder::Status::fromStatusT(status);
125 return binder::Status::ok();