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

1 2

  /system/bt/service/doc/
IBluetoothLowEnergy.txt 41 * |is_direct| is set, use direct connect procedure. Return true on success,
45 in boolean is_direct);
  /system/bt/bta/gatt/
bta_gatts_api.c 390 ** is_direct: direct connection or background auto connection
396 void BTA_GATTS_Open(tBTA_GATTS_IF server_if, BD_ADDR remote_bda, BOOLEAN is_direct,
404 p_buf->is_direct = is_direct;
420 ** is_direct: direct connection or background auto connection
425 void BTA_GATTS_CancelOpen(tBTA_GATTS_IF server_if, BD_ADDR remote_bda, BOOLEAN is_direct)
432 p_buf->is_direct = is_direct;
bta_gattc_api.c 133 ** is_direct: direct connection or background auto connection
140 BOOLEAN is_direct, tBTA_GATT_TRANSPORT transport)
147 p_buf->is_direct = is_direct;
163 ** is_direct: direct connection or background auto connection
168 void BTA_GATTC_CancelOpen(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, BOOLEAN is_direct)
175 p_buf->is_direct = is_direct;
bta_gatts_int.h 145 BOOLEAN is_direct; member in struct:__anon73308
bta_gattc_int.h 116 BOOLEAN is_direct; member in struct:__anon73274
bta_gatts_act.c 692 p_msg->api_open.is_direct, p_msg->api_open.transport, false))
730 p_msg->api_cancel_open.is_direct))
bta_gattc_act.c 338 if (p_msg->api_conn.is_direct)
385 if (p_msg->api_cancel_conn.is_direct)
    [all...]
  /system/bt/service/common/bluetooth/binder/
IBluetoothLowEnergy.h 76 virtual bool Connect(int client_id, const char* address, bool is_direct) = 0;
129 bool Connect(int client_id, const char* address, bool is_direct) override;
IBluetoothLowEnergy.cpp 71 bool is_direct = data.readBool(); local
73 bool result = Connect(client_id, address, is_direct);
195 bool is_direct) {
201 data.writeBool(is_direct);
  /system/bt/service/ipc/binder/
bluetooth_low_energy_binder_server.h 50 bool Connect(int client_id, const char* address, bool is_direct) override;
bluetooth_low_energy_binder_server.cpp 59 bool is_direct) {
62 << " is_direct: " << is_direct; local
71 return client->Connect(std::string(address), is_direct);
  /external/mesa3d/src/glx/tests/
create_context_unittest.cpp 79 uint8_t is_direct,
90 req.is_direct = is_direct;
244 EXPECT_FALSE(req.is_direct);
252 EXPECT_FALSE(req.is_direct);
262 EXPECT_TRUE(req.is_direct);
272 EXPECT_FALSE(req.is_direct);
  /system/bt/btif/src/
btif_gatt_server.c 99 uint8_t is_direct; member in struct:__anon73776
395 if (!p_cb->is_direct)
428 p_cb->is_direct, transport);
540 bool is_direct, int transport )
545 btif_cb.is_direct = is_direct ? 1 : 0;
btif_gatt_client.c 193 uint8_t is_direct; member in struct:__anon73771
    [all...]
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 152 bool is_direct, int transport);
bt_gatt_client.h 283 bool is_direct, int transport );
  /system/bt/bta/include/
bta_gatt_api.h 660 ** is_direct: direct connection or background auto connection
666 BOOLEAN is_direct, tBTA_GATT_TRANSPORT transport);
677 ** is_direct: direct connection or background auto connection
682 extern void BTA_GATTC_CancelOpen(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, BOOLEAN is_direct);
    [all...]
  /system/bt/service/hal/
fake_bluetooth_gatt_interface.h 41 bool is_direct, int transport) = 0;
fake_bluetooth_gatt_interface.cpp 51 bool is_direct, int transport) {
53 return g_client_handler->Connect(client_if, bd_addr, is_direct, transport);
  /system/bt/service/
low_energy_client.h 88 // |is_direct| is set, use direct connect procedure. Return true on success
90 bool Connect(std::string address, bool is_direct);
low_energy_client.cpp 337 bool LowEnergyClient::Connect(std::string address, bool is_direct) {
338 VLOG(2) << __func__ << "Address: " << address << " is_direct: " << is_direct; local
344 GetClientHALInterface()->connect(client_id_, &bda, is_direct,
  /system/update_engine/
libcurl_http_fetcher.cc 105 bool is_direct = (GetCurrentProxy() == kNoProxy); local
106 LOG(INFO) << "Using proxy: " << (is_direct ? "no" : "yes");
107 if (is_direct) {
  /system/bt/stack/include/
gatt_api.h     [all...]
  /system/bt/stack/gatt/
gatt_api.c     [all...]
  /external/mesa3d/src/glx/
glxcmds.c 598 const Bool is_direct = (reply != NULL && reply->is_direct) ? True : False; local
607 return is_direct;
    [all...]

Completed in 626 milliseconds

1 2