Searched defs:status (Results 76 - 100 of 596) sorted by relevance

1234567891011>>

/frameworks/native/libs/vr/libpdx_uds/
H A Dipc_helper_tests.cpp126 auto status = SendAll(&sender_, kSocket, IntToConstPtr(kPtr), 100); local
127 EXPECT_TRUE(status);
140 auto status = SendAll(&sender_, kSocket, IntToConstPtr(kPtr), 100); local
141 EXPECT_TRUE(status);
149 auto status = SendAll(&sender_, kSocket, IntToConstPtr(kPtr), 100); local
150 EXPECT_TRUE(status);
157 auto status = SendAll(&sender_, kSocket, IntToConstPtr(kPtr), 100); local
158 ASSERT_FALSE(status);
159 EXPECT_EQ(EIO, status.error());
169 auto status local
180 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
192 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
201 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
209 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
220 auto status = RecvAll(&receiver_, kSocket, IntToPtr(kPtr), 100); local
230 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
245 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
254 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
270 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
278 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
288 auto status = SendMsgAll(&sender_, kSocket, &msg_); local
299 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
315 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
325 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
341 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
349 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
360 auto status = RecvMsgAll(&receiver_, kSocket, &msg_); local
[all...]
/frameworks/native/libs/vr/libperformance/
H A Dperformance_client.cpp68 auto status = InvokeRemoteMethodInPlace<PerformanceRPC::GetCpuPartition>( local
70 return status ? 0 : -status.error();
82 auto status = InvokeRemoteMethodInPlace<PerformanceRPC::GetCpuPartition>( local
84 if (!status)
85 return -status.error();
/frameworks/native/services/vr/hardware_composer/tests/
H A Dvr_composer_test.cpp41 binder::Status status = TestComposerCallback::onNewFrame(frame, fence); variable
47 return status;
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
H A DProtocolPortTupleTest.java43 * @param status Status value
46 private ByteBuffer getTestBuffer(int protocol, int port, int status) { argument
51 buffer.put((byte) status);
68 * the complete tuple data (missing status field).
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoBitmapLoaderInterface.java20 public int status; field in class:PhotoBitmapLoaderInterface.BitmapResult
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DNotifyRespInd.java31 * @param status the status value
38 int status) throws InvalidHeaderValueException {
43 setStatus(status);
36 NotifyRespInd(int mmsVersion, byte[] transactionId, int status) argument
/frameworks/rs/
H A DrsCppUtils.cpp83 int status = 0; local
84 pid_t w = TEMP_FAILURE_RETRY(waitpid(pid, &status, 0));
91 if (WIFEXITED(status) && WEXITSTATUS(status) == 0) {
95 ALOGE("Child process \"%s\" terminated with status %d", exe, status);
/frameworks/av/camera/include/camera/
H A DCameraBase.h69 * Basic status information about a camera device - its name and its current
79 * Its current status, one of the ICameraService::STATUS_* fields
81 int32_t status; member in struct:android::hardware::CameraStatus
86 CameraStatus(String8 id, int32_t s) : cameraId(id), status(s) {}
87 CameraStatus() : status(ICameraServiceListener::STATUS_PRESENT) {}
/frameworks/av/drm/mediacas/plugins/clearkey/
H A Decm_generator.cpp65 status_t status = DecodeECMClearFields(ecm, asset, default_fields); local
66 if (status != OK) {
67 return status;
/frameworks/av/include/camera/
H A DCameraBase.h69 * Basic status information about a camera device - its name and its current
79 * Its current status, one of the ICameraService::STATUS_* fields
81 int32_t status; member in struct:android::hardware::CameraStatus
86 CameraStatus(String8 id, int32_t s) : cameraId(id), status(s) {}
87 CameraStatus() : status(ICameraServiceListener::STATUS_PRESENT) {}
/frameworks/av/media/libaudioclient/
H A DTrackPlayerBase.cpp64 status_t status = NO_INIT; local
66 status = mAudioTrack->start();
68 return status;
72 status_t status = NO_INIT; local
75 status = NO_ERROR;
77 return status;
82 status_t status = NO_INIT; local
85 status = NO_ERROR;
87 return status;
95 status_t status local
111 VolumeShaper::Status status = mAudioTrack->applyVolumeShaper(configuration, operation); local
[all...]
/frameworks/av/media/libaudiohal/
H A DConversionHelperHidl.cpp44 status_t status = halKeys.getAt(i, key); local
45 if (status != OK) return status;
65 status_t status = params.getAt(i, key, value); local
66 if (status != OK) return status;
H A DEffectHalLocal.cpp32 int status = EffectRelease(mHandle); local
33 ALOGW_IF(status, "Error releasing effect %p: %s", mHandle, strerror(-status));
/frameworks/av/media/libmedia/omx/1.0/
H A DWOmxBufferSource.cpp61 ::android::binder::Status status = toBinderStatus( local
66 return status;
/frameworks/av/media/libmediaplayerservice/
H A DTestPlayerStub.cpp125 status_t status = parseUrl(); local
127 if (OK != status) {
129 return status;
/frameworks/av/media/libstagefright/
H A DStagefrightMediaScanner.cpp85 status_t status; local
88 status = mRetriever->setDataSource(NULL /* httpService */, path);
90 status = mRetriever->setDataSource(fd, 0, 0x7ffffffffffffffL);
94 if (status) {
101 status = client.setMimeType(value);
102 if (status) {
134 status = client.addStringTag(kKeyMap[i].tag, value);
135 if (status != OK) {
/frameworks/av/media/libstagefright/omx/1.0/
H A DWOmxBufferSource.cpp61 ::android::binder::Status status = toBinderStatus( local
66 return status;
/frameworks/av/media/libstagefright/rtsp/
H A DAH263Assembler.cpp45 AssemblyStatus status = addPacket(source); local
46 if (status == MALFORMED_PACKET) {
49 return status;
H A DARTPAssembler.cpp33 AssemblyStatus status; local
35 status = assembleMore(source);
37 if (status == WRONG_SEQUENCE_NUMBER) {
53 if (status == NOT_ENOUGH_DATA) {
/frameworks/av/radio/
H A DIRadioService.cpp62 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
63 if (status == NO_ERROR) {
64 status = (status_t)reply.readInt32();
67 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
68 if (status == NO_ERROR) {
76 return status;
100 status_t status = remote()->transact(ATTACH, data, &reply); local
101 if (status != NO_ERROR) {
102 return status;
136 status_t status = listModules(properties, &numModules); local
166 status_t status = attach(handle, client, configPtr, withAudio, radio); local
[all...]
/frameworks/av/soundtrigger/
H A DISoundTrigger.cpp62 status_t status = remote()->transact(LOAD_SOUND_MODEL, data, &reply); local
63 if (status != NO_ERROR) {
64 return status;
66 status = (status_t)reply.readInt32();
67 if (status == NO_ERROR) {
70 return status;
78 status_t status = remote()->transact(UNLOAD_SOUND_MODEL, data, &reply); local
79 if (status == NO_ERROR) {
80 status = (status_t)reply.readInt32();
82 return status;
97 status_t status = remote()->transact(START_RECOGNITION, data, &reply); local
109 status_t status = remote()->transact(STOP_RECOGNITION, data, &reply); local
137 status_t status = loadSoundModel(modelMemory, &handle); local
148 status_t status = unloadSoundModel(handle); local
160 status_t status = startRecognition(handle, dataMemory); local
168 status_t status = stopRecognition(handle); local
[all...]
H A DISoundTriggerHwService.cpp63 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
64 if (status == NO_ERROR) {
65 status = (status_t)reply.readInt32();
68 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
69 if (status == NO_ERROR) {
77 return status;
88 status_t status = remote()->transact(ATTACH, data, &reply); local
89 if (status != NO_ERROR) {
90 return status;
104 status_t status = remote()->transact(SET_CAPTURE_STATE, data, &reply); local
136 status_t status = listModules(modules, &numModules); local
159 status_t status = attach(handle, client, module); local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCallback.java33 * @param status Status of the PHY update operation.
36 public void onPhyUpdate(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { argument
47 * @param status Status of the PHY read operation.
50 public void onPhyRead(BluetoothGatt gatt, int txPhy, int rxPhy, int status) { argument
58 * @param status Status of the connect or disconnect operation.
64 public void onConnectionStateChange(BluetoothGatt gatt, int status, argument
73 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the remote device
76 public void onServicesDiscovered(BluetoothGatt gatt, int status) { argument
85 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the read operation
89 int status) {
88 onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) argument
107 onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) argument
131 onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
144 onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
155 onReliableWriteCompleted(BluetoothGatt gatt, int status) argument
168 onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) argument
182 onMtuChanged(BluetoothGatt gatt, int mtu, int status) argument
199 onConnectionUpdated(BluetoothGatt gatt, int interval, int latency, int timeout, int status) argument
[all...]
/frameworks/base/core/java/android/bluetooth/le/
H A DAdvertisingSetCallback.java23 * status.
60 * indicating result of the operation. If status is ADVERTISE_SUCCESS, then advertisingSet
62 * null, and status will be set to proper error code.
66 * @param status Status of the operation.
68 public void onAdvertisingSetStarted(AdvertisingSet advertisingSet, int txPower, int status) {} argument
80 * result of the operation. If status is ADVERTISE_SUCCESS, then advertising set is advertising.
83 * @param status Status of the operation.
85 public void onAdvertisingEnabled(AdvertisingSet advertisingSet, boolean enable, int status) {} argument
89 * result of the operation. If status is ADVERTISE_SUCCESS, then data was changed.
92 * @param status Statu
94 onAdvertisingDataSet(AdvertisingSet advertisingSet, int status) argument
103 onScanResponseDataSet(AdvertisingSet advertisingSet, int status) argument
113 onAdvertisingParametersUpdated(AdvertisingSet advertisingSet, int txPower, int status) argument
124 onPeriodicAdvertisingParametersUpdated(AdvertisingSet advertisingSet, int status) argument
134 onPeriodicAdvertisingDataSet(AdvertisingSet advertisingSet, int status) argument
144 onPeriodicAdvertisingEnabled(AdvertisingSet advertisingSet, boolean enable, int status) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_PointerIcon.cpp118 status_t status = android_view_PointerIcon_load(env, pointerIconObj, local
121 return status;

Completed in 469 milliseconds

1234567891011>>