Searched refs:status (Results 26 - 50 of 878) sorted by relevance

1234567891011>>

/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/av/media/libmedia/
H A DVisualizer.cpp76 status_t status = AudioEffect::setEnabled(enabled); local
79 if (enabled && status == NO_ERROR) {
90 return status;
145 status_t status = setParameter(p); local
147 ALOGV("setCaptureSize size %d status %d p->status %d", size, status, p->status);
149 if (status == NO_ERROR) {
150 status
174 status_t status = setParameter(p); local
204 status_t status = setParameter(p); local
237 status_t status = NO_ERROR; local
264 status_t status = NO_ERROR; local
288 status_t status = NO_ERROR; local
338 status_t status = getWaveForm(waveform); local
373 status_t status = getParameter(p); local
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothGattCallback.aidl26 void onClientRegistered(in int status, in int clientIf);
27 void onClientConnectionState(in int status, in int clientIf,
29 void onPhyUpdate(in String address, in int txPhy, in int rxPhy, in int status);
30 void onPhyRead(in String address, in int txPhy, in int rxPhy, in int status);
31 void onSearchComplete(in String address, in List<BluetoothGattService> services, in int status);
32 void onCharacteristicRead(in String address, in int status, in int handle, in byte[] value);
33 void onCharacteristicWrite(in String address, in int status, in int handle);
34 void onExecuteWrite(in String address, in int status);
35 void onDescriptorRead(in String address, in int status, in int handle, in byte[] value);
36 void onDescriptorWrite(in String address, in int status, i
[all...]
H A DBluetoothGattServerCallback.java30 * @param status Status of the connect or disconnect operation.
35 public void onConnectionStateChange(BluetoothDevice device, int status, argument
42 * @param status Returns {@link BluetoothGatt#GATT_SUCCESS} if the service
46 public void onServiceAdded(int status, BluetoothGattService service) { argument
144 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the operation was successful
146 public void onNotificationSent(BluetoothDevice device, int status) { argument
170 * @param status Status of the PHY update operation.
173 public void onPhyUpdate(BluetoothDevice device, int txPhy, int rxPhy, int status) { argument
184 * @param status Status of the PHY read operation.
187 public void onPhyRead(BluetoothDevice device, int txPhy, int rxPhy, int status) { argument
204 onConnectionUpdated(BluetoothDevice gatt, int interval, int latency, int timeout, int status) argument
[all...]
/frameworks/native/libs/vr/libvrsensor/
H A Dsensor_client.cpp24 auto status = trans.Send<int>(DVR_SENSOR_START, &sensor_type_, local
26 ALOGE_IF(!status, "startSensor() failed because: %s\n",
27 status.GetErrorMessage().c_str());
28 return ReturnStatusOrError(status);
33 auto status = trans.Send<int>(DVR_SENSOR_STOP); local
34 ALOGE_IF(!status, "stopSensor() failed because: %s\n",
35 status.GetErrorMessage().c_str());
36 return ReturnStatusOrError(status);
46 auto status = trans.SendVector<int>(DVR_SENSOR_POLL, nullptr, rvec); local
47 ALOGE_IF(!status, "Senso
[all...]
/frameworks/av/media/libaudioclient/
H A DIAudioTrack.cpp59 status_t status = remote()->transact(GET_CBLK, data, &reply); local
60 if (status == NO_ERROR) {
73 status_t status = remote()->transact(START, data, &reply); local
74 if (status == NO_ERROR) {
75 status = reply.readInt32();
77 ALOGW("start() error: %s", strerror(-status));
79 return status;
108 status_t status = remote()->transact(ATTACH_AUX_EFFECT, data, &reply); local
109 if (status == NO_ERROR) {
110 status
121 status_t status = remote()->transact(SET_PARAMETERS, data, &reply); local
131 status_t status = remote()->transact(GET_TIMESTAMP, data, &reply); local
155 status_t status = configuration.get() == nullptr local
183 status_t status = remote()->transact(GET_VOLUME_SHAPER_STATE, data, &reply); local
243 status_t status = getTimestamp(timestamp); local
263 status_t status = data.readInt32(&present); local
282 status_t status = data.readInt32(&id); local
[all...]
/frameworks/base/core/java/android/hardware/
H A DCameraStatus.java25 * Contains the name of the camera device, and its current status, one of the
32 public int status; field in class:CameraStatus
42 out.writeInt(status);
47 status = in.readInt();
54 CameraStatus status = new CameraStatus();
55 status.readFromParcel(in);
57 return status;
/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/tools/validatekeymaps/
H A DMain.cpp82 status_t status = KeyLayoutMap::load(String8(filename), &map); local
83 if (status) {
84 fprintf(stderr, "Error %d parsing key layout file.\n\n", status);
92 status_t status = KeyCharacterMap::load(String8(filename), local
94 if (status) {
95 fprintf(stderr, "Error %d parsing key character map file.\n\n", status);
103 status_t status = PropertyMap::load(String8(filename), &map); local
104 if (status) {
105 fprintf(stderr, "Error %d parsing input device configuration file.\n\n", status);
114 status_t status local
[all...]
/frameworks/av/camera/aidl/android/hardware/
H A DICameraServiceListener.aidl24 * Initial status will be transmitted with onStatusChange immediately
54 oneway void onStatusChanged(int status, String cameraId);
57 * The torch mode status of a camera.
59 * Initial status will be transmitted with onTorchStatusChanged immediately
78 oneway void onTorchStatusChanged(int status, String cameraId);
/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;
/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 DIBackupObserver.aidl45 * @param status Zero on success; a nonzero error code if the backup operation failed.
47 void onResult(String target, int status);
53 * @param status Zero on success; a nonzero error code if the backup operation
56 void backupFinished(int status);
/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/base/libs/hwui/utils/
H A DGLUtils.cpp38 GLenum status = GL_NO_ERROR;
39 while ((status = glGetError()) != GL_NO_ERROR) {
41 switch (status) {
55 ALOGE("GL error: 0x%x", status);
/frameworks/native/libs/vr/libdisplay/
H A Ddisplay_manager_client.cpp25 auto status = InvokeRemoteMethod<DisplayManagerProtocol::GetSurfaceState>(); local
26 if (!status) {
29 status.GetErrorMessage().c_str());
32 return status;
37 auto status = InvokeRemoteMethod<DisplayManagerProtocol::GetSurfaceQueue>( local
39 if (!status) {
43 surface_id, queue_id, status.GetErrorMessage().c_str());
44 return status.error_status();
47 return {ConsumerQueue::Import(status.take())};
/frameworks/base/core/java/android/provider/
H A DDownloads.java210 * The name of the column containing the current status of the download.
216 public static final String COLUMN_STATUS = "status";
220 * status changed in the download. Stored as a System.currentTimeMillis()
519 * Returns whether the status is informational (i.e. 1xx).
521 public static boolean isStatusInformational(int status) { argument
522 return (status >= 100 && status < 200);
526 * Returns whether the status is a success (i.e. 2xx).
528 public static boolean isStatusSuccess(int status) { argument
529 return (status >
535 isStatusError(int status) argument
542 isStatusClientError(int status) argument
549 isStatusServerError(int status) argument
568 isStatusCompleted(int status) argument
732 statusToString(int status) argument
[all...]
/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp25 auto status = channel_factory_->Connect(reconnect_timeout_ms_); local
26 if (!status) {
27 error_ = -status.error();
28 ret.SetError(status.error());
31 channel_ = status.take();
65 auto status = channel_factory_->Connect(timeout_ms); variable
66 if (!status) {
68 status.GetErrorMessage().c_str());
69 error_ = -status.error();
71 channel_ = status
86 auto status = CheckReconnect(); local
99 auto status = CheckReconnect(); local
152 auto status = client_.GetChannel()->SendWithInt( local
167 auto status = client_.CheckReconnect(); local
188 auto status = client_.CheckReconnect(); local
209 auto status = client_.CheckReconnect(); local
[all...]
/frameworks/av/media/libaaudio/src/binding/
H A DSharedMemoryParcelable.cpp52 status_t status = parcel->writeInt32(mSizeInBytes); local
53 if (status != NO_ERROR) return status;
56 status = parcel->writeUniqueFileDescriptor(mFd);
57 ALOGE_IF(status != NO_ERROR, "SharedMemoryParcelable writeDupFileDescriptor failed : %d",
58 status);
60 return status;
64 status_t status = parcel->readInt32(&mSizeInBytes); local
65 if (status != NO_ERROR) {
66 return status;
[all...]
/frameworks/native/libs/vr/libbufferhubqueue/
H A Dbuffer_hub_queue_client.cpp92 auto status = InvokeRemoteMethod<BufferHubRPC::GetQueueInfo>(); local
93 if (!status) {
95 status.GetErrorMessage().c_str());
96 return ErrorStatus(status.error());
98 SetupQueue(status.get());
113 if (auto status = CreateConsumerQueueHandle(/*silent*/ false))
114 return std::unique_ptr<ConsumerQueue>(new ConsumerQueue(status.take()));
120 if (auto status = CreateConsumerQueueHandle(/*silent*/ true))
121 return std::unique_ptr<ConsumerQueue>(new ConsumerQueue(status.take()));
128 auto status local
213 auto status = buffers_[slot]->GetEventMask(poll_events); local
246 auto status = GetEventMask(poll_event); local
393 auto status = RemoveBuffer(slot); local
409 auto status = ImportQueue(); local
420 auto status = local
443 Status<std::vector<std::pair<LocalChannelHandle, size_t>>> status = local
490 auto status = local
512 auto status = BufferHubQueue::AddBuffer(buffer, slot); local
520 auto status = local
546 auto status = BufferHubQueue::Dequeue(timeout, slot); local
560 auto status = ImportQueue(); local
578 auto status = InvokeRemoteMethod<BufferHubRPC::ConsumerQueueImportBuffers>(); local
632 auto status = BufferHubQueue::AddBuffer(buffer, slot); local
667 auto status = Dequeue(timeout, slot, &canonical_meta, acquire_fence); local
693 auto status = BufferHubQueue::Dequeue(timeout, slot); local
708 auto status = ImportBuffers(); local
[all...]
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c241 * @return A status code.
244 FwdLockConv_Status_t status; local
253 status = FwdLockConv_Status_OutOfMemory;
257 status = FwdLockConv_Status_ProgramError;
264 status = FwdLockConv_Status_ProgramError;
271 status = FwdLockConv_Status_OK;
277 return status;
312 * @return A status code.
331 * @return A status code.
335 FwdLockConv_Status_t status local
472 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
529 FwdLockConv_Status_t status; local
551 FwdLockConv_Status_t status; local
598 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
870 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
938 FwdLockConv_Status_t status = FwdLockConv_Status_OK; local
1079 FwdLockConv_Status_t status; local
1112 FwdLockConv_Status_t status; local
1172 FwdLockConv_Status_t status; local
1202 FwdLockConv_Status_t status; local
1256 FwdLockConv_Status_t status; local
[all...]
/frameworks/base/core/java/android/hardware/hdmi/
H A DIHdmiDeviceEventListener.aidl23 * the CEC logical device status change event.
31 * status has changed
32 * @param status device status. It should be one of the following values
39 void onStatusChanged(in HdmiDeviceInfo deviceInfo, in int status);

Completed in 716 milliseconds

1234567891011>>