HomeSort by relevance Sort by last modified time
    Searched refs:client_id (Results 1 - 25 of 71) sorted by null

1 2 3

  /system/bt/service/common/android/bluetooth/
IBluetoothGattClientCallback.aidl 20 void OnClientRegistered(int status, int client_id);
IBluetoothLowEnergy.aidl 29 boolean Connect(int client_id, String address, boolean is_direct);
30 boolean Disconnect(int client_id, String address);
32 boolean SetMtu(int client_id, String address, int mtu);
IBluetoothLowEnergyCallback.aidl 23 void OnClientRegistered(int status, int client_id);
24 void OnConnectionState(int status, int client_id, String address, boolean connected);
IBluetoothGattClient.aidl 24 void UnregisterClient(int client_id);
IBluetoothLeScannerCallback.aidl 22 void OnScannerRegistered(int status, int client_id);
IBluetoothLeScanner.aidl 28 boolean StartScan(int client_id,
31 boolean StopScan(int client_id);
  /system/bt/service/doc/
IBluetoothGattClient.txt 26 * otherwise. If successful, the caller will be assigned a "client_id" which
34 * Unregisters a previously registered client with interface ID |client_id|.
36 void unregisterClient(in int client_id);
46 * case of an error. |client_id| is the identifier obtained via
49 boolean refreshDevice(in int client_id, in String device_address);
57 * an error. |client_id| is the identifier obtained via registerClient.
59 boolean discoverServices(in int client_id, in String device_address);
70 * appropriate ATT protocol error code. |client_id| is obtained via
73 boolean readCharacteristic(in int client_id,
91 * will contain the appropriate ATT protocol error code. |client_id| i
    [all...]
IBluetoothLowEnergy.txt 44 boolean Connect(in int client_id, in const char* address,
50 boolean Disconnect(in int client_id, in const char* address);
57 boolean setMtu(in int client_id, in char* address, int mtu);
60 * Initiates a BLE device scan for the scan client with ID |client_id|, using
66 boolean startScan(in int client_id, in ScanSettings settings,
71 * |client_id|. Return true on success, false otherwise.
73 boolean stopScan(in int client_id);
IBluetoothLowEnergyCallback.txt 33 void OnConnectionState(in int status, in int client_id, in const char* address,
IBluetoothGattClientCallback.txt 26 * registered. |client_id| is the owning application's unique GATT client
30 void onClientRegistered(in int status, in int client_id);
  /external/autotest/site_utils/tester_feedback/
feedback_delegate.py 24 def _get_client(self, client_id):
27 @param client_id: The client identifier.
34 if client_id not in self._clients:
35 raise xmlrpclib.Fault('Unknown client (%s)' % client_id)
36 return self._clients[client_id]
56 def new_client(self, client_id):
67 @param client_id: The client identifier.
71 if client_id in self._clients:
73 'instance did not shutdown properly?', client_id)
74 self._clients[client_id] = {
    [all...]
  /system/bt/service/ipc/binder/
bluetooth_low_energy_binder_server.cc 53 Status BluetoothLowEnergyBinderServer::UnregisterClient(int client_id) {
55 UnregisterInstanceBase(client_id);
65 Status BluetoothLowEnergyBinderServer::Connect(int client_id,
69 VLOG(2) << __func__ << " client_id: " << client_id << " address: " << address
73 auto client = GetLEClient(client_id);
75 LOG(ERROR) << "Unknown client_id: " << client_id;
85 Status BluetoothLowEnergyBinderServer::Disconnect(int client_id,
88 VLOG(2) << __func__ << " client_id: " << client_id << " address: " << address
125 int client_id = client->GetInstanceId(); local
142 int client_id = client->GetInstanceId(); local
    [all...]
bluetooth_gatt_client_binder_server.cc 50 Status BluetoothGattClientBinderServer::UnregisterClient(int client_id) {
52 UnregisterInstanceBase(client_id);
63 BluetoothGattClientBinderServer::GetGattClientCallback(int client_id) {
64 auto cb = GetCallback(client_id);
70 BluetoothGattClientBinderServer::GetGattClient(int client_id) {
72 GetInstance(client_id));
bluetooth_low_energy_binder_server.h 56 Status UnregisterClient(int client_id) override;
58 Status Connect(int client_id, const String16& address, bool is_direct,
60 Status Disconnect(int client_id, const String16& address,
62 Status SetMtu(int client_id, const String16& address, int mtu,
73 // with |client_id|. Returns NULL if such a callback cannot be found.
74 android::sp<IBluetoothLowEnergyCallback> GetLECallback(int client_id);
77 // |client_id|. Returns NULL if such a client cannot be found.
78 std::shared_ptr<bluetooth::LowEnergyClient> GetLEClient(int client_id);
bluetooth_gatt_client_binder_server.h 50 Status UnregisterClient(int client_id) override;
55 // associated with |client_id|. Returns NULL if such a callback cannot be
58 int client_id);
60 // Returns a pointer to the GattClient instance associated with |client_id|.
62 std::shared_ptr<bluetooth::GattClient> GetGattClient(int client_id);
  /external/autotest/client/common_lib/cros/fake_device_server/client_lib/
oauth_helpers.py 19 def get_oauth2_auth_url(client_id, scope=DEFAULT_SCOPE):
21 params = dict(client_id=client_id,
28 def get_oauth2_user_token(client_id, client_secret, code):
33 client_id=client_id,
46 def get_oauth2_robot_token(client_id, client_secret, code):
51 client_id=client_id,
  /system/bt/service/
gatt_client.h 46 GattClient(const UUID& uuid, int client_id);
73 int status, int client_id,
gatt_client.cc 29 GattClient::GattClient(const UUID& uuid, int client_id)
30 : app_identifier_(uuid), client_id_(client_id) {}
79 hal::BluetoothGattInterface* /* gatt_iface */, int status, int client_id,
94 if (success) client.reset(new GattClient(uuid, client_id));
low_energy_client.cc 35 int client_id)
38 client_id_(client_id),
136 int conn_id, int status, int client_id,
138 if (client_id != client_id_) return;
140 VLOG(1) << __func__ << "client_id: " << client_id << " status: " << status;
157 int client_id, const RawAddress& bda) {
158 if (client_id != client_id_) return;
160 VLOG(1) << __func__ << " client_id: " << client_id << " status: " << status
    [all...]
low_energy_client.h 102 LowEnergyClient(Adapter& adapter, const UUID& uuid, int client_id);
106 int status, int client_id,
109 int status, int client_id,
162 int status, int client_id,
  /device/generic/goldfish/keymaster/
trusty_keymaster_device.h 52 const keymaster_blob_t* client_id,
61 const keymaster_blob_t* client_id,
102 const keymaster_blob_t* client_id,
114 const keymaster_blob_t* client_id,
  /external/google-breakpad/src/client/linux/sender/
google_crash_report_sender.cc 43 DEFINE_string(client_id, "",
  /system/core/trusty/keymaster/
trusty_keymaster_device.h 52 const keymaster_blob_t* client_id,
61 const keymaster_blob_t* client_id,
102 const keymaster_blob_t* client_id,
114 const keymaster_blob_t* client_id,
  /hardware/libhardware/include/hardware/
keymaster2.h 120 * client_id and app_data must be the ID and data provided when the key was generated or
132 * \param[in] client_id The client ID data, or NULL if none associated.
141 const keymaster_blob_t* client_id,
205 * \param[in] client_id Client ID blob, which must match the blob provided in
216 const keymaster_blob_t* client_id,
  /system/keymaster/include/keymaster/
soft_keymaster_device.h 144 const keymaster_blob_t* client_id,
156 const keymaster_blob_t* client_id,
193 const keymaster_blob_t* client_id,
205 const keymaster_blob_t* client_id,

Completed in 611 milliseconds

1 2 3