Home
last modified time | relevance | path

Searched refs:getCharacteristics (Results 1 – 25 of 26) sorted by relevance

12

/packages/apps/Camera2/src/com/android/camera/app/
DCameraController.java108 public CameraDeviceInfo.Characteristics getCharacteristics(int cameraId) { in getCharacteristics() method in CameraController
112 return mInfo.getCharacteristics(cameraId); in getCharacteristics()
150 if (id >= mInfo.getNumberOfCameras() || mInfo.getCharacteristics(id) == null) { in isFrontFacingCamera()
154 return mInfo.getCharacteristics(id).isFacingFront(); in isFrontFacingCamera()
162 if (id >= mInfo.getNumberOfCameras() || mInfo.getCharacteristics(id) == null) { in isBackFacingCamera()
166 return mInfo.getCharacteristics(id).isFacingBack(); in isBackFacingCamera()
DCameraProvider.java66 public Characteristics getCharacteristics(int cameraId); in getCharacteristics() method
/packages/modules/Wifi/service/java/com/android/server/wifi/aware/
DWifiAwareServiceImpl.java189 public Characteristics getCharacteristics() { in getCharacteristics() method in WifiAwareServiceImpl
519 publishConfig.assertValid(mStateManager.getCharacteristics(), in publish()
545 publishConfig.assertValid(mStateManager.getCharacteristics(), in updatePublish()
583 subscribeConfig.assertValid(mStateManager.getCharacteristics(), in subscribe()
609 subscribeConfig.assertValid(mStateManager.getCharacteristics(), in updateSubscribe()
639 > mStateManager.getCharacteristics().getMaxServiceSpecificInfoLength()) { in sendMessage()
672 if (!mStateManager.getCharacteristics().isAwarePairingSupported()) { in initiateNanPairingSetupRequest()
702 if (!mStateManager.getCharacteristics().isAwarePairingSupported()) { in responseNanPairingSetupRequest()
734 if (!mStateManager.getCharacteristics().isAwarePairingSupported()) { in initiateBootStrappingSetupRequest()
761 if (!mStateManager.getCharacteristics().isSuspensionSupported()) { in suspend()
[all …]
DWifiAwareStateManager.java899 public Characteristics getCharacteristics() { in getCharacteristics() method in WifiAwareStateManager
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/aware/
DWifiAwareServiceImplTest.java180 Characteristics characteristics = getCharacteristics(mDeviceConfigFacade); in setup()
181 when(mAwareStateManagerMock.getCharacteristics()).thenReturn(characteristics); in setup()
931 when(mAwareStateManagerMock.getCharacteristics()).thenReturn(characteristics); in testSuspendWithSuspensionNotSupported()
962 when(mAwareStateManagerMock.getCharacteristics()).thenReturn(characteristics); in testSuspendWithValidConfiguration()
978 when(mAwareStateManagerMock.getCharacteristics()).thenReturn(characteristics); in testResumeWithSuspensionNotSupported()
1007 when(mAwareStateManagerMock.getCharacteristics()).thenReturn(characteristics); in testResumeWithValidConfiguration()
1109 private static Characteristics getCharacteristics(DeviceConfigFacade deviceConfigFacade) { in getCharacteristics() method in WifiAwareServiceImplTest
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothGattServer.java157 List<BluetoothGattCharacteristic> temp_chars = tmp.getCharacteristics();
158 List<BluetoothGattCharacteristic> svc_chars = service.getCharacteristics();
533 for (BluetoothGattCharacteristic charac : svc.getCharacteristics()) { in getCharacteristicByHandle()
549 for (BluetoothGattCharacteristic charac : svc.getCharacteristics()) { in getDescriptorByHandle()
DBluetoothGattService.java331 public List<BluetoothGattCharacteristic> getCharacteristics() { in getCharacteristics() method in BluetoothGattService
DBluetoothGatt.java1029 for (BluetoothGattCharacteristic charac : svc.getCharacteristics()) { in getCharacteristicById()
1045 for (BluetoothGattCharacteristic charac : svc.getCharacteristics()) { in getDescriptorById()
/packages/apps/Camera2/src/com/android/camera/settings/
DCameraFacingSetting.java54 if (appController.getCameraProvider().getCharacteristics(mCameraFacingDefaultValue). in CameraFacingSetting()
DSettingsUtil.java482 CameraDeviceInfo.Characteristics props = info.getCharacteristics(i); in getCameraId()
/packages/modules/Wifi/framework/java/android/net/wifi/aware/
DIWifiAwareManager.aidl45 Characteristics getCharacteristics(); in getCharacteristics() method
DWifiAwareManager.java421 public @Nullable Characteristics getCharacteristics() { in getCharacteristics() method in WifiAwareManager
423 return mService.getCharacteristics(); in getCharacteristics()
/packages/apps/Camera2/src/com/android/camera/
DVideoModule.java442 return mAppController.getCameraProvider().getCharacteristics(mCameraId) in isCameraFrontFacing()
450 return mAppController.getCameraProvider().getCharacteristics(mCameraId) in isCameraBackFacing()
867 mActivity.getCameraProvider().getCharacteristics(mCameraId); in setDisplayOrientation()
1179 mActivity.getCameraProvider().getCharacteristics(mCameraId).getSensorOrientation(); in initializeRecorder()
DTextureViewHelper.java365 CameraDeviceInfo.Characteristics info = mCameraProvider.getCharacteristics(cameraId);
DPhotoModule.java1141 Characteristics info = mActivity.getCameraProvider().getCharacteristics(mCameraId); in capture()
1488 return mAppController.getCameraProvider().getCharacteristics(mCameraId) in isCameraFrontFacing()
1728 mActivity.getCameraProvider().getCharacteristics(mCameraId); in setDisplayOrientation()
DCaptureModule.java1593 return mAppController.getCameraProvider().getCharacteristics(cameraId)
/packages/modules/Wifi/tests/hostsidetests/multidevices/com.google.snippet.wifi/aware/
DWifiAwareSnippet.java434 return mWifiAwareManager.getCharacteristics().isAwarePairingSupported(); in checkIfPairingSupported()
/packages/modules/Bluetooth/framework/tests/bumble/src/android/bluetooth/
DGattClientTest.java197 firstService.getCharacteristics().get(0); in clientGattReadCharacteristics()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/aware/
DWifiAwareManagerTest.java158 mDut.getCharacteristics(); in testGetCharacteristics()
160 verify(mockAwareService).getCharacteristics(); in testGetCharacteristics()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/tbs/
DTbsGatt.java1440 List<BluetoothGattCharacteristic> characteristics = gattService.getCharacteristics(); in onDeviceAuthorizationSet()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/gatt/
DGattService.java2823 List<BluetoothGattCharacteristic> chars = svc.getCharacteristics(); in onServiceAdded()
3257 for (BluetoothGattCharacteristic characteristic : service.getCharacteristics()) { in addService()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/bass_client/
DBassClientStateMachine.java1373 List<BluetoothGattCharacteristic> allChars = service.getCharacteristics(); in acquireAllBassChars()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/bass_client/
DBassClientStateMachineTest.java502 when(gattService.getCharacteristics()).thenReturn(characteristics); in acquireAllBassChars()
/packages/modules/Wifi/apex/hiddenapi/
Dhiddenapi-max-target-o-low-priority.txt143 Landroid/net/wifi/aware/IWifiAwareManager$Stub$Proxy;->getCharacteristics()Landroid/net/wifi/aware/…
170 Landroid/net/wifi/aware/IWifiAwareManager;->getCharacteristics()Landroid/net/wifi/aware/Characteris…
/packages/modules/Bluetooth/framework/api/
Dcurrent.txt779 … method public java.util.List<android.bluetooth.BluetoothGattCharacteristic> getCharacteristics();

12