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

1234567891011

/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
1192 status
[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
1852 int status; local
1883 int status; local
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp111 // @param[out] status On exit contains the status code to be returned.
115 status_t *status)
121 *status = NOT_ENOUGH_DATA;
128 *status = BAD_VALUE;
143 *status = NOT_ENOUGH_DATA;
153 *status = BAD_VALUE;
165 *status = OK;
350 snprintf(buffer, 255, " pid(%d), connId(%d), status(%d), looping(%s)\n",
586 status_t status)
113 unmarshallFilter(const Parcel& p, Metadata::Filter *filter, status_t *status) argument
584 setDataSource_post( const sp<MediaPlayerBase>& p, status_t status) argument
777 status_t status; local
[all...]
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/av/media/libstagefright/
H A DAwesomePlayer.cpp347 if (RightsStatus::RIGHTS_VALID != mDecryptHandle->status) {
1849 void AwesomePlayer::postStreamDoneEvent_l(status_t status) { argument
1855 mStreamDoneStatus = status;
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp306 status_t status = fx->initCheck(); local
307 if (status != NO_ERROR && status != ALREADY_EXISTS) {
508 status_t status = NO_ERROR; local
529 status = NO_MEMORY;
532 return status;
813 status_t status = NO_ERROR; local
829 status = command->mStatus;
832 return status;
839 status_t status local
862 status_t status = NO_ERROR; local
[all...]
/frameworks/base/core/java/android/app/
H A DDownloadManager.java111 * Current status of the download, as one of the STATUS_* constants.
116 * Provides more detail on the status of the download. Its meaning depends on the value of
120 * occurred. If an HTTP error occurred, this will hold the HTTP status code as defined in RFC
130 * status codes</a>
757 * Include only downloads with status matching any the given status flags.
1000 int status = cursor.getInt(cursor.getColumnIndexOrThrow(COLUMN_STATUS));
1001 if (DownloadManager.STATUS_SUCCESSFUL == status) {
1027 // downloaded file not found or its status is not 'successfully completed'
1059 // downloaded file not found or its status i
1291 getReason(int status) argument
1304 getPausedReason(int status) argument
1320 getErrorCode(int status) argument
1358 translateStatus(int status) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DContacts.java1561 * The server defined status.
1577 * The user defined status line.
1637 * @param status the status to get the icon for
1642 public static final int getPresenceIconResourceId(int status) { argument
1643 switch (status) {
1667 * @param serverStatus that status
/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java1130 int status = mCanvas.invokeFunctors(mRedrawClip);
1131 handleFunctorStatus(attachInfo, status);
1176 int status = DisplayList.STATUS_DONE;
1205 status = onPreDraw(dirty);
1227 status |= canvas.drawDisplayList(displayList, mRedrawClip,
1239 handleFunctorStatus(attachInfo, status);
1267 if ((status & DisplayList.STATUS_DREW) == DisplayList.STATUS_DREW) {
1295 private void handleFunctorStatus(View.AttachInfo attachInfo, int status) { argument
1298 if ((status & DisplayList.STATUS_DRAW) != 0) {
1307 if ((status
[all...]
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp214 ALOGW("channel '%s' ~ Failed to consume input event. status=%d",
273 ALOGW("Failed to send finished signal on channel '%s'. status=%d",
965 status_t status = android_view_KeyEvent_toNative(env, eventObj, event); local
966 if (status) {
H A Dandroid_view_GLES20Canvas.cpp182 status_t status = renderer->invokeFunctors(bounds); local
183 if (status != DrawGlInfo::kStatusDone && dirty != NULL) {
187 return status;
709 status_t status = renderer->drawDisplayList(displayList, bounds, flags); local
710 if (status != DrawGlInfo::kStatusDone && dirty != NULL) {
714 return status;
/frameworks/base/services/input/
H A DInputDispatcher.h798 Status status; member in class:android::InputDispatcher::Connection
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java493 public boolean callStatusChangedLocked(String provider, int status, Bundle extras) { argument
499 mListener.onStatusChanged(provider, status, extras);
510 statusChanged.putExtra(LocationManager.KEY_STATUS_CHANGED, status);
1620 // Fetch latest status update time
1623 // Get latest status
1625 int status = p.getStatus(extras);
1630 // Broadcast location or status to all listeners
1676 (prevStatusUpdateTime != 0 || status != LocationProvider.AVAILABLE)) {
1679 if (!receiver.callStatusChangedLocked(provider, status, extras)) {
1973 public void setTestProviderStatus(String provider, int status, Bundl argument
[all...]
H A DMountService.java409 if (DEBUG_UNMOUNT) Slog.i(TAG, "Updating external media status on PackageManager");
417 if (DEBUG_UNMOUNT) Slog.i(TAG, "Updated status. Processing requests");
691 * Determine media state and UMS detection status
1019 // call back will handle the status changes any way.
1243 // Place stub status for early callers to find
2382 protected void sendNewStatusOrIgnore(int status) { argument
2388 mObbState.token.onObbResult(mObbState.rawPath, mObbState.nonce, status);
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java207 void setInstallStatus(String pkgName, int status) { argument
210 if(p.getInstallStatus() != status) {
211 p.setInstallStatus(status);
/frameworks/base/services/jni/
H A Dcom_android_server_input_InputManagerService.cpp135 status_t status = android_view_PointerIcon_loadSystemIcon(env, local
137 if (!status) {
435 status_t status = android_view_PointerIcon_load(env, pointerIconObj, local
437 if (!status && !pointerIcon.isNullIcon()) {
1088 status_t status = im->registerInputChannel( local
1090 if (status) {
1092 message.appendFormat("Failed to register input channel. status=%d", status);
1116 status_t status = im->unregisterInputChannel(env, inputChannel); local
1117 if (status
1138 status_t status = android_view_KeyEvent_toNative(env, inputEventObj, & keyEvent); local
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pService.java1329 P2pStatus status = (P2pStatus) message.obj;
1330 if (status == P2pStatus.NO_COMMON_CHANNEL) {
1344 status = (P2pStatus) message.obj;
1345 if (status == P2pStatus.NO_COMMON_CHANNEL) {
1351 status = (P2pStatus)message.obj;
1352 if (status == P2pStatus.SUCCESS) {
1356 } else if (status == P2pStatus.UNKNOWN_P2P_GROUP) {
1371 } else if (status == P2pStatus.NO_COMMON_CHANNEL) {
1642 // TODO: figure out updating the status to declined when invitation is rejected
1645 P2pStatus status
2318 updateThisDevice(int status) argument
[all...]
/frameworks/native/libs/binder/
H A DParcel.cpp738 status_t status; local
742 status = writeInt32(0);
743 if (status) return status;
758 status = result;
762 status = -errno;
766 status = result;
768 status = writeInt32(1);
769 if (!status) {
770 status
1110 status_t status = readInt32(&useAshmem); local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java184 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
187 public void writeSmsToRuim(int status, String pdu, Message response) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java954 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
955 Log.d(LOG_TAG, "Write SMS to SIM with status " + status);
959 public void writeSmsToRuim(int status, String pdu, Message response) { argument
960 Log.d(LOG_TAG, "Write SMS to RUIM with status " + status);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java45 private int mExpectingSendEnvelopeResponseSw1; // SW1/SW2 response status
46 private int mExpectingSendEnvelopeResponseSw2; // SW1/SW2 response status
80 * @param sw1 simulated SW1 status to return
81 * @param sw2 simulated SW2 status to return
365 public void writeSmsToSim(int status, String smsc, String pdu, Message response) { argument
369 public void writeSmsToRuim(int status, String pdu, Message response) { argument
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdRuntimeMath.cpp293 int32_t prev, status; local
296 status = android_atomic_release_cas(prev, prev - value, ptr);
297 } while (CC_UNLIKELY(status != 0));
310 int32_t prev, status; local
313 status = android_atomic_release_cas(prev, prev ^ value, ptr);
314 } while (CC_UNLIKELY(status != 0));
319 uint32_t prev, status; local
323 status = android_atomic_release_cas((int32_t) prev, (int32_t)n, (volatile int32_t*) ptr);
324 } while (CC_UNLIKELY(status != 0));
329 int32_t prev, status; local
339 uint32_t prev, status; local
349 int32_t prev, status; local
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouter.java927 // A predetermined connection status that can override mStatus
995 * @return The user-friendly status for a media route. This may include a description
1003 * Set this route's status by predetermined status code. If the caller
1232 void setStatusInt(CharSequence status) { argument
1233 if (!status.equals(mStatus)) {
1234 mStatus = status;
1236 mGroup.memberStatusChanged(this, status);
1267 ", status=" + getStatus() +
1311 * Set the current user-visible status fo
1315 setStatus(CharSequence status) argument
1677 memberStatusChanged(RouteInfo info, CharSequence status) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DPackageManagerTests.java318 String status = Environment.getExternalStorageState();
319 if (!status.equals(Environment.MEDIA_MOUNTED)) {
1086 boolean status = true; field in class:PackageManagerTests.SdMountReceiver
1110 status = false;
1121 boolean status = true; field in class:PackageManagerTests.SdUnMountReceiver
1144 status = false;
/frameworks/base/services/java/com/android/server/location/
H A DGpsLocationProvider.java110 /** AGPS status event values. */
203 // current status
206 // time for last status update
767 private void updateStatus(int status, int svCount) { argument
768 if (status != mStatus || svCount != mSvCount) {
769 mStatus = status;
841 if (DEBUG) Log.d(TAG, "GPS status listener died");
1069 // notify status listeners
1108 * called from native code to update our status
1110 private void reportStatus(int status) { argument
1214 reportAGpsStatus(int type, int status, int ipaddr) argument
1548 onStatusChanged(String provider, int status, Bundle extras) argument
[all...]

Completed in 205 milliseconds

1234567891011