Searched refs:evt_type (Results 1 – 2 of 2) sorted by relevance
280 void btm_ble_process_adv_pkt_cont(uint16_t evt_type, tBLE_ADDR_TYPE addr_type,303 static bool ble_evt_type_is_connectable(uint16_t evt_type) { in ble_evt_type_is_connectable() argument304 return evt_type & (1 << BLE_EVT_CONNECTABLE_BIT); in ble_evt_type_is_connectable()307 static bool ble_evt_type_is_scannable(uint16_t evt_type) { in ble_evt_type_is_scannable() argument308 return evt_type & (1 << BLE_EVT_SCANNABLE_BIT); in ble_evt_type_is_scannable()311 static bool ble_evt_type_is_directed(uint16_t evt_type) { in ble_evt_type_is_directed() argument312 return evt_type & (1 << BLE_EVT_DIRECTED_BIT); in ble_evt_type_is_directed()315 static bool ble_evt_type_is_scan_resp(uint16_t evt_type) { in ble_evt_type_is_scan_resp() argument316 return evt_type & (1 << BLE_EVT_SCAN_RESPONSE_BIT); in ble_evt_type_is_scan_resp()319 static bool ble_evt_type_is_legacy(uint16_t evt_type) { in ble_evt_type_is_legacy() argument[all …]
95 uint8_t evt_type; member