HomeSort by relevance Sort by last modified time
    Searched refs:clientIf (Results 1 - 14 of 14) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AdvertiseClient.java 31 int clientIf;
40 * @param clientIf - Identifier of the client.
42 AdvertiseClient(int clientIf) {
43 this.clientIf = clientIf;
47 * @param clientIf - Identifier of the client.
52 AdvertiseClient(int clientIf, AdvertiseSettings settings, AdvertiseData advertiseData,
54 this.clientIf = clientIf;
69 return clientIf == other.clientIf
    [all...]
ScanClient.java 33 int clientIf;
67 this.clientIf = appIf;
84 return clientIf == other.clientIf;
89 return Objects.hash(clientIf);
AdvertiseManager.java 125 * @param clientIf Identifier for the client.
128 void callbackDone(int clientIf, int status) {
134 postCallback(clientIf, AdvertiseCallback.ADVERTISE_FAILED_INTERNAL_ERROR);
139 private void postCallback(int clientIf, int status) {
141 AdvertiseClient client = getAdvertiseClient(clientIf);
144 mService.onMultipleAdvertiseCallback(clientIf, status, isStart, settings);
150 private AdvertiseClient getAdvertiseClient(int clientIf) {
152 if (client.clientIf == clientIf) {
186 int clientIf = client.clientIf
    [all...]
GattService.java 244 private boolean isScanClient(int clientIf) {
246 if (client.clientIf == clientIf) {
251 if (client.clientIf == clientIf) {
305 public void unregisterClient(int clientIf) {
308 service.unregisterClient(clientIf);
332 public void clientConnect(int clientIf, String address, boolean isDirect, int transport) {
335 service.clientConnect(clientIf, address, isDirect, transport);
338 public void clientDisconnect(int clientIf, String address)
    [all...]
ScanManager.java 151 void callbackDone(int clientIf, int status) {
152 logd("callback done for clientIf - " + clientIf + " status - " + status);
235 logd("app died, unregister client - " + client.clientIf);
236 mService.unregisterClient(client.clientIf);
245 mScanNative.flushBatchResults(client.clientIf);
352 // Map of clientIf and Filter indices used by client.
424 gattSetScanParametersNative(client.clientIf, scanInterval, scanWindow);
488 int clientIf = client.clientIf;
    [all...]
  /frameworks/base/core/java/android/bluetooth/
IBluetoothGatt.aidl 48 void unregisterClient(in int clientIf);
49 void clientConnect(in int clientIf, in String address, in boolean isDirect, in int transport);
50 void clientDisconnect(in int clientIf, in String address);
51 void refreshDevice(in int clientIf, in String address);
52 void discoverServices(in int clientIf, in String address);
53 void readCharacteristic(in int clientIf, in String address, in int srvcType,
57 void writeCharacteristic(in int clientIf, in String address, in int srvcType,
61 void readDescriptor(in int clientIf, in String address, in int srvcType,
66 void writeDescriptor(in int clientIf, in String address, in int srvcType,
71 void registerForNotification(in int clientIf, in String address, in int srvcType
    [all...]
BluetoothGattCallbackWrapper.java 34 public void onClientRegistered(int status, int clientIf) throws RemoteException {
38 public void onClientConnectionState(int status, int clientIf, boolean connected, String address)
IBluetoothGattCallback.aidl 27 void onClientRegistered(in int status, in int clientIf);
28 void onClientConnectionState(in int status, in int clientIf,
BluetoothGatt.java 140 public void onClientRegistered(int status, int clientIf) {
142 + " clientIf=" + clientIf);
150 mClientIf = clientIf;
171 public void onClientConnectionState(int status, int clientIf,
174 + " clientIf=" + clientIf + " device=" + address);
    [all...]
  /system/bt/test/suite/support/
gatt.c 73 void btgattc_register_app_cb(int status, int clientIf, bt_uuid_t *app_uuid) {
75 gatt_client_interface = clientIf;
83 void btgattc_open_cb(int conn_id, int status, int clientIf, bt_bdaddr_t* bda) {
87 void btgattc_close_cb(int conn_id, int status, int clientIf, bt_bdaddr_t* bda) {
callbacks.c 39 void btgattc_register_app_cb(int status, int clientIf, bt_uuid_t *app_uuid);
41 void btgattc_open_cb(int conn_id, int status, int clientIf, bt_bdaddr_t* bda);
42 void btgattc_close_cb(int conn_id, int status, int clientIf, bt_bdaddr_t* bda);
  /frameworks/base/core/java/android/bluetooth/le/
BluetoothLeAdvertiser.java 307 public void onClientRegistered(int status, int clientIf) {
308 Log.d(TAG, "onClientRegistered() - status=" + status + " clientIf=" + clientIf);
311 mClientIf = clientIf;
BluetoothLeScanner.java 313 public void onClientRegistered(int status, int clientIf) {
315 " clientIf=" + clientIf);
322 mClientIf = clientIf;
  /packages/apps/Bluetooth/jni/
com_android_bluetooth_gatt.cpp 219 void btgattc_register_app_cb(int status, int clientIf, bt_uuid_t *app_uuid)
223 clientIf, UUID_PARAMS(app_uuid));
248 void btgattc_open_cb(int conn_id, int status, int clientIf, bt_bdaddr_t* bda)
259 clientIf, conn_id, status, address);
264 void btgattc_close_cb(int conn_id, int status, int clientIf, bt_bdaddr_t* bda)
274 clientIf, conn_id, status, address);
    [all...]

Completed in 274 milliseconds