Home
last modified time | relevance | path

Searched refs:ext_type (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/stack/bnep/
Dbnep_main.cc338 uint8_t type, ctrl_type, ext_type = 0; in bnep_data_ind() local
451 ext_type = *p++; in bnep_data_ind()
453 extension_present = ext_type >> 7; in bnep_data_ind()
454 ext_type &= 0x7F; in bnep_data_ind()
457 if (ext_type != BNEP_EXTENSION_FILTER_CONTROL) break; in bnep_data_ind()
487 ext_type = *p; in bnep_data_ind()
488 extension_present = ext_type >> 7; in bnep_data_ind()
489 ext_type &= 0x7F; in bnep_data_ind()
492 if (ext_type) { in bnep_data_ind()
493 log::debug("Data extension type 0x{:x} found", ext_type); in bnep_data_ind()
[all …]
Dbnep_api.cc255 uint8_t extension_present = true, *p, ext_type; in BNEP_ConnectResp() local
261 ext_type = *p++; in BNEP_ConnectResp()
263 extension_present = ext_type >> 7; in BNEP_ConnectResp()
264 ext_type &= 0x7F; in BNEP_ConnectResp()
267 if (ext_type) break; in BNEP_ConnectResp()