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

1 2

  /system/bt/service/
bluetooth_instance.h 61 BLEStatus status, const UUID& app_uuid,
64 // Registers an instance for the given unique identifier |app_uuid|.
68 virtual bool RegisterInstance(const UUID& app_uuid,
gatt_client.cpp 75 bt_uuid_t app_uuid = uuid.GetBlueDroid(); local
77 if (hal_iface->register_client(&app_uuid) != BT_STATUS_SUCCESS)
88 const bt_uuid_t& app_uuid) {
89 UUID uuid(app_uuid);
gatt_client.h 75 const bt_uuid_t& app_uuid) override;
low_energy_client.cpp 853 bt_uuid_t app_uuid = uuid.GetBlueDroid(); local
855 if (hal_iface->register_client(&app_uuid) != BT_STATUS_SUCCESS)
866 const bt_uuid_t& app_uuid) {
867 UUID uuid(app_uuid);
low_energy_client.h 264 const bt_uuid_t& app_uuid) override;
gatt_server_old.cpp 68 // provides an |app_uuid|, which can be used to store callback structures in
133 void RegisterServerCallback(int status, int server_if, bt_uuid_t *app_uuid) {
134 LOG_INFO(LOG_TAG, "%s: status:%d server_if:%d app_uuid:%p", __func__, status,
135 server_if, app_uuid);
140 service_id.id.uuid = *app_uuid;
338 void RegisterClientCallback(int status, int client_if, bt_uuid_t *app_uuid) {
340 client_if, app_uuid->uu[0]);
gatt_server.cpp 980 bt_uuid_t app_uuid = uuid.GetBlueDroid(); local
982 if (hal_iface->register_server(&app_uuid) != BT_STATUS_SUCCESS)
993 const bt_uuid_t& app_uuid) {
994 UUID uuid(app_uuid);
gatt_server.h 381 const bt_uuid_t& app_uuid) override;
  /system/bt/service/hal/
fake_bluetooth_gatt_interface.h 36 virtual bt_status_t RegisterClient(bt_uuid_t* app_uuid) = 0;
64 virtual bt_status_t RegisterServer(bt_uuid_t* app_uuid) = 0;
96 const bt_uuid_t& app_uuid);
109 const bt_uuid_t& app_uuid);
fake_bluetooth_gatt_interface.cpp 29 bt_status_t FakeRegisterClient(bt_uuid_t* app_uuid) {
31 return g_client_handler->RegisterClient(app_uuid);
100 bt_status_t FakeRegisterServer(bt_uuid_t* app_uuid) {
102 return g_server_handler->RegisterServer(app_uuid);
258 const bt_uuid_t& app_uuid) {
260 RegisterClientCallback(this, status, client_if, app_uuid));
301 const bt_uuid_t& app_uuid) {
303 RegisterServerCallback(this, status, server_if, app_uuid));
bluetooth_gatt_interface.h 57 const bt_uuid_t& app_uuid);
150 const bt_uuid_t& app_uuid);
bluetooth_gatt_interface.cpp 73 void RegisterClientCallback(int status, int client_if, bt_uuid_t* app_uuid) {
77 CHECK(app_uuid);
80 RegisterClientCallback(g_interface, status, client_if, *app_uuid));
267 void RegisterServerCallback(int status, int server_if, bt_uuid_t* app_uuid) {
271 CHECK(app_uuid);
274 RegisterServerCallback(g_interface, status, server_if, *app_uuid));
604 const bt_uuid_t& /* app_uuid */) {
740 const bt_uuid_t& /* app_uuid */) {
  /system/bt/service/ipc/binder/
interface_with_instances_base.cpp 37 bluetooth::UUID app_uuid = bluetooth::UUID::GetRandom(); local
38 if (!pending_callbacks_.Register(app_uuid, callback)) {
66 if (factory->RegisterInstance(app_uuid, cb))
70 pending_callbacks_.Remove(app_uuid);
  /system/bt/bta/gatt/
bta_gatts_int.h 70 tBT_UUID app_uuid; member in struct:__anon72891
184 tBT_UUID app_uuid; member in struct:__anon72903
bta_gatts_act.c 198 if (bta_gatts_uuid_compare(p_cb->rcb[i].app_uuid, p_msg->api_reg.app_uuid))
219 memcpy(&cb_data.reg_oper.uuid, &p_msg->api_reg.app_uuid, sizeof(tBT_UUID));
226 memcpy(&p_cb->rcb[first_unuse].app_uuid, &p_msg->api_reg.app_uuid, sizeof(tBT_UUID));
229 GATT_Register(&p_msg->api_reg.app_uuid, &bta_gatts_cback);
bta_gattc_int.h 98 tBT_UUID app_uuid; member in struct:__anon72864
316 tBT_UUID app_uuid; member in struct:__anon72883
bta_gatts_api.c 94 memcpy(&p_buf->app_uuid, p_app_uuid, sizeof(tBT_UUID));
  /system/bt/test/suite/gatt/
gatt_test.h 58 int status, int clientIf, const bt_uuid_t& app_uuid) override;
gatt_test.cpp 102 int status, int clientIf, const bt_uuid_t& app_uuid) {
  /system/bt/stack/gatt/
gatt_attr.c 270 tBT_UUID app_uuid = {LEN_UUID_128, {0}}; local
276 memset (&app_uuid.uu.uuid128, 0x81, LEN_UUID_128);
280 gatt_cb.gatt_if = GATT_Register(&app_uuid, &gatt_profile_cback);
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 48 bt_uuid_t *app_uuid);
  /system/bt/btif/src/
btif_gatt_test.c 221 tBT_UUID app_uuid = {LEN_UUID_128,{0xAE}}; local
222 test_cb.gatt_if = GATT_Register(&app_uuid, &btif_test_callbacks);
btif_gatt_server.c 172 bt_uuid_t app_uuid; local
173 bta_to_btif_uuid(&app_uuid, &p_data->reg_oper.uuid);
177 , &app_uuid
  /system/bt/stack/gap/
gap_ble.c 382 tBT_UUID app_uuid = {LEN_UUID_128,{0}}; local
389 memset (&app_uuid.uu.uuid128, 0x82, LEN_UUID_128);
392 gap_cb.gatt_if = GATT_Register(&app_uuid, &gap_cback);
441 memset (&app_uuid.uu.uuid128, 0x81, LEN_UUID_128);
  /system/bt/stack/srvc/
srvc_eng.c 432 tBT_UUID app_uuid = {LEN_UUID_16, {UUID_SERVCLASS_DEVICE_INFO}}; local
443 srvc_eng_cb.gatt_if = GATT_Register(&app_uuid, &srvc_gatt_cback);

Completed in 430 milliseconds

1 2