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

1234567891011>>

/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DPowerHAL.cpp44 status_t status; local
45 status = mPowerManager->powerHint(static_cast<int>(PowerHint::VSYNC),
47 if(status == DEAD_OBJECT) {
50 return status;
/frameworks/native/services/vr/hardware_composer/
H A Dvr_hardware_composer_service.cpp50 android::status_t status = sm->addService( local
53 LOG_ALWAYS_FATAL_IF(status != android::OK,
54 "VrDisplay service failed to start: %" PRId32, status);
/frameworks/av/media/libaaudio/src/binding/
H A DAAudioStreamConfiguration.cpp38 status_t status; local
39 status = parcel->writeInt32(mDeviceId);
40 if (status != NO_ERROR) goto error;
41 status = parcel->writeInt32(mSampleRate);
42 if (status != NO_ERROR) goto error;
43 status = parcel->writeInt32(mSamplesPerFrame);
44 if (status != NO_ERROR) goto error;
45 status = parcel->writeInt32((int32_t) mSharingMode);
46 if (status != NO_ERROR) goto error;
47 status
58 status_t status = parcel->readInt32(&mDeviceId); local
[all...]
H A DAAudioStreamRequest.cpp46 status_t status = parcel->writeInt32((int32_t) mUserId); local
47 if (status != NO_ERROR) goto error;
48 status = parcel->writeInt32((int32_t) mProcessId);
49 if (status != NO_ERROR) goto error;
50 status = parcel->writeInt32((int32_t) mDirection);
51 if (status != NO_ERROR) goto error;
53 status = parcel->writeBool(mSharingModeMatchRequired);
54 if (status != NO_ERROR) goto error;
56 status = mConfiguration.writeToParcel(parcel);
57 if (status !
67 status_t status = parcel->readInt32(&temp); 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.java36 * Invoked when anything changes. The value of {@code status} will
41 public abstract void onStatusUpdate(int status, float percent); 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/native/cmds/lshal/
H A DDebugCommand.cpp41 Status status = parseArgs(command, arg); local
42 if (status != OK) {
43 return status;
/frameworks/native/libs/vr/libpdx/
H A Dstatus_tests.cpp1 #include <pdx/status.h>
9 Status<int> status; local
10 EXPECT_FALSE(status.ok());
11 EXPECT_TRUE(status.empty());
12 EXPECT_EQ(0, status.get());
13 EXPECT_EQ(0, status.error());
50 Status<int> status = ErrorStatus(EIO); local
51 EXPECT_EQ(status.GetErrorMessage(), strerror(EIO));
53 status = ErrorStatus(EINVAL);
54 EXPECT_EQ(status
[all...]
/frameworks/native/services/vr/virtual_touchpad/
H A DVirtualTouchpadClient.cpp44 status_t status = service_->detach().transactionError(); local
46 return status;
/frameworks/rs/
H A DrsMutex.cpp30 int status = pthread_mutex_init(&mMutex, nullptr); local
31 if (status) {
39 int status; local
40 status = pthread_mutex_lock(&mMutex);
41 if (status) {
42 ALOGE("Mutex: error %i locking.", status);
49 int status; local
50 status = pthread_mutex_unlock(&mMutex);
51 if (status) {
52 ALOGE("Mutex error %i unlocking.", status);
[all...]
H A DrsSignal.cpp33 int status = pthread_mutex_init(&mMutex, nullptr); local
34 if (status) {
35 ALOGE("Signal::init: mutex init failure: %s", strerror(status));
39 status = pthread_cond_init(&mCondition, nullptr);
40 if (status) {
41 ALOGE("Signal::init: condition init failure: %s", strerror(status));
50 int status = pthread_mutex_lock(&mMutex); local
51 if (status) {
52 ALOGE("Signal::set: error locking for set condition: %s", strerror(status));
58 status
70 int status = pthread_mutex_lock(&mMutex); local
[all...]
/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/drm/mediacas/plugins/clearkey/
H A DClearKeyFetcher.cpp59 status_t status = container.Parse(buffer); local
60 if (status != OK) {
61 return status;
98 status = license_fetcher_->FetchLicense(*asset_id, &asset_);
99 if (status != OK) {
101 return status;
108 status = container.mutable_descriptor(i)->mutable_ecm()->Decrypt(
110 if (status != OK) {
113 return status;
/frameworks/av/media/libaudiohal/
H A DDevicesFactoryHalHidl.cpp76 status_t status = nameFromHal(name, &hidlDevice); local
77 if (status != OK) return 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/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;

Completed in 1605 milliseconds

1234567891011>>