Lines Matching defs:status

111                                 status_t *status)
165 ALOGE("createTrack returned an IAudioTrack but with status %d", lStatus);
170 if (status != NULL) {
171 *status = lStatus;
191 status_t *status)
258 "or buffers but with status %d", lStatus);
267 if (status != NULL) {
268 *status = lStatus;
470 status_t status = remote()->transact(OPEN_OUTPUT, data, &reply);
471 if (status != NO_ERROR) {
473 return status;
475 status = (status_t)reply.readInt32();
476 if (status != NO_ERROR) {
478 return status;
546 status_t status = remote()->transact(OPEN_INPUT, data, &reply);
547 if (status != NO_ERROR) {
549 return status;
551 status = (status_t)reply.readInt32();
552 if (status != NO_ERROR) {
554 return status;
596 status_t status = reply.readInt32();
597 if (status == NO_ERROR) {
607 return status;
615 status_t status = remote()->transact(GET_INPUT_FRAMES_LOST, data, &reply);
616 if (status != NO_ERROR) {
627 status_t status = remote()->transact(NEW_AUDIO_SESSION_ID, data, &reply);
629 if (status == NO_ERROR) {
657 status_t status = remote()->transact(QUERY_NUM_EFFECTS, data, &reply);
658 if (status != NO_ERROR) {
659 return status;
661 status = reply.readInt32();
662 if (status != NO_ERROR) {
663 return status;
679 status_t status = remote()->transact(QUERY_EFFECT, data, &reply);
680 if (status != NO_ERROR) {
681 return status;
683 status = reply.readInt32();
684 if (status != NO_ERROR) {
685 return status;
700 status_t status = remote()->transact(GET_EFFECT_DESCRIPTOR, data, &reply);
701 if (status != NO_ERROR) {
702 return status;
704 status = reply.readInt32();
705 if (status != NO_ERROR) {
706 return status;
719 status_t *status,
728 if (status != NULL) {
729 *status = BAD_VALUE;
757 if (status != NULL) {
758 *status = lStatus;
818 status_t status = remote()->transact(LIST_AUDIO_PORTS, data, &reply);
819 if (status != NO_ERROR ||
820 (status = (status_t)reply.readInt32()) != NO_ERROR) {
821 return status;
825 return status;
835 status_t status = remote()->transact(GET_AUDIO_PORT, data, &reply);
836 if (status != NO_ERROR ||
837 (status = (status_t)reply.readInt32()) != NO_ERROR) {
838 return status;
841 return status;
853 status_t status = remote()->transact(CREATE_AUDIO_PATCH, data, &reply);
854 if (status != NO_ERROR ||
855 (status = (status_t)reply.readInt32()) != NO_ERROR) {
856 return status;
859 return status;
866 status_t status = remote()->transact(RELEASE_AUDIO_PATCH, data, &reply);
867 if (status != NO_ERROR) {
868 status = (status_t)reply.readInt32();
870 return status;
881 status_t status = remote()->transact(LIST_AUDIO_PATCHES, data, &reply);
882 if (status != NO_ERROR ||
883 (status = (status_t)reply.readInt32()) != NO_ERROR) {
884 return status;
888 return status;
898 status_t status = remote()->transact(SET_AUDIO_PORT_CONFIG, data, &reply);
899 if (status != NO_ERROR) {
900 status = (status_t)reply.readInt32();
902 return status;
909 status_t status = remote()->transact(GET_AUDIO_HW_SYNC, data, &reply);
910 if (status != NO_ERROR) {
926 status_t status = remote()->transact(FRAME_COUNT_HAL, data, &reply);
927 if (status != NO_ERROR) {
961 status_t status = NO_ERROR;
966 status = DEAD_OBJECT;
971 &sessionId, clientUid, &status);
972 LOG_ALWAYS_FATAL_IF((track != 0) != (status == NO_ERROR));
977 reply->writeInt32(status);
997 status_t status = NO_ERROR;
1001 &status);
1002 LOG_ALWAYS_FATAL_IF((record != 0) != (status == NO_ERROR));
1007 reply->writeInt32(status);
1142 status_t status = openOutput(module, &output, &config,
1145 reply->writeInt32((int32_t)status);
1146 if (status == NO_ERROR) {
1189 status_t status = openInput(module, &input, &config,
1191 reply->writeInt32((int32_t) status);
1192 if (status == NO_ERROR) {
1221 status_t status = getRenderPosition(&halFrames, &dspFrames, output);
1222 reply->writeInt32(status);
1223 if (status == NO_ERROR) {
1257 status_t status = queryNumberEffects(&numEffects);
1258 reply->writeInt32(status);
1259 if (status == NO_ERROR) {
1267 status_t status = queryEffect(data.readInt32(), &desc);
1268 reply->writeInt32(status);
1269 if (status == NO_ERROR) {
1279 status_t status = getEffectDescriptor(&uuid, &desc);
1280 reply->writeInt32(status);
1281 if (status == NO_ERROR) {
1297 status_t status = NO_ERROR;
1302 opPackageName, &status, &id, &enabled);
1303 reply->writeInt32(status);
1354 status_t status = listAudioPorts(&numPorts, ports);
1355 reply->writeInt32(status);
1357 if (status == NO_ERROR) {
1372 status_t status = getAudioPort(&port);
1373 reply->writeInt32(status);
1374 if (status == NO_ERROR) {
1387 status_t status = createAudioPatch(&patch, &handle);
1388 reply->writeInt32(status);
1389 if (status == NO_ERROR) {
1398 status_t status = releaseAudioPatch(handle);
1399 reply->writeInt32(status);
1417 status_t status = listAudioPatches(&numPatches, patches);
1418 reply->writeInt32(status);
1420 if (status == NO_ERROR) {
1433 status_t status = setAudioPortConfig(&config);
1434 reply->writeInt32(status);