Searched defs:status (Results 1 - 25 of 305) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraBase.cpp101 status_t status = NO_ERROR; local
106 status = (cs.get()->*fnConnectService)(cl, cameraId, clientPackageName, clientUid,
109 if (status == OK && c->mCamera != 0) {
H A DICameraService.cpp161 status_t status = reply.readInt32();
165 return status;
183 status_t status = reply.readInt32();
187 return status;
208 status_t status = reply.readInt32();
212 return status;
286 status_t status = connect(cameraClient, cameraId, local
289 reply->writeInt32(status);
306 status_t status = connectPro(cameraClient, cameraId, local
309 reply->writeInt32(status);
326 status_t status = connectDevice(cameraClient, cameraId, local
[all...]
H A DICameraServiceListener.cpp44 virtual void onStatusChanged(Status status, int32_t cameraId) argument
50 data.writeInt32(static_cast<int32_t>(status));
74 Status status = static_cast<Status>(data.readInt32()); local
77 onStatusChanged(status, cameraId);
H A DProCamera.cpp87 ALOGE("%s: Unknown lock status: %d",
292 status_t status = c->getCameraInfo(cameraId, &ptr); local
294 if (status != OK) {
295 ALOGE("%s: Failed to get camera info, error = %d", __FUNCTION__, status);
/frameworks/av/camera/tests/
H A DProCameraTests.cpp81 void onStatusChanged(Status status, int32_t cameraId) { argument
82 dout << "On status changed: 0x" << std::hex
83 << (unsigned int) status << " cameraId " << cameraId
88 mLatestStatus = status;
615 // we immediately get a callback to the current status
653 dout << "Unknown status change "
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp539 int status; local
540 pid_t actualPid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
543 } else if (status != 0) {
544 ALOGW("'am broadcast' exited with status=%d", status);
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp45 data->writeInt32(handle->status);
77 handle->status = data.readInt32();
741 const status_t status = reply.readInt32(); local
742 ALOGV("Return value of decrypt() is %d", status);
748 return status;
840 status_t status = setDrmServiceListener(uniqueId, drmServiceListener); local
842 reply->writeInt32(status);
1052 const status_t status = saveRights(uniqueId, drmRights, local
1056 reply->writeInt32(status);
1118 const status_t status local
1138 const status_t status local
1170 const status_t status = removeRights(uniqueId, path); local
1181 const status_t status = removeAllRights(data.readInt32()); local
1274 status_t status = getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray); local
1378 const status_t status = closeDecryptSession(uniqueId, handle); local
1400 const status_t status local
1436 const status_t status local
1463 const status_t status = finalizeDecryptUnit(uniqueId, &handle, data.readInt32()); local
[all...]
H A DIDrmServiceListener.cpp52 status_t status = notify(DrmInfoEvent(uniqueId, type, message)); local
53 reply->writeInt32(status);
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp172 status_t status = DRM_ERROR_UNKNOWN; local
174 status = getDrmManagerService()->consumeRights(
177 return status;
183 status_t status = DRM_ERROR_UNKNOWN; local
185 status = getDrmManagerService()->setPlaybackStatus(
188 return status;
203 status_t status = DRM_ERROR_UNKNOWN; local
205 status = getDrmManagerService()->removeRights(uniqueId, path);
207 return status;
240 status_t status local
273 status_t status = DRM_ERROR_UNKNOWN; local
284 status_t status = DRM_ERROR_UNKNOWN; local
296 status_t status = DRM_ERROR_UNKNOWN; local
308 status_t status = DRM_ERROR_UNKNOWN; local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp83 int FwdLockEngine::getConvertedStatus(FwdLockConv_Status_t status) { argument
86 switch(status) {
95 "Returning STATUS_INPUTDATA_ERROR", status);
100 "Returning STATUS_ERROR", status);
506 decryptHandle->status = RightsStatus::RIGHTS_VALID;
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c240 * @return A status code.
243 FwdLockConv_Status_t status; local
252 status = FwdLockConv_Status_OutOfMemory;
256 status = FwdLockConv_Status_ProgramError;
263 status = FwdLockConv_Status_ProgramError;
270 status = FwdLockConv_Status_OK;
276 return status;
311 * @return A status code.
330 * @return A status code.
334 FwdLockConv_Status_t status local
471 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
528 FwdLockConv_Status_t status; local
550 FwdLockConv_Status_t status; local
597 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
869 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
937 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
1078 FwdLockConv_Status_t status; local
1111 FwdLockConv_Status_t status; local
1171 FwdLockConv_Status_t status; local
1201 FwdLockConv_Status_t status; local
1255 FwdLockConv_Status_t status; local
[all...]
/frameworks/av/include/drm/
H A Ddrm_framework_common.h192 * Defines constants related to status of the rights
290 * Defines the status of the rights like
293 int status; member in class:android::DecryptHandle
316 status(INVALID_VALUE),
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewPlayer.cpp2017 void PreviewPlayer::postStreamDoneEvent_l(status_t status) { argument
2023 mStreamDoneStatus = status;
H A DVideoEditorAudioPlayer.cpp211 ALOGV("reachedEOS: status=%d", mFinalStatus);
644 status_t status = OK; local
649 status = mFirstBufferResult;
656 status = mSource->read(&mInputBuffer, &options);
660 if (status == OK)
800 CHECK((status == OK && mInputBuffer != NULL)
801 || (status != OK && mInputBuffer == NULL));
805 if (status != OK) {
806 ALOGV("fillBuffer: mSource->read returned err %d", status);
812 mFinalStatus = status;
[all...]
H A DVideoEditorPlayer.cpp476 status_t status = mTrack->start(); local
477 if (status == NO_ERROR) {
480 return status;
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorVideoDecoder.cpp675 status_t status = OK; local
682 status = client.connect();
683 CHECK(status == OK);
927 status_t status = OK; local
1030 status = pDecShellContext->mClient.connect();
1031 VIDEOEDITOR_CHECK(OK == status, M4ERR_SF_DECODER_RSRC_FAIL);
1071 status = pDecShellContext->mVideoDecoder->start();
1072 VIDEOEDITOR_CHECK(OK == status, M4ERR_SF_DECODER_RSRC_FAIL);
1095 status_t status = OK; local
1198 status
[all...]
/frameworks/av/media/common_time/
H A DICommonClock.cpp57 status_t status = remote()->transact(IS_COMMON_TIME_VALID, local
60 if (status == OK) {
61 status = reply.readInt32();
62 if (status == OK) {
67 return status;
75 status_t status = remote()->transact(COMMON_TIME_TO_LOCAL_TIME, local
77 if (status == OK) {
78 status = reply.readInt32();
79 if (status == OK) {
83 return status;
91 status_t status = remote()->transact(LOCAL_TIME_TO_COMMON_TIME, local
105 status_t status = remote()->transact(GET_COMMON_TIME, data, &reply); local
118 status_t status = remote()->transact(GET_COMMON_FREQ, data, &reply); local
131 status_t status = remote()->transact(GET_LOCAL_TIME, data, &reply); local
144 status_t status = remote()->transact(GET_LOCAL_FREQ, data, &reply); local
157 status_t status = remote()->transact(GET_ESTIMATED_ERROR, data, &reply); local
170 status_t status = remote()->transact(GET_TIMELINE_ID, data, &reply); local
183 status_t status = remote()->transact(GET_STATE, data, &reply); local
196 status_t status = remote()->transact(GET_MASTER_ADDRESS, data, &reply); local
211 status_t status = remote()->transact(REGISTER_LISTENER, data, &reply); local
225 status_t status = remote()->transact(UNREGISTER_LISTENER, data, &reply); local
246 status_t status = isCommonTimeValid(&valid, &timelineID); local
259 status_t status = commonTimeToLocalTime(commonTime, &localTime); local
271 status_t status = localTimeToCommonTime(localTime, &commonTime); local
282 status_t status = getCommonTime(&commonTime); local
293 status_t status = getCommonFreq(&freq); local
304 status_t status = getLocalTime(&localTime); local
315 status_t status = getLocalFreq(&freq); local
326 status_t status = getEstimatedError(&error); local
337 status_t status = getTimelineID(&id); local
348 status_t status = getState(&state); local
359 status_t status = getMasterAddr(&addr); local
378 status_t status = registerListener(listener); local
387 status_t status = unregisterListener(listener); local
[all...]
H A DICommonTimeConfig.cpp59 status_t status = remote()->transact(GET_MASTER_ELECTION_PRIORITY, local
62 if (status == OK) {
63 status = reply.readInt32();
64 if (status == OK) {
69 return status;
76 status_t status = remote()->transact(SET_MASTER_ELECTION_PRIORITY, local
79 if (status == OK) {
80 status = reply.readInt32();
83 return status;
89 status_t status local
114 status_t status = remote()->transact(SET_MASTER_ELECTION_ENDPOINT, local
127 status_t status = remote()->transact(GET_MASTER_ELECTION_GROUP_ID, local
145 status_t status = remote()->transact(SET_MASTER_ELECTION_GROUP_ID, local
159 status_t status = remote()->transact(GET_INTERFACE_BINDING, local
176 status_t status = remote()->transact(SET_INTERFACE_BINDING, local
189 status_t status = remote()->transact(GET_MASTER_ANNOUNCE_INTERVAL, local
206 status_t status = remote()->transact(SET_MASTER_ANNOUNCE_INTERVAL, local
219 status_t status = remote()->transact(GET_CLIENT_SYNC_INTERVAL, local
236 status_t status = remote()->transact(SET_CLIENT_SYNC_INTERVAL, local
249 status_t status = remote()->transact(GET_PANIC_THRESHOLD, local
266 status_t status = remote()->transact(SET_PANIC_THRESHOLD, local
279 status_t status = remote()->transact(GET_AUTO_DISABLE, local
296 status_t status = remote()->transact(SET_AUTO_DISABLE, local
310 status_t status = remote()->transact(FORCE_NETWORKLESS_MASTER_MODE, local
332 status_t status = getMasterElectionPriority(&priority); local
343 status_t status = setMasterElectionPriority(priority); local
351 status_t status = getMasterElectionEndpoint(&addr); local
371 status_t status; local
386 status_t status = getMasterElectionGroupId(&id); local
397 status_t status = setMasterElectionGroupId(id); local
405 status_t status = getInterfaceBinding(ret); local
417 status_t status = setInterfaceBinding(ifaceName); local
425 status_t status = getMasterAnnounceInterval(&interval); local
436 status_t status = setMasterAnnounceInterval(interval); local
444 status_t status = getClientSyncInterval(&interval); local
455 status_t status = setClientSyncInterval(interval); local
463 status_t status = getPanicThreshold(&threshold); local
474 status_t status = setPanicThreshold(threshold); local
482 status_t status = getAutoDisable(&autoDisable); local
493 status_t status = setAutoDisable(autoDisable); local
500 status_t status = forceNetworklessMasterMode(); local
[all...]
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp499 int status; local
532 LVM_ReturnStatus_en LvmStatus=LVM_SUCCESS; /* Function call status */
714 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
780 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
831 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
878 LVM_ReturnStatus_en LvmStatus=LVM_SUCCESS; /* Function call status */
1036 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
1077 LVM_ReturnStatus_en LvmStatus=LVM_SUCCESS; /* Function call status */
1117 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
1144 LVM_ReturnStatus_en LvmStatus=LVM_SUCCESS; /* Function call status */
1763 int status = 0; local
1833 int status = 0; local
1881 int status = 0; local
1951 int status = 0; local
1999 int status = 0; local
2173 int status = 0; local
2257 int status = 0; local
2348 int status = 0; local
2592 int status = 0; local
3152 int status = 0; local
[all...]
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/
H A DEffectReverb.cpp417 LVREV_ReturnStatus_en LvmStatus = LVREV_SUCCESS; /* Function call status */
559 LVREV_ReturnStatus_en LvmStatus=LVREV_SUCCESS; /* Function call status */
709 int status; local
747 LVREV_ReturnStatus_en LvmStatus=LVREV_SUCCESS; /* Function call status */
962 LVREV_ReturnStatus_en LvmStatus=LVREV_SUCCESS; /* Function call status */
997 LVREV_ReturnStatus_en LvmStatus=LVREV_SUCCESS; /* Function call status */
1035 LVREV_ReturnStatus_en LvmStatus=LVREV_SUCCESS; /* Function call status */
1080 LVREV_ReturnStatus_en LvmStatus=LVREV_SUCCESS; /* Function call status */
1126 LVREV_ReturnStatus_en LvmStatus=LVREV_SUCCESS; /* Function call status */
1165 LVREV_ReturnStatus_en LvmStatus=LVREV_SUCCESS; /* Function call status */
1539 int status = 0; local
1753 int status = 0; local
1860 int status = 0; local
[all...]
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp297 int status = 0; local
325 status = -EINVAL;
350 status = -EINVAL;
353 return status;
358 int status = 0; local
366 status = agc->set_target_level_dbfs(-(*(int16_t *)pValue / 100));
370 status = agc->set_compression_gain_db(*(int16_t *)pValue / 100);
374 status = agc->enable_limiter(*(bool *)pValue);
381 status = agc->set_target_level_dbfs(-(pProperties->targetLevel / 100));
382 if (status !
460 int status = 0; local
482 int status = 0; local
583 int status = 0; local
589 int status = 0; local
640 int status = 0; local
755 int status = 0; local
773 int status = -ENOMEM; local
893 int status; local
1039 int status = session->apm->set_num_reverse_channels(inCnl); local
1131 int status = 0; local
1166 int status = 0; local
1344 int status; local
1717 int status = 0; local
1828 int status; local
1859 int status; local
[all...]
/frameworks/av/media/libeffects/proxy/
H A DEffectProxy.cpp183 int status = 0; local
190 status = EffectCreate(&pContext->desc[SUB_FX_HOST].uuid,
193 if (status != NO_ERROR || (pContext->eHandle[SUB_FX_HOST] == NULL)) {
195 return status;
200 status = EffectCreate(&pContext->desc[SUB_FX_OFFLOAD].uuid,
203 if (status != NO_ERROR || (pContext->eHandle[SUB_FX_OFFLOAD] == NULL)) {
237 status = (*pContext->eHandle[SUB_FX_OFFLOAD])->command(
240 return status;
284 subStatus[i] = &status;
297 return status;
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DEffectEqualizer.cpp294 int status; local
365 int status = 0; local
433 status = -EINVAL;
444 status = -EINVAL;
455 status = -EINVAL;
483 status = -EINVAL;
506 status = -EINVAL;
510 return status;
534 int status = 0; local
547 status
[all...]
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp134 ALOGE("set(): AudioFlinger could not create effect, status: %d", mStatus);
155 ALOGV("set() %p OK effect: %s id: %d status %d enabled %d", this, mDescriptor.name, mId,
202 status_t status = NO_ERROR; local
208 status = mIEffect->enable();
211 status = mIEffect->disable();
213 if (status == NO_ERROR) {
217 return status;
227 ALOGV("command() bad status %d", mStatus);
241 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData); local
244 if (status
345 status_t status = DEAD_OBJECT; local
[all...]
H A DAudioRecord.cpp48 status_t status = AudioSystem::getInputBufferSize(sampleRate, format, channelMask, &size); local
49 if (status != NO_ERROR) {
50 ALOGE("AudioSystem could not query the input buffer size; status %d", status);
217 status_t status = AudioRecord::getMinFrameCount(&minFrameCount, local
219 if (status != NO_ERROR) {
220 ALOGE("getMinFrameCount() failed; status %d", status);
221 return status;
246 status
296 status_t status = NO_ERROR; local
426 status_t status; local
573 status_t status = NO_ERROR; local
[all...]

Completed in 363 milliseconds

1234567891011>>