Searched refs:createBondNative (Results 1 – 4 of 4) sorted by relevance
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/ |
H A D | BondStateMachineTest.java | 107 doReturn(true).when(mAdapterService).createBondNative(any(byte[].class), anyInt()); in testCreateBondAfterRemoveBond() 138 verify(mAdapterService, times(1)).createBondNative(eq(TEST_BT_ADDR_BYTES), anyInt()); in testCreateBondAfterRemoveBond() 139 verify(mAdapterService, times(1)).createBondNative(eq(TEST_BT_ADDR_BYTES_2), anyInt()); in testCreateBondAfterRemoveBond()
|
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
H A D | BondStateMachine.java | 338 result = mAdapterService.createBondNative(addr, transport); in createBond()
|
H A D | AdapterService.java | 3912 public native boolean createBondNative(byte[] address, int transport); in createBondNative() method in AdapterService
|
/aosp12/packages/apps/Bluetooth/jni/ |
H A D | com_android_bluetooth_btservice_AdapterService.cpp | 997 static jboolean createBondNative(JNIEnv* env, jobject obj, jbyteArray address, in createBondNative() function 1706 {"createBondNative", "([BI)Z", (void*)createBondNative},
|