Home
last modified time | relevance | path

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

/system/bt/stack/bnep/
Dbnep_main.cc329 uint8_t type, ctrl_type, ext_type = 0; in bnep_data_ind() local
447 ext_type = *p++; in bnep_data_ind()
449 extension_present = ext_type >> 7; in bnep_data_ind()
450 ext_type &= 0x7F; in bnep_data_ind()
453 if (ext_type != BNEP_EXTENSION_FILTER_CONTROL) break; in bnep_data_ind()
484 ext_type = *p; in bnep_data_ind()
485 extension_present = ext_type >> 7; in bnep_data_ind()
486 ext_type &= 0x7F; in bnep_data_ind()
489 if (ext_type) { in bnep_data_ind()
490 BNEP_TRACE_EVENT("Data extension type 0x%x found", ext_type); in bnep_data_ind()
[all …]
Dbnep_api.cc252 uint8_t extension_present = true, *p, ext_type; in BNEP_ConnectResp() local
258 ext_type = *p++; in BNEP_ConnectResp()
259 extension_present = ext_type >> 7; in BNEP_ConnectResp()
260 ext_type &= 0x7F; in BNEP_ConnectResp()
263 if (ext_type) break; in BNEP_ConnectResp()