Home
last modified time | relevance | path

Searched refs:serverIf (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
DHandleMap.java37 public int serverIf = 0; field in HandleMap.Entry
48 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance) { in Entry() argument
49 this.serverIf = serverIf; in Entry()
57 Entry(int serverIf, int handle, UUID uuid, int serviceType, int instance, in Entry() argument
59 this.serverIf = serverIf; in Entry()
68 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle) { in Entry() argument
69 this.serverIf = serverIf; in Entry()
76 Entry(int serverIf, int type, int handle, UUID uuid, int serviceHandle, int charHandle) { in Entry() argument
77 this.serverIf = serverIf; in Entry()
100 void addService(int serverIf, int handle, UUID uuid, int serviceType, int instance, in addService() argument
[all …]
DGattService.java725 public void unregisterServer(int serverIf) { in unregisterServer() argument
730 service.unregisterServer(serverIf); in unregisterServer()
734 public void serverConnect(int serverIf, String address, boolean isDirect, int transport) { in serverConnect() argument
739 service.serverConnect(serverIf, address, isDirect, transport); in serverConnect()
743 public void serverDisconnect(int serverIf, String address) { in serverDisconnect() argument
748 service.serverDisconnect(serverIf, address); in serverDisconnect()
752 public void serverSetPreferredPhy(int serverIf, String address, int txPhy, int rxPhy, in serverSetPreferredPhy() argument
758 service.serverSetPreferredPhy(serverIf, address, txPhy, rxPhy, phyOptions); in serverSetPreferredPhy()
771 public void addService(int serverIf, BluetoothGattService svc) { in addService() argument
777 service.addService(serverIf, svc); in addService()
[all …]
/packages/apps/Bluetooth/jni/
Dcom_android_bluetooth_gatt.cpp1473 jint serverIf) { in gattServerUnregisterAppNative() argument
1475 sGattIf->server->unregister_server(serverIf); in gattServerUnregisterAppNative()
1488 jint serverIf, jstring address, in gattServerDisconnectNative() argument
1491 sGattIf->server->disconnect(serverIf, str2addr(env, address), conn_id); in gattServerDisconnectNative()
1495 jint serverIf, jstring address, in gattServerSetPreferredPhyNative() argument
1503 static void readServerPhyCb(uint8_t serverIf, RawAddress bda, uint8_t tx_phy, in readServerPhyCb() argument
1511 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onServerPhyRead, serverIf, in readServerPhyCb()
1515 static void gattServerReadPhyNative(JNIEnv* env, jobject object, jint serverIf, in gattServerReadPhyNative() argument
1520 sGattIf->server->read_phy(bda, base::Bind(&readServerPhyCb, serverIf, bda)); in gattServerReadPhyNative()