Searched refs:status (Results 176 - 200 of 425) sorted by relevance

1234567891011>>

/frameworks/base/services/java/com/android/server/location/
H A DMockProvider.java124 public void setStatus(int status, Bundle extras, long updateTime) { argument
125 mStatus = status;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DISms.aidl48 * @param newStatus new message status (STATUS_ON_ICC_READ,
62 * @param status message status (STATUS_ON_ICC_READ, STATUS_ON_ICC_UNREAD,
67 boolean copyMessageToIccEf(String callingPkg, int status, in byte[] pdu, in byte[] smsc);
90 * raw pdu of the status report is in the extended data ("pdu").
116 * raw pdu of the status report is in the extended data ("pdu").
140 * to the recipient. The raw pdu of the status report is in the
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoBitmapLoader.java63 result.status = BitmapResult.STATUS_EXCEPTION;
112 result.status = BitmapResult.STATUS_SUCCESS;
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp460 status_t status; local
461 status = mPlayer->attachAuxEffect(effectId);
462 // attachAuxEffect returns a status but we have no way to report it back to app
463 (void) status;
474 status_t status; local
475 status = mPlayer->setAuxEffectSendLevel(level);
476 // setAuxEffectSendLevel returns a status but we have no way to report it back to app
477 (void) status;
494 // handle prefetch status update
501 // evaluate prefetch status base
548 status_t status = mPlayer->getParameter(KEY_PARAMETER_AUDIO_CHANNEL_COUNT, reply); local
[all...]
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java365 AcquiredConnectionStatus status = mAcquiredConnections.remove(connection);
366 if (status == null) {
375 if (recycleConnectionLocked(connection, status)) {
383 if (recycleConnectionLocked(connection, status)) {
393 AcquiredConnectionStatus status) {
394 if (status == AcquiredConnectionStatus.RECONFIGURE) {
400 status = AcquiredConnectionStatus.DISCARD;
403 if (status == AcquiredConnectionStatus.DISCARD) {
571 private void markAcquiredConnectionsLocked(AcquiredConnectionStatus status) { argument
578 if (status !
392 recycleConnectionLocked(SQLiteConnection connection, AcquiredConnectionStatus status) argument
[all...]
/frameworks/base/services/java/com/android/server/content/
H A DSyncStorageEngine.java385 * This file contains the current sync status. We would like to retain
428 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"));
815 // the periodic syncs status to correspond to it.
818 SyncStatusInfo status = getOrCreateSyncStatusLocked(authority.ident);
819 status.setPeriodicSyncTime(authority.periodicSyncs.size() - 1, 0L);
823 SyncStatusInfo status = mSyncStatus.get(authority.ident);
833 // remove the corresponding entry from the status
834 if (status != null) {
835 status.removePeriodicSyncTime(i);
837 Log.e(TAG, "Tried removing sync status o
[all...]
/frameworks/av/services/audioflinger/
H A DThreads.cpp325 status_t status; local
335 status = mParamStatus;
338 status = TIMED_OUT;
340 return status;
519 status_t status; local
521 status = mPowerManager->acquireWakeLockWithUid(POWERMANAGER_PARTIAL_WAKE_LOCK,
527 status = mPowerManager->acquireWakeLock(POWERMANAGER_PARTIAL_WAKE_LOCK,
532 if (status == NO_ERROR) {
535 ALOGV("acquireWakeLock_l() %s status %d", mName, status);
876 status_t status = chain->addEffect_l(effect); local
1128 status_t status = initCheck(); local
1152 createTrack_l( const sp<AudioFlinger::Client>& client, audio_stream_type_t streamType, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t frameCount, const sp<IMemory>& sharedBuffer, int sessionId, IAudioFlinger::track_flags_t *flags, pid_t tid, status_t *status) argument
1399 status_t status = ALREADY_EXISTS; local
1874 status_t status = mNormalSink->getTimestamp(mLatchD.mTimestamp); local
2087 status_t status = NO_ERROR; local
2706 status_t status = INVALID_OPERATION; local
3306 status_t status = NO_ERROR; local
3696 status_t status = NO_ERROR; local
4336 status_t status = initCheck(); local
4419 status_t status = mActiveTrack->getNextBuffer(&buffer); local
4578 createRecordTrack_l( const sp<AudioFlinger::Client>& client, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, size_t frameCount, int sessionId, IAudioFlinger::track_flags_t *flags, pid_t tid, status_t *status) argument
4692 status_t status = NO_ERROR; local
4726 status_t status = AudioSystem::startInput(mId); local
4974 status_t status = NO_ERROR; local
[all...]
H A DTracks.cpp508 status_t status = mServerProxy->obtainBuffer(&buf); local
514 return status;
556 status_t status = NO_ERROR; local
592 status = playbackThread->addTrack_l(this);
593 if (status == INVALID_OPERATION || status == PERMISSION_DENIED) {
596 if (status == PERMISSION_DENIED) {
601 if (status == ALREADY_EXISTS) {
602 status = NO_ERROR;
614 status
796 status_t status = DEAD_OBJECT; local
1515 status_t status = Track::start(event, triggerSession); local
1580 status_t status = obtainBuffer(&mOutBuffer, waitTimeLeftMs); local
1671 status_t status = mClientProxy->obtainBuffer(&buf, &timeout); local
1765 status_t status = mServerProxy->obtainBuffer(&buf); local
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp616 } else if (key == "param-track-time-status") {
754 status_t status = OK; local
760 status = startMPEG4Recording();
765 status = startAMRRecording();
770 status = startAACRecording();
774 status = startRTPRecording();
778 status = startMPEG2TSRecording();
783 status = UNKNOWN_ERROR;
787 if ((status == OK) && (!mStarted)) {
801 return status;
880 status_t status = startRawAudioRecording(); local
909 status_t status = startRawAudioRecording(); local
923 status_t status = BAD_VALUE; local
1452 status_t status = BAD_VALUE; local
[all...]
/frameworks/av/media/libstagefright/
H A DAMRWriter.cpp167 status_t status = mSource->stop(); local
169 (status != OK && status != ERROR_END_OF_STREAM)) {
170 err = status;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.h95 camera3_buffer_status_t status);
/frameworks/base/core/java/android/net/http/
H A DLoggingEventHandler.java34 public void status(int major_version, method in class:LoggingEventHandler
39 HttpLog.v("LoggingEventHandler:status() major: " + major_version +
H A DRequest.java262 mEventHandler.status(v.getMajor(), v.getMinor(),
336 // don't throw if we have a non-OK status code
472 * @param response the response, to obtain the status code
476 final int status) {
481 return status >= HttpStatus.SC_OK
482 && status != HttpStatus.SC_NO_CONTENT
483 && status != HttpStatus.SC_NOT_MODIFIED;
475 canResponseHaveBody(final HttpRequest request, final int status) argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DCarrierText.java60 * The status of this lock screen. Primarily used for widgets on LockScreen.
118 StatusMode status = getStatusForIccState(simState);
119 switch (status) {
182 * Determine the current status of the lock screen given the SIM state and other stuff.
235 StatusMode status = getStatusForIccState(simState);
236 switch (status) {
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.h42 uint32_t* texName, uint32_t* fbName, uint32_t* status);
H A DGLES20RenderEngine.h57 uint32_t* texName, uint32_t* fbName, uint32_t* status);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java106 result.status = BitmapResult.STATUS_EXCEPTION;
113 result.status = BitmapResult.STATUS_SUCCESS;
119 result.status = BitmapResult.STATUS_EXCEPTION;
123 result.status = BitmapResult.STATUS_EXCEPTION;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataCallResponse.java41 public int status = 0; field in class:DataCallResponse
79 .append(" status=").append(status)
118 if (status == DcFailCause.NONE.getErrorCode()) {
236 "status=" + status + " result=" + result);
/frameworks/wilhelm/tests/mimeUri/
H A DslesTestPlayUri.cpp78 SLuint32 status; local
80 result = (*caller)->GetPrefetchStatus(caller, &status);
83 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
91 fprintf(stdout, "PrefetchEventCallback: Prefetch Status is = %u\n", status);
/frameworks/wilhelm/tests/
H A DmimeUri_test.cpp78 SLuint32 status; local
80 (*caller)->GetPrefetchStatus(caller, &status);
82 && (level == 0) && (status == SL_PREFETCHSTATUS_UNDERFLOW)) {
90 fprintf(stdout, "\t\tPrefetchEventCallback: Prefetch Status is = %u\n", status);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java154 /** Possible status of a network configuration. */
187 * The current status of this network configuration entry.
190 public int status; field in class:WifiConfiguration
194 * Valid when {@link #status} == Status.DISABLED
377 if (this.status == WifiConfiguration.Status.CURRENT) {
379 } else if (this.status == WifiConfiguration.Status.DISABLED) {
582 status = source.status;
613 dest.writeInt(status);
644 config.status
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServer.java75 public void onServerRegistered(int status, int serverIf) {
76 if (DBG) Log.d(TAG, "onServerRegistered() - status=" + status
102 public void onServerConnectionState(int status, int serverIf,
104 if (DBG) Log.d(TAG, "onServerConnectionState() - status=" + status
107 mCallback.onConnectionStateChange(mAdapter.getRemoteDevice(address), status,
119 public void onServiceAdded(int status, int srvcType,
123 + "status=" + status);
462 sendResponse(BluetoothDevice device, int requestId, int status, int offset, byte[] value) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIccSmsInterfaceManager.java183 * @param status new message status (STATUS_ON_ICC_READ,
192 updateMessageOnIccEf(String callingPackage, int index, int status, byte[] pdu) { argument
194 " status=" + status + " ==> " +
205 if (status == STATUS_ON_ICC_FREE) {
222 byte[] record = makeSmsRecordData(status, pdu);
240 * @param status message status (STATUS_ON_ICC_READ, STATUS_ON_ICC_UNREAD,
246 public boolean copyMessageToIccEf(String callingPackage, int status, byt argument
491 makeSmsRecordData(int status, byte[] pdu) argument
[all...]
/frameworks/wilhelm/tests/listening/
H A DslesTest_playMuteSolo.cpp68 // Prefetch status callback
77 SLuint32 status; local
78 result = (*caller)->GetPrefetchStatus(caller, &status);
82 && level == 0 && status == SL_PREFETCHSTATUS_UNDERFLOW) {
85 status == SL_PREFETCHSTATUS_SUFFICIENTDATA) {
86 new_prefetch_status = status;
250 // get the prefetch status interface
254 // enable prefetch status callbacks
312 // wait for prefetch status callback to indicate either sufficient data or error
/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...]

Completed in 746 milliseconds

1234567891011>>