Lines Matching refs:status

97                                 status_t *status)
132 if (status) {
133 *status = lStatus;
147 status_t *status)
175 if (status) {
176 *status = lStatus;
501 status_t status = reply.readInt32();
502 if (status == NO_ERROR) {
512 return status;
528 status_t status = remote()->transact(NEW_AUDIO_SESSION_ID, data, &reply);
530 if (status == NO_ERROR) {
556 status_t status = remote()->transact(QUERY_NUM_EFFECTS, data, &reply);
557 if (status != NO_ERROR) {
558 return status;
560 status = reply.readInt32();
561 if (status != NO_ERROR) {
562 return status;
578 status_t status = remote()->transact(QUERY_EFFECT, data, &reply);
579 if (status != NO_ERROR) {
580 return status;
582 status = reply.readInt32();
583 if (status != NO_ERROR) {
584 return status;
599 status_t status = remote()->transact(GET_EFFECT_DESCRIPTOR, data, &reply);
600 if (status != NO_ERROR) {
601 return status;
603 status = reply.readInt32();
604 if (status != NO_ERROR) {
605 return status;
617 status_t *status,
626 if (status) {
627 *status = BAD_VALUE;
654 if (status) {
655 *status = lStatus;
720 status_t status;
723 channelMask, frameCount, &flags, buffer, output, tid, &sessionId, &status);
726 reply->writeInt32(status);
740 status_t status;
742 sampleRate, format, channelMask, frameCount, flags, tid, &sessionId, &status);
744 reply->writeInt32(status);
952 status_t status = getRenderPosition(&halFrames, &dspFrames, output);
953 reply->writeInt32(status);
954 if (status == NO_ERROR) {
986 status_t status = queryNumberEffects(&numEffects);
987 reply->writeInt32(status);
988 if (status == NO_ERROR) {
996 status_t status = queryEffect(data.readInt32(), &desc);
997 reply->writeInt32(status);
998 if (status == NO_ERROR) {
1008 status_t status = getEffectDescriptor(&uuid, &desc);
1009 reply->writeInt32(status);
1010 if (status == NO_ERROR) {
1023 status_t status;
1028 &status, &id, &enabled);
1029 reply->writeInt32(status);