Searched defs:app_uuid (Results 1 - 17 of 17) sorted by relevance

/system/bt/service/ipc/binder/
H A Dinterface_with_instances_base.cc37 bluetooth::Uuid app_uuid = bluetooth::Uuid::GetRandom(); local
38 if (!pending_callbacks_.Register(app_uuid, callback)) {
65 if (factory->RegisterInstance(app_uuid, cb)) return true;
68 pending_callbacks_.Remove(app_uuid);
/system/bt/service/
H A Dgatt_client.cc79 const Uuid& app_uuid) {
80 Uuid uuid(app_uuid);
77 RegisterClientCallback( hal::BluetoothGattInterface* , int status, int client_id, const Uuid& app_uuid) argument
H A Dlow_energy_client.cc230 const bluetooth::Uuid& app_uuid) {
231 Uuid uuid(app_uuid);
228 RegisterClientCallback( hal::BluetoothGattInterface* gatt_iface, int status, int client_id, const bluetooth::Uuid& app_uuid) argument
H A Dlow_energy_scanner.cc196 const RegisterCallback& callback, const Uuid& app_uuid, uint8_t scanner_id,
198 Uuid uuid(app_uuid);
221 callback(result, app_uuid, std::move(scanner));
195 RegisterScannerCallback( const RegisterCallback& callback, const Uuid& app_uuid, uint8_t scanner_id, uint8_t status) argument
H A Dlow_energy_advertiser.cc297 const Uuid& app_uuid, const RegisterCallback& callback) {
301 if (pending_calls_.find(app_uuid) != pending_calls_.end()) {
303 << "Uuid: " << app_uuid.ToString();
313 base::Unretained(this), callback, app_uuid));
316 pending_calls_.insert(app_uuid);
322 const RegisterCallback& callback, const Uuid& app_uuid,
327 auto iter = pending_calls_.find(app_uuid);
329 VLOG(1) << "Ignoring callback for unknown app_id: " << app_uuid.ToString();
337 advertiser.reset(new LowEnergyAdvertiser(app_uuid, advertiser_id));
343 callback(result, app_uuid, st
296 RegisterInstance( const Uuid& app_uuid, const RegisterCallback& callback) argument
321 RegisterAdvertiserCallback( const RegisterCallback& callback, const Uuid& app_uuid, uint8_t advertiser_id, uint8_t status) argument
[all...]
H A Dgatt_server.cc595 const Uuid& app_uuid) {
596 Uuid uuid(app_uuid);
593 RegisterServerCallback( hal::BluetoothGattInterface* gatt_iface, int status, int server_id, const Uuid& app_uuid) argument
H A Dgatt_server_old.cc68 // provides an |app_uuid|, which can be used to store callback structures in
133 const bluetooth::Uuid& app_uuid) {
134 LOG_INFO(LOG_TAG, "%s: status:%d server_if:%d app_uuid:%p", __func__, status,
135 server_if, &app_uuid);
140 {.type = BTGATT_DB_PRIMARY_SERVICE, .uuid = app_uuid});
349 const bluetooth::Uuid& app_uuid) {
351 client_if, app_uuid.ToString().c_str());
132 RegisterServerCallback(int status, int server_if, const bluetooth::Uuid& app_uuid) argument
348 RegisterClientCallback(int status, int client_if, const bluetooth::Uuid& app_uuid) argument
/system/bt/test/suite/gatt/
H A Dgatt_test.cc94 int clientIf, const bluetooth::Uuid& app_uuid) {
92 RegisterClientCallback( bluetooth::hal::BluetoothGattInterface* , int status, int clientIf, const bluetooth::Uuid& app_uuid) argument
/system/bt/bta/gatt/
H A Dbta_gatts_api.cc79 void BTA_GATTS_AppRegister(const bluetooth::Uuid& app_uuid, argument
89 p_buf->app_uuid = app_uuid;
H A Dbta_gatts_int.h63 bluetooth::Uuid app_uuid; member in struct:__anon126
128 bluetooth::Uuid app_uuid; member in struct:__anon134
H A Dbta_gattc_act.cc170 void bta_gattc_register(const Uuid& app_uuid, tBTA_GATTC_CBACK* p_cback, argument
184 GATT_Register(app_uuid, &bta_gattc_cl_cback)) == 0) {
190 bta_gattc_cb.cl_rcb[i].app_uuid = app_uuid;
H A Dbta_gattc_int.h239 bluetooth::Uuid app_uuid; member in struct:__anon118
320 extern void bta_gattc_register(const bluetooth::Uuid& app_uuid,
/system/bt/stack/srvc/
H A Dsrvc_eng.cc412 bluetooth::Uuid app_uuid = local
414 srvc_eng_cb.gatt_if = GATT_Register(app_uuid, &srvc_gatt_cback);
/system/bt/service/hal/
H A Dfake_bluetooth_gatt_interface.cc31 bt_status_t FakeRegisterClient(const bluetooth::Uuid& app_uuid) { argument
32 if (g_client_handler) return g_client_handler->RegisterClient(app_uuid);
60 bt_status_t FakeRegisterServer(const bluetooth::Uuid& app_uuid) { argument
61 if (g_server_handler) return g_server_handler->RegisterServer(app_uuid);
187 int status, int client_if, const bluetooth::Uuid& app_uuid) {
189 observer.RegisterClientCallback(this, status, client_if, app_uuid);
209 int status, int server_if, const Uuid& app_uuid) {
211 observer.RegisterServerCallback(this, status, server_if, app_uuid);
186 NotifyRegisterClientCallback( int status, int client_if, const bluetooth::Uuid& app_uuid) argument
208 NotifyRegisterServerCallback( int status, int server_if, const Uuid& app_uuid) argument
H A Dbluetooth_gatt_interface.cc85 const bluetooth::Uuid& app_uuid) {
91 RegisterClientCallback(g_interface, status, client_if, app_uuid));
228 const bluetooth::Uuid& app_uuid) {
234 RegisterServerCallback(g_interface, status, server_if, app_uuid));
573 int /* client_if */, const bluetooth::Uuid& /* app_uuid */) {
645 int /* server_if */, const bluetooth::Uuid& /* app_uuid */) {
84 RegisterClientCallback(int status, int client_if, const bluetooth::Uuid& app_uuid) argument
227 RegisterServerCallback(int status, int server_if, const bluetooth::Uuid& app_uuid) argument
/system/bt/stack/gap/
H A Dgap_ble.cc401 Uuid app_uuid = Uuid::From128BitBE(tmp); local
404 gatt_if = GATT_Register(app_uuid, &gap_cback);
/system/bt/stack/gatt/
H A Dgatt_int.h257 bluetooth::Uuid app_uuid; /* application UUID */ member in struct:__anon1009

Completed in 764 milliseconds