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

1 2

  /system/bt/service/common/android/bluetooth/
IBluetoothLowEnergy.aidl 29 boolean Connect(int client_id, String address, boolean is_direct);
  /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.cc 277 * is_direct: direct connection or background auto connection
284 void BTA_GATTS_Open(tBTA_GATTS_IF server_if, BD_ADDR remote_bda, bool is_direct,
291 p_buf->is_direct = is_direct;
307 * is_direct: direct connection or background auto connection
313 bool is_direct) {
319 p_buf->is_direct = is_direct;
bta_gattc_api.cc 126 * is_direct: direct connection or background auto connection
134 void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, bool is_direct,
137 BTA_GATTC_Open(client_if, remote_bda, is_direct, transport, opportunistic,
141 void BTA_GATTC_Open(tBTA_GATTC_IF client_if, BD_ADDR remote_bda, bool is_direct,
149 p_buf->is_direct = is_direct;
168 * is_direct: direct connection or background auto connection
174 bool is_direct) {
180 p_buf->is_direct = is_direct;
    [all...]
bta_gatts_int.h 104 bool is_direct; member in struct:__anon105485
bta_gatts_act.cc 438 p_msg->api_open.is_direct, p_msg->api_open.transport,
471 p_msg->api_cancel_open.is_direct)) {
bta_gattc_int.h 102 bool is_direct; member in struct:__anon105455
bta_gattc_act.cc 287 if (p_msg->api_conn.is_direct) {
323 if (p_msg->api_cancel_conn.is_direct) {
    [all...]
  /system/bt/service/ipc/binder/
bluetooth_low_energy_binder_server.cc 67 bool is_direct,
70 << " is_direct: " << is_direct; local
81 client->Connect(std::string(String8(address).string()), is_direct);
bluetooth_low_energy_binder_server.h 58 Status Connect(int client_id, const String16& address, bool 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/service/
low_energy_client.cc 54 bool LowEnergyClient::Connect(const std::string& address, bool is_direct) {
55 VLOG(2) << __func__ << "Address: " << address << " is_direct: " << is_direct; local
62 client_id_, &bda, is_direct, BT_TRANSPORT_LE, PHY_LE_1M_MASK);
low_energy_client.h 81 // |is_direct| is set, use direct connect procedure. Return true on success
83 bool Connect(const std::string& address, bool is_direct);
  /system/bt/btif/src/
btif_gatt_server.cc 297 static void btif_gatts_open_impl(int server_if, BD_ADDR address, bool is_direct,
311 if (!is_direct) BTA_DmBleStartAutoConn();
340 BTA_GATTS_Open(server_if, address, is_direct, transport);
344 bool is_direct, int transport) {
350 base::Owned(address), is_direct, transport));
btif_gatt_client.cc 257 void btif_gattc_open_impl(int client_if, BD_ADDR address, bool is_direct,
271 if (!is_direct) {
313 BTA_GATTC_Open(client_if, address, is_direct, transport, false,
318 bool is_direct, int transport,
325 base::Owned(address), is_direct, transport,
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 145 bool is_direct, int transport);
bt_gatt_client.h 211 bool is_direct, int transport, int initiating_phys);
  /system/bt/bta/include/
bta_gatt_api.h 637 * is_direct: direct connection or background auto connection
642 bool is_direct, tBTA_GATT_TRANSPORT transport,
645 bool is_direct, tBTA_GATT_TRANSPORT transport,
657 * is_direct: direct connection or background auto connection
663 bool is_direct);
    [all...]
  /system/bt/stack/include/
gatt_api.h     [all...]
  /system/bt/service/hal/
fake_bluetooth_gatt_interface.h 40 bool is_direct, int transport) = 0;
fake_bluetooth_gatt_interface.cc 44 bool is_direct, int transport, int phy) {
46 return g_client_handler->Connect(client_if, bd_addr, is_direct, transport);
  /system/update_engine/
libcurl_http_fetcher.cc 164 bool is_direct = (GetCurrentProxy() == kNoProxy); local
165 LOG(INFO) << "Using proxy: " << (is_direct ? "no" : "yes");
166 if (is_direct) {
  /system/bt/stack/gatt/
gatt_api.cc     [all...]
  /system/bt/service/test/
low_energy_client_unittest.cc 275 bool is_direct, int transport) {
  /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 1358 milliseconds

1 2