Searched refs:status (Results 126 - 150 of 352) sorted by relevance

1234567891011>>

/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp534 int status; local
567 LVM_ReturnStatus_en LvmStatus=LVM_SUCCESS; /* Function call status */
749 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
815 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
866 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
913 LVM_ReturnStatus_en LvmStatus=LVM_SUCCESS; /* Function call status */
1071 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
1112 LVM_ReturnStatus_en LvmStatus=LVM_SUCCESS; /* Function call status */
1152 LVM_ReturnStatus_en LvmStatus = LVM_SUCCESS; /* Function call status */
1179 LVM_ReturnStatus_en LvmStatus=LVM_SUCCESS; /* Function call status */
1798 int status = 0; local
1868 int status = 0; local
1916 int status = 0; local
1986 int status = 0; local
2034 int status = 0; local
2208 int status = 0; local
2292 int status = 0; local
2383 int status = 0; local
2627 int status = 0; local
3187 int status = 0; local
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DAH263Assembler.cpp42 AssemblyStatus status = addPacket(source); local
43 if (status == MALFORMED_PACKET) {
46 return status;
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerStressTest.java99 int status = cursor.getInt(cursor.getColumnIndex(
105 filename, status);
106 assertEquals(errorString, DownloadManager.STATUS_SUCCESSFUL, status);
/frameworks/base/services/java/com/android/server/location/
H A DGpsXtraDownloader.java131 StatusLine status = response.getStatusLine();
132 if (status.getStatusCode() != 200) { // HTTP 200 is success.
133 if (DEBUG) Log.d(TAG, "HTTP error: " + status.getReasonPhrase());
H A DMockProvider.java124 public void setStatus(int status, Bundle extras, long updateTime) { argument
125 mStatus = status;
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java96 public void updateStatus(String deviceAddress, int status) { argument
100 d.status = status;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccController.java157 //Notifies when card status changes
162 //Notify registrant right after registering, so that it will get the latest ICC status,
163 //otherwise which may not happen until there is an actual change in ICC status.
204 Log.e(LOG_TAG,"Error getting ICC status. "
210 IccCardStatus status = (IccCardStatus)ar.result;
214 mUiccCard = new UiccCard(mContext, mCi, status);
217 mUiccCard.update(mContext, mCi , status);
/frameworks/base/media/java/android/media/audiofx/
H A DBassBoost.java162 * @param status status of the set parameter operation.
166 void onParameterChange(BassBoost effect, int status, int param, short value); argument
177 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
196 l.onParameterChange(BassBoost.this, status, p, v);
H A DVirtualizer.java164 * @param status status of the set parameter operation.
168 void onParameterChange(Virtualizer effect, int status, int param, short value); argument
179 public void onParameterChange(AudioEffect effect, int status, byte[] param, byte[] value) { argument
198 l.onParameterChange(Virtualizer.this, status, p, v);
/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/base/core/java/android/bluetooth/
H A DIBluetoothHeadset.aidl54 void clccResponse(int index, int direction, int status, int mode, boolean mpty,
/frameworks/base/core/java/android/webkit/
H A DGeolocationService.java111 * Called when the provider status changes.
113 * @param status The new status of the provider.
116 public void onStatusChanged(String providerName, int status, Bundle extras) { argument
117 boolean isAvailable = (status == LocationProvider.AVAILABLE);
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java171 /** Successful status always 0, !0 is an unsuccessful status */
287 int status = connectSync(srcContext, srcHandler, dstHandler);
288 if (status == STATUS_SUCCESSFUL) {
290 status = response.arg1;
292 return status;
299 * msg.arg1 = status
345 * msg.arg1 = status
360 * msg.arg1 = status
419 * msg.arg1 = status
830 replyHalfConnected(int status) argument
844 replyDisconnected(int status) argument
[all...]
/frameworks/native/cmds/dumpstate/
H A Dutils.c221 int status; local
222 pid_t p = waitpid(pid, &status, WNOHANG);
225 if (WIFSIGNALED(status)) {
226 printf("*** %s: Killed by signal %d\n", command, WTERMSIG(status));
227 } else if (WIFEXITED(status) && WEXITSTATUS(status) > 0) {
228 printf("*** %s: Exit code %d\n", command, WEXITSTATUS(status));
231 return status;
/frameworks/opt/telephony/src/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(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
H A DDataCallState.java42 public int status = 0; field in class:DataCallState
80 .append(" status=").append(status)
119 if (status == FailCause.NONE.getErrorCode()) {
238 "status=" + status + " result=" + result);
/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/content/
H A DSyncStorageEngine.java317 * This file contains the current sync status. We would like to retain
357 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"));
705 // the periodic syncs status to correspond to it
708 SyncStatusInfo status = getOrCreateSyncStatusLocked(authority.ident);
709 status.setPeriodicSyncTime(authority.periodicSyncs.size() - 1, 0);
713 SyncStatusInfo status = mSyncStatus.get(authority.ident);
723 // remove the corresponding entry from the status
724 if (status != null) {
725 status.removePeriodicSyncTime(i);
856 SyncStatusInfo status
[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/av/drm/common/
H A DIDrmManagerService.cpp45 data->writeInt32(handle->status);
77 handle->status = data.readInt32();
751 const status_t status = reply.readInt32(); local
752 ALOGV("Return value of decrypt() is %d", status);
758 return status;
850 status_t status = setDrmServiceListener(uniqueId, drmServiceListener); local
852 reply->writeInt32(status);
863 status_t status = installDrmEngine(uniqueId, engineFile); local
865 reply->writeInt32(status);
1073 const status_t status local
1139 const status_t status local
1159 const status_t status local
1191 const status_t status = removeRights(uniqueId, path); local
1202 const status_t status = removeAllRights(data.readInt32()); local
1295 status_t status = getAllSupportInfo(uniqueId, &length, &drmSupportInfoArray); local
1399 const status_t status = closeDecryptSession(uniqueId, handle); local
1421 const status_t status local
1457 const status_t status local
1484 const status_t status = finalizeDecryptUnit(uniqueId, &handle, data.readInt32()); local
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp615 } else if (key == "param-track-time-status") {
745 status_t status = OK; local
751 status = startMPEG4Recording();
756 status = startAMRRecording();
761 status = startAACRecording();
765 status = startRTPRecording();
769 status = startMPEG2TSRecording();
774 status = UNKNOWN_ERROR;
778 if ((status == OK) && (!mStarted)) {
792 return status;
871 status_t status = startRawAudioRecording(); local
900 status_t status = startRawAudioRecording(); local
914 status_t status = BAD_VALUE; local
1442 status_t status = BAD_VALUE; local
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java182 if(config != null && config.status == Status.DISABLED) {
185 config.status = Status.ENABLED;
260 mConfiguredNetworks.get(netId).status = Status.ENABLED;
274 config.status = Status.CURRENT;
277 //If network is already disabled, keep the status
278 if (config.status == Status.CURRENT) {
279 config.status = Status.ENABLED;
390 if (config != null) config.status = Status.ENABLED;
418 if (config != null && config.status != Status.DISABLED) {
419 config.status
[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/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 +
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DCarrierText.java53 * The status of this lock screen. Primarily used for widgets on LockScreen.
115 StatusMode status = getStatusForIccState(simState);
116 switch (status) {
179 * Determine the current status of the lock screen given the SIM state and other stuff.
232 StatusMode status = getStatusForIccState(simState);
233 switch (status) {

Completed in 473 milliseconds

1234567891011>>