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

1234567891011>>

/frameworks/rs/
H A DrsMutex.cpp31 int status = pthread_mutex_init(&mMutex, NULL); 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, NULL); local
35 if (status) {
40 status = pthread_cond_init(&mCondition, NULL);
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/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_framework_coretests_JNITests(e)) < 0) {
/frameworks/testing/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java29 * Allows the running test cases to send out interim status
32 * @param status status report, consisting of key value pairs
35 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/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java29 * Allows the running test cases to send out interim status
32 * @param status status report, consisting of key value pairs
35 public void sendStatus(int resultCode, Bundle status); argument
/frameworks/uiautomator/src/com/android/uiautomator/testrunner/
H A DIAutomationSupport.java29 * Allows the running test cases to send out interim status
32 * @param status status report, consisting of key value pairs
35 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/av/camera/
H A DICameraServiceListener.cpp44 virtual void onStatusChanged(Status status, int32_t cameraId) argument
50 data.writeInt32(static_cast<int32_t>(status));
74 Status status = static_cast<Status>(data.readInt32()); local
77 onStatusChanged(status, cameraId);
/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp52 status_t status = notify(DrmInfoEvent(uniqueId, type, message)); local
53 reply->writeInt32(status);
/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/services/audioflinger/
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/base/core/java/android/bluetooth/
H A DBluetoothHealthCallback.java35 * @param status Success or failure of the registration or unregistration
43 int status) {
44 Log.d(TAG, "onHealthAppConfigurationStatusChange: " + config + "Status: " + status);
42 onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config, int status) argument
/frameworks/base/core/java/android/hardware/location/
H A DGeofenceHardwareCallback.java45 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
51 public void onGeofenceAdd(int geofenceId, int status) { argument
58 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
62 public void onGeofenceRemove(int geofenceId, int status) { argument
69 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
73 public void onGeofencePause(int geofenceId, int status) { argument
80 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
85 public void onGeofenceResume(int geofenceId, int status) { argument
/frameworks/base/libs/hwui/
H A DImage.cpp45 GLenum status = GL_NO_ERROR; local
46 while ((status = glGetError()) != GL_NO_ERROR) {
47 ALOGW("Error creating image (%#x)", status);
/frameworks/base/location/java/android/location/
H A DLocationListener.java47 * Called when the provider status changes. This method is called when
53 * @param status {@link LocationProvider#OUT_OF_SERVICE} if the
60 * status variables.
70 void onStatusChanged(String provider, int status, Bundle extras); argument
/frameworks/native/cmds/servicemanager/
H A Dbctest.c36 unsigned status; local
49 status = bio_get_uint32(&reply);
53 return status;
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoBitmapLoaderInterface.java16 public int status; field in class:PhotoBitmapLoaderInterface.BitmapResult
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCallForwardInfo.java27 public int status; /*1 = active, 0 = not active */ field in class:CallForwardInfo
36 return super.toString() + (status == 0 ? " not active " : " active ")
/frameworks/rs/driver/
H A DrsdFrameBufferObj.cpp50 GLenum status; local
51 status = glCheckFramebufferStatus(GL_FRAMEBUFFER);
52 switch (status) {
/frameworks/wilhelm/src/itf/
H A DIPresetReverb.c51 android::status_t status = android_prev_setPreset(thiz->mPresetReverbEffect, preset); local
52 result = android_fx_statusToResult(status);
83 android::status_t status = android_prev_getPreset(thiz->mPresetReverbEffect, &preset); local
84 result = android_fx_statusToResult(status);
/frameworks/av/media/libmedia/
H A DIAudioRecord.cpp50 status_t status = remote()->transact(GET_CBLK, data, &reply); local
51 if (status == NO_ERROR) {
63 status_t status = remote()->transact(START, data, &reply); local
64 if (status == NO_ERROR) {
65 status = reply.readInt32();
67 ALOGW("start() error: %s", strerror(-status));
69 return status;
H A DIMediaLogService.cpp48 status_t status = remote()->transact(REGISTER_WRITER, data, &reply); local
49 // FIXME ignores status
56 status_t status = remote()->transact(UNREGISTER_WRITER, data, &reply); local
57 // FIXME ignores status

Completed in 738 milliseconds

1234567891011>>