Searched defs:addr_type (Results 1 - 18 of 18) sorted by relevance

/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_util.c303 BOOLEAN btif_get_device_type(BD_ADDR bd_addr, int *addr_type, int *device_type) argument
305 if (device_type == NULL || addr_type == NULL)
317 if (!btif_config_get_int("Remote", bd_addr_str, "AddrType", addr_type))
320 ALOGD("%s: Device [%s] type %d, addr. type %d", __FUNCTION__, bd_addr_str, *device_type, *addr_type);
H A Dbtif_gatt_server.c370 int addr_type = 0; local
373 if (btif_get_device_type(p_cb->bd_addr.address, &addr_type, &device_type) == TRUE
375 BTA_DmAddBleDevice(p_cb->bd_addr.address, addr_type, device_type);
H A Dbtif_gatt_client.c130 uint8_t addr_type; member in struct:__anon980
145 uint8_t addr_type; member in struct:__anon982
246 static void btif_gattc_add_remote_bdaddr (BD_ADDR p_bda, uint8_t addr_type) argument
255 p_dev_cb->addr_type = addr_type;
266 p_dev_cb->addr_type = addr_type;
315 btif_storage_set_remote_addr_type( &p_btif_cb->bd_addr, p_btif_cb->addr_type);
478 if ((p_btif_cb->addr_type != BLE_ADDR_RANDOM) || (p_eir_remote_name))
485 btif_gattc_add_remote_bdaddr(p_btif_cb->bd_addr.address, p_btif_cb->addr_type);
623 int addr_type = 0; local
[all...]
H A Dbtif_dm.c514 int addr_type; local
518 (btif_storage_get_remote_addr_type(bd_addr, &addr_type) == BT_STATUS_SUCCESS) &&
521 BTA_DmAddBleDevice(bd_addr->address, addr_type, BT_DEVICE_TYPE_BLE);
1004 UINT8 addr_type; local
1031 addr_type = p_search_data->inq_res.ble_addr_type;
1047 status = btif_storage_set_remote_addr_type(&bdaddr, addr_type);
H A Dbtif_storage.c181 int *addr_type);
1163 int addr_type; local
1178 if (btif_storage_get_remote_addr_type(&bd_addr, &addr_type) != BT_STATUS_SUCCESS)
1193 BTA_DmAddBleDevice(bta_bd_addr, addr_type, BT_DEVICE_TYPE_BLE);
1222 BTA_DmAddBleDevice(bta_bd_addr, addr_type, BT_DEVICE_TYPE_BLE);
1245 BTA_DmAddBleDevice(bta_bd_addr, addr_type, BT_DEVICE_TYPE_BLE);
1271 BTA_DmAddBleDevice(bta_bd_addr, addr_type, BT_DEVICE_TYPE_BLE);
1293 BTA_DmAddBleDevice(bta_bd_addr, addr_type, BT_DEVICE_TYPE_BLE);
1318 UINT8 addr_type)
1322 int ret = btif_config_set_int("Remote", bdstr, "AddrType", (int)addr_type);
1317 btif_storage_set_remote_addr_type(bt_bdaddr_t *remote_bd_addr, UINT8 addr_type) argument
[all...]
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble_bgconn.c72 tBLE_ADDR_TYPE addr_type = BLE_ADDR_PUBLIC; local
108 BTM_ReadDevInfo(bd_addr, &dev_type, &addr_type);
111 started = btsnd_hcic_ble_add_white_list (addr_type, bd_addr);
113 started = btsnd_hcic_ble_remove_from_white_list (addr_type, bd_addr);
H A Dbtm_ble_gap.c51 static void btm_ble_process_adv_pkt_cont(BD_ADDR bda, UINT8 addr_type, UINT8 evt_type, UINT8 *p);
1532 BOOLEAN btm_ble_update_inq_result(tINQ_DB_ENT *p_i, UINT8 addr_type, UINT8 evt_type, UINT8 *p) argument
1557 p_cur->ble_addr_type = addr_type;
1620 void btm_send_sel_conn_callback(BD_ADDR remote_bda, UINT8 evt_type, UINT8 *p_data, UINT8 addr_type) argument
1668 UINT8 addr_type = 0; local
1675 STREAM_TO_UINT8 (addr_type, p);
1682 (*btm_cb.ble_ctr_cb.p_scan_req_cback)(bda, addr_type, evt_type);
1697 btm_ble_process_adv_pkt_cont(bda, addr_type, evt_type, p);
1712 static void btm_ble_process_adv_pkt_cont(BD_ADDR bda, UINT8 addr_type, UINT8 evt_type, UINT8 *p) argument
1721 BTM_TRACE_DEBUG2("btm_ble_process_adv_pkt_cont: addr_type
[all...]
H A Dbtm_ble.c58 ** addr_type - LE device address type.
64 tBLE_ADDR_TYPE addr_type)
121 p_dev_rec->ble.ble_addr_type = addr_type;
122 BTM_TRACE_DEBUG3 ("p_dev_rec->device_type =0x%x addr_type=0x%x sec_flags=0x%x",
123 dev_type, addr_type, p_dev_rec->sec_flags);
131 BTM_TRACE_DEBUG2 ("InqDb device_type =0x%x addr_type=0x%x",
617 BTM_TRACE_DEBUG2 ("btm_find_dev_type - device_type = %d addr_type = %d", *p_dev_type , *p_addr_type);
739 tBLE_ADDR_TYPE addr_type; local
750 BTM_ReadDevInfo(bd_addr, &dev_type, &addr_type);
939 p_rec->ble.static_addr_type = p_keys->pid_key.addr_type;
63 BTM_SecAddBleDevice(BD_ADDR bd_addr, BD_NAME bd_name, tBT_DEVICE_TYPE dev_type, tBLE_ADDR_TYPE addr_type) argument
1505 btm_ble_connected(UINT8 *bda, UINT16 handle, UINT8 enc_mode, UINT8 role, tBLE_ADDR_TYPE addr_type, BOOLEAN addr_matched) argument
[all...]
/external/ppp/pppd/
H A Dcbcp.c310 u_char type, opt_len, delay, addr_type; local
337 GETCHAR(addr_type, pckt);
451 u_char type, delay, addr_type; local
464 GETCHAR(addr_type, pckt);
/external/bluetooth/bluedroid/stack/smp/
H A Dsmp_keys.c448 tBLE_ADDR_TYPE addr_type = 0; local
453 if (!BTM_ReadRemoteConnectionAddr(p_cb->pairing_bda, remote_bda, &addr_type))
459 BTM_ReadConnectionAddr( p_cb->pairing_bda, p_cb->local_bda, &p_cb->addr_type);
464 UINT8_TO_STREAM(p, p_cb->addr_type);
466 UINT8_TO_STREAM(p, addr_type);
475 UINT8_TO_STREAM(p, addr_type);
477 UINT8_TO_STREAM(p, p_cb->addr_type);
502 tBLE_ADDR_TYPE addr_type = 0; local
504 if (!BTM_ReadRemoteConnectionAddr(p_cb->pairing_bda, remote_bda, &addr_type))
H A Dsmp_int.h201 UINT8 addr_type; member in struct:__anon1580
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
H A Dhandlers.c769 const char* addr_type; local
790 addr_type = info->h_addrtype == AF_INET ? "AF_INET" : "AF_INET6";
793 + strlen(info->h_name) + 1 + strlen(addr_type);
813 info->h_name, addr_type);
/external/bluetooth/bluedroid/stack/hcic/
H A Dhciblecmds.c455 BOOLEAN btsnd_hcic_ble_add_white_list (UINT8 addr_type, BD_ADDR bda) argument
471 UINT8_TO_STREAM (pp, addr_type);
478 BOOLEAN btsnd_hcic_ble_remove_from_white_list (UINT8 addr_type, BD_ADDR bda) argument
494 UINT8_TO_STREAM (pp, addr_type);
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp56 ELFT>::value_type addr_type; typedef in class:__anon22196::DyldELFObject
135 shdr->sh_addr = static_cast<addr_type>(Addr);
147 sym->st_value = static_cast<addr_type>(Addr);
/external/bluetooth/bluedroid/bta/dm/
H A Dbta_dm_api.c1285 ** addr_type - LE device address type.
1290 void BTA_DmAddBleDevice(BD_ADDR bd_addr, tBLE_ADDR_TYPE addr_type, tBT_DEVICE_TYPE dev_type) argument
1301 p_msg->addr_type = addr_type;
H A Dbta_dm_int.h447 tBLE_ADDR_TYPE addr_type; member in struct:__anon499
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_utils.c2116 tBLE_ADDR_TYPE addr_type; local
2118 BTM_ReadDevInfo(p_lcb->remote_bd_addr, &dev_type, &addr_type);
2125 p_lcb->ble_addr_type = addr_type;
/external/bluetooth/bluedroid/stack/include/
H A Dbtm_api.h1671 tBLE_ADDR_TYPE addr_type; member in struct:__anon1324

Completed in 518 milliseconds