Searched refs:status (Results 126 - 150 of 521) sorted by path

1234567891011>>

/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp171 ALOGE("%s: State transition to the same status 0x%x not allowed",
720 status_t status = connectFinishUnsafe(client, client->getRemote()); local
721 if (status != OK) {
723 return status;
747 status_t status = validateConnect(cameraId, /*inout*/clientUid); local
748 if (status != OK) {
749 return status;
766 status = connectHelperLocked(/*out*/client,
772 if (status != OK) {
773 return status;
811 status_t status = validateConnect(cameraId, /*inout*/clientUid); local
851 status_t status = client->initialize(mModule); local
881 status_t status = validateConnect(cameraId, /*inout*/clientUid); local
923 status_t status = connectFinishUnsafe(client, client->getRemote()); local
954 status_t status = validateConnect(cameraId, /*inout*/clientUid); local
995 status_t status = connectFinishUnsafe(client, client->getRemote()); local
1749 updateStatus(ICameraServiceListener::Status status, int32_t cameraId, const StatusVector *rejectSourceStates) argument
[all...]
H A DCameraService.h398 // Read the current status (locks mStatusMutex)
403 // Broadcast the new status if it changed (locks the service mutex)
405 ICameraServiceListener::Status status,
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp155 /** Start up status tracker thread */
159 SET_ERR_L("Unable to start status tracking thread: %s (%d)",
396 const char *status = local
404 lines.appendFormat(" Device status: %s\n", status);
480 SET_ERR_L("Unexpected status: %d", mStatus);
643 SET_ERR_L("Unexpected status: %d", mStatus);
690 SET_ERR_L("%s: Unexpected status: %d", mStatus);
761 SET_ERR_L("Unexpected status: %d", mStatus);
836 SET_ERR_L("Unexpected status
[all...]
H A DCamera3IOStreamBase.cpp142 camera3_buffer_status_t status,
154 buffer.status = status;
138 handoutBufferLocked(camera3_stream_buffer &buffer, buffer_handle_t *handle, int acquireFence, int releaseFence, camera3_buffer_status_t status, bool output) argument
H A DCamera3IOStreamBase.h102 camera3_buffer_status_t status,
H A DCamera3InputStream.cpp127 if (buffer.status == CAMERA3_BUFFER_STATUS_ERROR) {
H A DCamera3OutputStream.cpp161 if (buffer.status == CAMERA3_BUFFER_STATUS_ERROR) {
197 if (buffer.status == CAMERA3_BUFFER_STATUS_ERROR) {
H A DCamera3Stream.cpp476 streamBuffers.editItemAt(i).status = CAMERA3_BUFFER_STATUS_ERROR;
H A DCamera3ZslStream.cpp232 if (buffer.status == CAMERA3_BUFFER_STATUS_ERROR) {
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.cpp548 status_t status = mHwDevice->load_sound_model(mHwDevice, local
553 if (status != NO_ERROR) {
554 return status;
560 status = AudioSystem::acquireSoundTriggerSession(&session, &ioHandle, &device);
561 if (status != NO_ERROR) {
562 return status;
568 return status;
634 status_t status = mHwDevice->start_recognition(mHwDevice, handle, config, local
638 if (status == NO_ERROR) {
643 return status;
[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 (status = (status_t)reply.readInt32()) != NO_ERROR) {
65 return status;
68 return status;
76 status_t status = remote()->transact(UNLOAD_SOUND_MODEL, data, &reply); local
77 if (status != NO_ERROR) {
78 status = (status_t)reply.readInt32();
80 return status;
95 status_t status local
107 status_t status = remote()->transact(STOP_RECOGNITION, data, &reply); local
135 status_t status = loadSoundModel(modelMemory, &handle); local
146 status_t status = unloadSoundModel(handle); local
158 status_t status = startRecognition(handle, dataMemory); local
166 status_t status = stopRecognition(handle); local
[all...]
H A DISoundTriggerHwService.cpp61 status_t status = remote()->transact(LIST_MODULES, data, &reply); local
62 if (status == NO_ERROR) {
63 status = (status_t)reply.readInt32();
66 ALOGV("listModules() status %d got *numModules %d", status, *numModules);
67 if (status == NO_ERROR) {
75 return status;
87 status_t status = reply.readInt32(); local
91 return status;
99 status_t status local
123 status_t status = listModules(modules, &numModules); local
146 status_t status = attach(handle, client, module); local
[all...]
H A DSoundTrigger.cpp104 status_t status = service->attach(module, soundTrigger, soundTrigger->mISoundTrigger); local
106 if (status == NO_ERROR && soundTrigger->mISoundTrigger != 0) {
109 ALOGW("Error %d connecting to sound trigger service", status);
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp236 status_t status = SurfaceComposerClient::getDisplayInfo(dtoken, &dinfo); local
237 if (status)
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java756 public void onPackageInstalled(String name, int status, String msg, Bundle extras) { argument
759 result = status;
760 if (status == PackageManager.INSTALL_FAILED_DUPLICATE_PERMISSION) {
1117 final int status = result.getIntExtra(PackageInstaller.EXTRA_STATUS,
1119 if (status == PackageInstaller.STATUS_SUCCESS) {
1337 final int status = result.getIntExtra(PackageInstaller.EXTRA_STATUS,
1339 if (status == PackageInstaller.STATUS_SUCCESS) {
/frameworks/base/cmds/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/base/cmds/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
H A DUiAutomatorTestRunner.java70 public void sendStatus(int resultCode, Bundle status) {
71 mWatcher.instrumentationStatus(null, resultCode, status);
273 * send a status for the start of a each test, so long tests can be seen
/frameworks/base/core/java/android/app/
H A DDownloadManager.java113 * Current status of the download, as one of the STATUS_* constants.
118 * Provides more detail on the status of the download. Its meaning depends on the value of
122 * occurred. If an HTTP error occurred, this will hold the HTTP status code as defined in RFC
132 * status codes</a>
792 * Include only downloads with status matching any the given status flags.
1035 int status = cursor.getInt(cursor.getColumnIndexOrThrow(COLUMN_STATUS));
1036 if (DownloadManager.STATUS_SUCCESSFUL == status) {
1062 // downloaded file not found or its status is not 'successfully completed'
1090 // downloaded file not found or its status i
1335 getReason(int status) argument
1348 getPausedReason(int status) argument
1364 getErrorCode(int status) argument
1402 translateStatus(int status) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGatt.java140 public void onClientRegistered(int status, int clientIf) {
141 if (DBG) Log.d(TAG, "onClientRegistered() - status=" + status
151 if (status != GATT_SUCCESS) {
171 public void onClientConnectionState(int status, int clientIf,
173 if (DBG) Log.d(TAG, "onClientConnectionState() - status=" + status
181 mCallback.onConnectionStateChange(BluetoothGatt.this, status, profileState);
298 public void onSearchComplete(String address, int status) {
299 if (DBG) Log.d(TAG, "onSearchComplete() = Device=" + address + " Status=" + status);
[all...]
H A DBluetoothGattCallback.java29 * @param status Status of the connect or disconnect operation.
35 public void onConnectionStateChange(BluetoothGatt gatt, int status, argument
44 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the remote device
47 public void onServicesDiscovered(BluetoothGatt gatt, int status) { argument
56 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the read operation
60 int status) {
75 * @param status The result of the write operation
79 BluetoothGattCharacteristic characteristic, int status) {
99 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the read operation
103 int status) {
59 onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) argument
78 onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) argument
102 onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
115 onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, int status) argument
126 onReliableWriteCompleted(BluetoothGatt gatt, int status) argument
139 onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) argument
153 onMtuChanged(BluetoothGatt gatt, int mtu, int status) argument
[all...]
H A DBluetoothGattCallbackWrapper.java34 public void onClientRegistered(int status, int clientIf) throws RemoteException { argument
38 public void onClientConnectionState(int status, int clientIf, boolean connected, String address) argument
74 public void onSearchComplete(String address, int status) throws RemoteException { argument
78 public void onCharacteristicRead(String address, int status, int srvcType, int srvcInstId, argument
84 public void onCharacteristicWrite(String address, int status, int srvcType, int srvcInstId, argument
89 public void onExecuteWrite(String address, int status) throws RemoteException { argument
93 public void onDescriptorRead(String address, int status, int srvcType, int srvcInstId, argument
99 public void onDescriptorWrite(String address, int status, int srvcType, int srvcInstId, argument
110 public void onReadRemoteRssi(String address, int rssi, int status) throws RemoteException { argument
114 public void onMultiAdvertiseCallback(int status, boolea argument
119 onConfigureMTU(String address, int mtu, int status) argument
[all...]
H A DBluetoothGattServer.java68 public void onServerRegistered(int status, int serverIf) {
69 if (DBG) Log.d(TAG, "onServerRegistered() - status=" + status
95 public void onServerConnectionState(int status, int serverIf,
97 if (DBG) Log.d(TAG, "onServerConnectionState() - status=" + status
100 mCallback.onConnectionStateChange(mAdapter.getRemoteDevice(address), status,
112 public void onServiceAdded(int status, int srvcType,
116 + "status=" + status);
492 sendResponse(BluetoothDevice device, int requestId, int status, int offset, byte[] value) argument
[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

Completed in 8485 milliseconds

1234567891011>>