Searched defs:status (Results 226 - 250 of 380) sorted by relevance

1234567891011>>

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DBatteryMeterView.java82 // current battery status
88 int status; field in class:BatteryMeterView.BatteryTracker
108 status = intent.getIntExtra(BatteryManager.EXTRA_STATUS,
/frameworks/base/telecomm/java/android/telecom/
H A DInCallService.java327 * @param status Status of the session modify request. Valid values are
334 public abstract void onSessionModifyResponseReceived(int status, argument
/frameworks/native/cmds/servicemanager/
H A Dbinder.c170 int status)
185 if (status) {
189 data.txn.data.ptr.buffer = (uintptr_t)&status;
167 binder_send_reply(struct binder_state *bs, struct binder_io *reply, binder_uintptr_t buffer_to_free, int status) argument
/frameworks/native/include/android/
H A Dsensor.h116 int8_t status; member in struct:ASensorVector
146 int8_t status; member in struct:AHeartRateEvent
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DUiccSmsController.java53 updateMessageOnIccEf(String callingPackage, int index, int status, byte[] pdu) argument
56 index, status, pdu);
60 updateMessageOnIccEfForSubscriber(int subId, String callingPackage, int index, int status, argument
64 return iccSmsIntMgr.updateMessageOnIccEf(callingPackage, index, status, pdu);
72 public boolean copyMessageToIccEf(String callingPackage, int status, byte[] pdu, byte[] smsc) argument
74 return copyMessageToIccEfForSubscriber(getPreferredSmsSubscription(), callingPackage, status,
78 public boolean copyMessageToIccEfForSubscriber(int subId, String callingPackage, int status, argument
82 return iccSmsIntMgr.copyMessageToIccEf(callingPackage, status, pdu, smsc);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DSmsMessage.java92 * Here, the error class is defined by the bits from 9-8, the status code by the bits from 7-0.
95 private int status; field in class:SmsMessage
244 // First byte is status: RECEIVED_READ, RECEIVED_UNREAD, STORED_SENT,
432 * Returns the status for a previously submitted message.
433 * For not interfering with status codes from GSM, this status code is
438 return (status << 16);
764 // other messages, it would be unclear what the status
768 // indicate successful delivery (status == 0).
773 status
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp163 // All error returns from this method are via notifyPrepared(status) followed by "return".
421 CacheStatus_t status = getCacheRemaining(&eos); local
423 if (eos || status == kStatusHigh
424 || ((mStateFlags & kFlagPreparing) && (status >= kStatusEnough))) {
598 // Prepared state, prefetch status notifications
603 // to replace by a new signalPrepareCompletion(status) if we re-visit this later.
609 // status code but we can provide a more specific one.
714 // cache status is evaluated against duration thresholds
731 // cache status is evaluated against cache amount thresholds
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeToBuffQueue.cpp133 SLuint32 status; local
135 result = (*caller)->GetPrefetchStatus(caller, &status);
138 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
391 /* Get the prefetch status interface which was explicitly requested */
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp757 int status; local
758 pid_t actualPid = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
761 } else if (status != 0) {
762 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...]
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp183 status_t status = DRM_ERROR_UNKNOWN; local
185 status = getDrmManagerService()->consumeRights(
188 return status;
194 status_t status = DRM_ERROR_UNKNOWN; local
196 status = getDrmManagerService()->setPlaybackStatus(
199 return status;
214 status_t status = DRM_ERROR_UNKNOWN; local
216 status = getDrmManagerService()->removeRights(uniqueId, path);
218 return status;
251 status_t status local
284 status_t status = DRM_ERROR_UNKNOWN; local
295 status_t status = DRM_ERROR_UNKNOWN; local
307 status_t status = DRM_ERROR_UNKNOWN; local
319 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);
507 decryptHandle->status = RightsStatus::RIGHTS_VALID;
/frameworks/av/media/libmedia/
H A DAudioRecord.cpp47 status_t status = AudioSystem::getInputBufferSize(sampleRate, format, channelMask, &size); local
48 if (status != NO_ERROR) {
50 "channelMask %#x; status %d", sampleRate, format, channelMask, status);
51 return status;
239 status_t status = openRecord_l(0 /*epoch*/); local
241 if (status != NO_ERROR) {
247 return status;
287 status_t status = NO_ERROR; local
290 status
419 status_t status; local
629 status_t status = NO_ERROR; local
[all...]
H A DAudioTrackShared.cpp79 status_t status; local
104 status = NO_INIT;
112 status = DEAD_OBJECT;
118 status = -EINTR;
147 status = NO_INIT;
178 status = NO_ERROR;
185 status = WOULD_BLOCK;
201 status = TIMED_OUT;
251 // FIXME these error/non-0 status are being dropped
254 status
382 status_t status; local
[all...]
H A DSoundPool.cpp499 status_t status; local
504 status = MediaPlayer::decode(
513 status = MediaPlayer::decode(mFd, mOffset, mLength, &sampleRate, &numChannels, &format,
519 if (status != NO_ERROR) {
528 status = BAD_VALUE;
534 status = BAD_VALUE;
547 return status;
562 status_t status; local
627 status = newTrack->initCheck();
628 if (status !
[all...]
H A Dmediaplayer.cpp279 ALOGV("prepare complete - status=%d", mPrepareStatus);
848 status_t status; local
851 status = service->decode(httpService, url, pSampleRate, pNumChannels, pFormat, heap, pSize);
854 status = DEAD_OBJECT;
856 return status;
872 status_t status; local
875 status = service->decode(fd, offset, length, pSampleRate,
879 status = DEAD_OBJECT;
881 return status;
/frameworks/av/media/libstagefright/
H A DMediaCodecList.cpp236 XML_Status status = ::XML_ParseBuffer(parser, bytes_read, bytes_read == 0); local
237 if (status != XML_STATUS_OK) {
/frameworks/av/media/libstagefright/codecs/aacdec/
H A DSoftAAC2.cpp124 status_t status = UNKNOWN_ERROR; local
129 status = OK;
201 return status;
/frameworks/av/media/libstagefright/codecs/hevcdec/
H A DSoftHEVC.cpp110 IV_API_CALL_STATUS_T status; local
119 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip,
122 if (status != IV_SUCCESS) {
135 IV_API_CALL_STATUS_T status; local
147 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip,
150 if (status != IV_SUCCESS) {
175 IV_API_CALL_STATUS_T status; local
182 status = ivdec_api_function(mCodecCtx, (void *)&s_ctl_ip,
184 if (IV_SUCCESS != status) {
201 IV_API_CALL_STATUS_T status; local
219 IV_API_CALL_STATUS_T status; local
244 IV_API_CALL_STATUS_T status; local
533 IV_API_CALL_STATUS_T status; local
645 IV_API_CALL_STATUS_T status; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpvdec_api.cpp71 Bool status = PV_TRUE; local
100 if (video->vol == NULL) status = PV_FALSE;
114 if (video->currVop == NULL) status = PV_FALSE;
117 if (video->prevVop == NULL) status = PV_FALSE;
124 if (video->currVop == NULL) status = PV_FALSE;
127 if (video->prevVop == NULL) status = PV_FALSE;
133 if (video->vopHeader == NULL) status = PV_FALSE;
139 if (status == PV_TRUE)
155 status = PV_FALSE;
168 if (video->vol[idx] == NULL) status
288 Bool status = PV_TRUE; local
1009 PV_STATUS status = PV_FAIL; local
1046 PV_STATUS status = PV_FAIL; local
1247 PV_STATUS status = PV_FAIL; local
[all...]
/frameworks/av/media/libstagefright/omx/
H A DOMX.cpp103 status_t status = mThread->join(); local
104 if (status != WOULD_BLOCK) {
107 CHECK_EQ(status, (status_t)NO_ERROR);
/frameworks/av/services/audioflinger/
H A DEffects.h76 uint32_t status() { function in class:EffectModule
148 status_t mStatus; // initialization status
/frameworks/av/services/audiopolicy/
H A DAudioPolicyInterfaceImpl.cpp181 status_t status = audioPolicyEffects->addOutputSessionEffects(output, stream, session); local
182 if (status != NO_ERROR && status != ALREADY_EXISTS) {
217 status_t status = audioPolicyEffects->releaseOutputSessionEffects(output, stream, session); local
218 if (status != NO_ERROR && status != ALREADY_EXISTS) {
268 status_t status; local
273 status = mAudioPolicyManager->getInputForAttr(attr, input, session,
278 if (status == NO_ERROR) {
286 status
312 status_t status = audioPolicyEffects->addInputEffects(*input, attr->source, session); local
356 status_t status = audioPolicyEffects->releaseInputEffects(input); local
[all...]
H A DAudioPolicyService.cpp690 status_t status = NO_ERROR; local
700 status = sendCommand(command, delayMs);
701 if (status == NO_ERROR) {
704 return status;
828 // command status as the command is now delayed
842 // command status as the command is now delayed
886 // command status as the command is now delayed
910 // Disable wait for status if delay is not 0.
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.cpp548 status_t status = mHwDevice->load_sound_model(mHwDevice, local
553 if (status != NO_ERROR) {
554 return status;
560 status = AudioSystem::acquireSoundTriggerSession(&session, &ioHandle, &device);
561 if (status != NO_ERROR) {
562 return status;
568 return status;
634 status_t status = mHwDevice->start_recognition(mHwDevice, handle, config, local
638 if (status == NO_ERROR) {
643 return status;
[all...]

Completed in 3636 milliseconds

1234567891011>>