Searched refs:authReq (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/bluetooth/ |
D | IBluetoothGatt.aidl | 54 void readCharacteristic(in int clientIf, in String address, in int handle, in int authReq); in readCharacteristic() argument 56 in int writeType, in int authReq, in byte[] value); in writeCharacteristic() argument 57 void readDescriptor(in int clientIf, in String address, in int handle, in int authReq); in readDescriptor() argument 59 in int writeType, in int authReq, in byte[] value); in writeDescriptor() argument
|
D | BluetoothGatt.java | 271 final int authReq = (mAuthRetryState == AUTH_RETRY_STATE_IDLE) ? 273 mService.readCharacteristic(mClientIf, address, handle, authReq); 322 final int authReq = (mAuthRetryState == AUTH_RETRY_STATE_IDLE) ? 325 characteristic.getWriteType(), authReq, characteristic.getValue()); 390 final int authReq = (mAuthRetryState == AUTH_RETRY_STATE_IDLE) ? 392 mService.readDescriptor(mClientIf, address, handle, authReq); 431 final int authReq = (mAuthRetryState == AUTH_RETRY_STATE_IDLE) ? 435 authReq, descriptor.getValue());
|