HomeSort by relevance Sort by last modified time
    Searched full:clientif (Results 1 - 10 of 10) sorted by null

  /system/bt/binder/android/bluetooth/
IBluetoothGatt.aidl 76 void unregisterClient(in int clientIf);
77 void clientConnect(in int clientIf, in String address, in boolean isDirect, in int transport, in boolean opportunistic, in int phy);
78 void clientDisconnect(in int clientIf, in String address);
79 void clientSetPreferredPhy(in int clientIf, in String address, in int txPhy, in int rxPhy, in int phyOptions);
80 void clientReadPhy(in int clientIf, in String address);
81 void refreshDevice(in int clientIf, in String address);
82 void discoverServices(in int clientIf, in String address);
83 void discoverServiceByUuid(in int clientIf, in String address, in ParcelUuid uuid);
84 void readCharacteristic(in int clientIf, in String address, in int handle, in int authReq);
85 void readUsingCharacteristicUuid(in int clientIf, in String address, in ParcelUuid uuid
    [all...]
IBluetoothGattCallback.aidl 26 void onClientRegistered(in int status, in int clientIf);
27 void onClientConnectionState(in int status, in int clientIf,
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattService.java 342 private boolean isScanClient(int clientIf) {
344 if (client.scannerId == clientIf) {
349 if (client.scannerId == clientIf) {
432 public void unregisterClient(int clientIf) {
437 service.unregisterClient(clientIf);
508 public void clientConnect(int clientIf, String address, boolean isDirect, int transport,
514 service.clientConnect(clientIf, address, isDirect, transport, opportunistic, phy);
518 public void clientDisconnect(int clientIf, String address) {
523 service.clientDisconnect(clientIf, address);
527 public void clientSetPreferredPhy(int clientIf, String address, int txPhy, int rxPhy
    [all...]
FilterParams.java 34 public FilterParams(int clientIf, int filtIndex, int featSeln, int listLogicType,
38 mClientIf = clientIf;
AdvtFilterOnFoundOnLostInfo.java 42 public AdvtFilterOnFoundOnLostInfo(int clientIf, int advPktLen, byte[] advPkt, int scanRspLen,
46 mClientIf = clientIf;
ScanManager.java     [all...]
  /system/bt/test/suite/gatt/
gatt_test.cc 94 int clientIf, const bluetooth::Uuid& app_uuid) {
96 client_interface_id_ = clientIf;
gatt_test.h 62 int clientIf, const bluetooth::Uuid& app_uuid) override;
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_gatt.cpp 200 void btgattc_register_app_cb(int status, int clientIf, const Uuid& app_uuid) {
204 clientIf, UUID_PARAMS(app_uuid));
229 void btgattc_open_cb(int conn_id, int status, int clientIf,
236 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onConnected, clientIf,
240 void btgattc_close_cb(int conn_id, int status, int clientIf,
247 sCallbackEnv->CallVoidMethod(mCallbacksObj, method_onDisconnected, clientIf,
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothGatt.java 150 public void onClientRegistered(int status, int clientIf) {
153 + " clientIf=" + clientIf);
162 mClientIf = clientIf;
245 public void onClientConnectionState(int status, int clientIf,
249 + " clientIf=" + clientIf + " device=" + address);
    [all...]

Completed in 6980 milliseconds