Searched defs:status (Results 1 - 25 of 461) sorted by relevance

1234567891011>>

/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DPowerHAL.cpp42 status_t status = mPowerManager->powerHint(POWER_HINT_VSYNC, enabled ? 1 : 0); local
43 if(status == DEAD_OBJECT) {
46 return status;
/frameworks/rs/
H A DrsMutex.cpp31 int status = pthread_mutex_init(&mMutex, nullptr); local
32 if (status) {
40 int status; local
41 status = pthread_mutex_lock(&mMutex);
42 if (status) {
43 ALOGE("Mutex: error %i locking.", status);
50 int status; local
51 status = pthread_mutex_unlock(&mMutex);
52 if (status) {
53 ALOGE("Mutex error %i unlocking.", status);
[all...]
H A DrsSignal.cpp34 int status = pthread_mutex_init(&mMutex, nullptr); local
35 if (status) {
40 status = pthread_cond_init(&mCondition, nullptr);
41 if (status) {
51 int status; local
53 status = pthread_mutex_lock(&mMutex);
54 if (status) {
55 ALOGE("LocklessCommandFifo: error %i locking for set condition.", status);
61 status = pthread_cond_signal(&mCondition);
62 if (status) {
73 int status; local
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Ddec_pred_intra_dc.cpp32 PV_STATUS status = PV_SUCCESS; local
41 status = PV_VlcDecIntraDCPredSize(stream, compnum, &DC_size);
43 if (status == PV_SUCCESS)
73 return status;
H A Dbitstream.h53 PV_STATUS status = PV_SUCCESS; local
59 status = BitstreamFillCache(stream);
63 return status;
71 PV_STATUS status = PV_SUCCESS; local
76 status = BitstreamFillCache(stream);
79 return status;
85 PV_STATUS status = PV_SUCCESS; local
90 status = BitstreamFillCache(stream);
93 return status;
/frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java32 * Allows the running test cases to send out interim status
35 * @param status status report, consisting of key value pairs
38 public void sendStatus(int resultCode, Bundle status); argument
H A DInstrumentationAutomationSupport.java37 public void sendStatus(int resultCode, Bundle status) { argument
38 mInstrumentation.sendStatus(resultCode, status);
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java32 * Allows the running test cases to send out interim status
35 * @param status status report, consisting of key value pairs
38 public void sendStatus(int resultCode, Bundle status); argument
/frameworks/base/core/java/android/app/backup/
H A DBackupObserver.java45 * @param status Zero on success; a nonzero error code if the backup operation failed.
47 public void onResult(String currentBackupPackage, int status) { argument
54 * @param status Zero on success; a nonzero error code if the backup operation
57 public void backupFinished(int status) { argument
/frameworks/base/core/java/android/os/
H A DUpdateEngineCallback.java35 public abstract void onStatusUpdate(int status, float percent); argument
/frameworks/base/core/tests/coretests/apks/install_jni_lib/
H A Dcom_android_frameworks_coretests_JNITest.cpp42 int status; local
49 if ((status = android::register_com_android_frameworks_coretests_JNITests(e)) < 0) {
/frameworks/base/location/java/android/location/
H A DGnssStatusCallback.java41 * Called periodically to report GNSS satellite status.
42 * @param status the current status of all satellites.
44 public void onSatelliteStatusChanged(GnssStatus status) {} argument
/frameworks/compile/mclinker/lib/Support/
H A DDemangle.cpp28 int status; local
30 abi::__cxa_demangle(pName.c_str(), /*buffer=*/0, &output_leng, &status);
31 if (status != 0) { // Failed
/frameworks/wilhelm/src/android/
H A Dandroid_LocAVPlayer.cpp66 status_t status = mPlayer->setDataSource( local
68 if (status != NO_ERROR) {
/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp52 status_t status = notify(DrmInfoEvent(uniqueId, type, message)); local
53 reply->writeInt32(status);
/frameworks/av/media/libmedia/
H A DIResourceManagerClient.cpp44 status_t status = remote()->transact(RECLAIM_RESOURCE, data, &reply); local
45 if (status == NO_ERROR) {
56 status_t status = remote()->transact(GET_NAME, data, &reply); local
57 if (status == NO_ERROR) {
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_vlc.c216 BIG_CODE_NUM and returning HANTRO_NOK status.
235 u32 status, codeNum = 0; local
242 status = h264bsdDecodeExpGolombUnsigned(pStrmData, &codeNum);
246 /* BIG_CODE_NUM and HANTRO_OK status means codeNum 2^32-1 which would
249 if (status == HANTRO_OK)
251 /* BIG_CODE_NUM and HANTRO_NOK status means codeNum 2^32 which results
259 else if (status == HANTRO_OK)
306 u32 status, codeNum; local
313 status = h264bsdDecodeExpGolombUnsigned(pStrmData, &codeNum);
315 if (status !
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAWakeLock.cpp62 status_t status = mPowerManager->acquireWakeLock( local
66 if (status == NO_ERROR) {
/frameworks/av/media/utils/
H A DISchedulingPolicyService.cpp48 status_t status = remote()->transact(REQUEST_PRIORITY_TRANSACTION, data, &reply, flags); local
49 if (status != NO_ERROR) {
50 return status;
/frameworks/av/services/audioflinger/
H A DAudioHwDevice.cpp53 status_t status = outputStream->open(handle, devices, config, address); local
55 if (status != NO_ERROR) {
64 "channelMask %#x, status %d",
68 status);
78 status = outputStream->open(handle, devices, &originalConfig, address);
79 if (status != NO_ERROR) {
81 status);
93 return status;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthCallback.java36 * @param status Success or failure of the registration or unregistration
45 int status) {
46 Log.d(TAG, "onHealthAppConfigurationStatusChange: " + config + "Status: " + status);
44 onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config, int status) argument
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareCallback.java49 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
55 public void onGeofenceAdd(int geofenceId, int status) { argument
62 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
66 public void onGeofenceRemove(int geofenceId, int status) { argument
73 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
77 public void onGeofencePause(int geofenceId, int status) { argument
84 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
89 public void onGeofenceResume(int geofenceId, int status) { argument
/frameworks/base/core/java/android/webkit/
H A DWebViewProviderResponse.java26 public WebViewProviderResponse(PackageInfo packageInfo, int status) { argument
28 this.status = status;
45 status = in.readInt();
56 out.writeInt(status);
60 public final int status; field in class:WebViewProviderResponse
/frameworks/base/core/jni/
H A Dandroid_media_AudioErrors.h23 // status codes used by JAVA APIs. Translation from native error codes is done by
38 static inline jint nativeToJavaStatus(status_t status) { argument
39 switch (status) {
/frameworks/base/libs/hwui/
H A DImage.cpp43 GLenum status = GL_NO_ERROR; local
44 while ((status = glGetError()) != GL_NO_ERROR) {
45 ALOGW("Error creating image (%#x)", status);

Completed in 6209 milliseconds

1234567891011>>