Searched refs:status (Results 226 - 250 of 521) sorted by relevance

1234567891011>>

/frameworks/base/media/tests/audiotests/
H A Dshared_mem_test.cpp104 status_t status = track->initCheck(); local
105 if(status != NO_ERROR) {
/frameworks/base/services/core/java/com/android/server/location/
H A DMockProvider.java123 public void setStatus(int status, Bundle extras, long updateTime) { argument
124 mStatus = status;
/frameworks/base/telecomm/java/android/telecom/
H A DVideoCallbackServant.java114 public void receiveSessionModifyResponse(int status, VideoProfile requestedProfile,
117 args.argi1 = status;
/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/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapBmessage.java95 public BluetoothMapBmessage setStatus(Status status) { argument
96 mBmsgStatus = status;
159 json.put("status", mBmsgStatus);
/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/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/webview/chromium/tests/prebuilts/
H A Dandroid-janktesthelper.jar ... avgFrameRate double avgMaxFrameDuration String avgMsg android.os.Bundle status private static int getMaxValue (int[]) int i int[] intArray int ...
/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/wilhelm/src/itf/
H A DIAcousticEchoCancellation.c42 android::status_t status = thiz->mAECEffect->setEnabled((bool) thiz->mEnabled); local
43 result = android_fx_statusToResult(status);
H A DIAutomaticGainControl.c41 android::status_t status = thiz->mAGCEffect->setEnabled((bool) thiz->mEnabled); local
42 result = android_fx_statusToResult(status);
H A DINoiseSuppression.c40 android::status_t status = thiz->mNSEffect->setEnabled((bool) thiz->mEnabled); local
41 result = android_fx_statusToResult(status);
/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/core/jni/
H A Dcom_android_internal_os_Zygote.cpp81 int status; local
83 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
84 // Log process-death status that we care about. In general it is
91 if (WIFEXITED(status)) {
92 if (WEXITSTATUS(status)) {
93 ALOGI("Process %d exited cleanly (%d)", pid, WEXITSTATUS(status));
95 } else if (WIFSIGNALED(status)) {
96 if (WTERMSIG(status) != SIGKILL) {
97 ALOGI("Process %d exited due to signal (%d)", pid, WTERMSIG(status));
99 if (WCOREDUMP(status)) {
621 int status; local
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java454 * This file contains the current sync status. We would like to retain
497 mStatusFile = new AtomicFile(new File(syncDir, "status.bin"));
948 // the periodic syncs status to correspond to it.
951 SyncStatusInfo status = getOrCreateSyncStatusLocked(authority.ident);
953 status.setPeriodicSyncTime(
971 SyncStatusInfo status = mSyncStatus.get(authority.ident);
983 // remove the corresponding entry from the status
984 if (status != null) {
985 status.removePeriodicSyncTime(i);
987 Log.e(TAG, "Tried removing sync status o
[all...]
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp285 status_t status = waitForFreeSlotThenRelock("dequeueBuffer", async, local
287 if (status != NO_ERROR) {
288 return status;
486 status_t status = waitForFreeSlotThenRelock("attachBuffer(P)", false, local
488 if (status != NO_ERROR) {
489 return status;
797 int status = NO_ERROR; local
811 status = listener->asBinder()->linkToDeath(
813 if (status != NO_ERROR) {
815 strerror(-status), statu
837 int status = NO_ERROR; local
[all...]
/frameworks/av/media/libmedia/
H A DMediaScanner.cpp214 status_t status = client.scanFile(path, statbuf.st_mtime, 0, local
216 if (status) {
230 status_t status = client.scanFile(path, statbuf.st_mtime, statbuf.st_size, local
232 if (status) {
/frameworks/av/media/libstagefright/
H A DAMRWriter.cpp169 status_t status = mSource->stop(); local
171 (status != OK && status != ERROR_END_OF_STREAM)) {
172 err = status;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3IOStreamBase.h102 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 +
/frameworks/base/location/java/android/location/
H A DGpsNavigationMessageEvent.java36 * The system does not support tracking of GPS Navigation Messages. This status will not change
70 * Returns the latest status of the GPS Navigation Messages sub-system.
72 void onStatusChanged(int status); argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitorCallback.java38 * Called when the battery status changes, e.g. when plugged in or unplugged, charge
41 * @param status current battery status
43 public void onRefreshBatteryInfo(KeyguardUpdateMonitor.BatteryStatus status) { } argument
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLES11RenderEngine.h43 uint32_t* texName, uint32_t* fbName, uint32_t* status);
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java103 result.status = BitmapResult.STATUS_EXCEPTION;
110 result.status = BitmapResult.STATUS_SUCCESS;
116 result.status = BitmapResult.STATUS_EXCEPTION;
120 result.status = BitmapResult.STATUS_EXCEPTION;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataCallResponse.java42 public int status = 0; field in class:DataCallResponse
82 .append(" status=").append(status)
128 if (status == DcFailCause.NONE.getErrorCode()) {
250 "status=" + status + " result=" + result);

Completed in 1025 milliseconds

1234567891011>>