Home
last modified time | relevance | path

Searched refs:info_type (Results 1 – 7 of 7) sorted by relevance

/system/bt/stack/l2cap/
Dl2c_main.cc785 uint16_t info_type; in process_l2cap_cmd() local
790 STREAM_TO_UINT16(info_type, p); in process_l2cap_cmd()
791 l2cu_send_peer_info_rsp(p_lcb, id, info_type); in process_l2cap_cmd()
802 uint16_t info_type, result; in process_l2cap_cmd() local
807 STREAM_TO_UINT16(info_type, p); in process_l2cap_cmd()
810 if ((info_type == L2CAP_EXTENDED_FEATURES_INFO_TYPE) && in process_l2cap_cmd()
826 if (info_type == L2CAP_FIXED_CHANNELS_INFO_TYPE) { in process_l2cap_cmd()
Dl2c_utils.cc1013 void l2cu_send_peer_info_req(tL2C_LCB* p_lcb, uint16_t info_type) { in l2cu_send_peer_info_req() argument
1027 L2CAP_TRACE_EVENT("l2cu_send_peer_info_req: type 0x%04x", info_type); in l2cu_send_peer_info_req()
1032 UINT16_TO_STREAM(p, info_type); in l2cu_send_peer_info_req()
1052 uint16_t info_type) { in l2cu_send_peer_info_rsp() argument
1058 if ((info_type == L2CAP_EXTENDED_FEATURES_INFO_TYPE) && in l2cu_send_peer_info_rsp()
1065 if ((info_type == L2CAP_EXTENDED_FEATURES_INFO_TYPE) && in l2cu_send_peer_info_rsp()
1073 } else if (info_type == L2CAP_FIXED_CHANNELS_INFO_TYPE) { in l2cu_send_peer_info_rsp()
1075 } else if (info_type == L2CAP_CONNLESS_MTU_INFO_TYPE) { in l2cu_send_peer_info_rsp()
1088 UINT16_TO_STREAM(p, info_type); in l2cu_send_peer_info_rsp()
1091 if ((info_type == L2CAP_EXTENDED_FEATURES_INFO_TYPE) && in l2cu_send_peer_info_rsp()
[all …]
Dl2c_int.h709 uint16_t info_type);
712 extern void l2cu_send_peer_info_req(tL2C_LCB* p_lcb, uint16_t info_type);
/system/bt/gd/l2cap/
Dl2cap_packets.pdl435 info_type : InformationRequestInfoType,
444 info_type : InformationRequestInfoType,
449 packet InformationResponseConnectionlessMtu : InformationResponse (info_type = CONNECTIONLESS_MTU) {
453 packet InformationResponseExtendedFeatures : InformationResponse (info_type = EXTENDED_FEATURES_SUP…
469 packet InformationResponseFixedChannels : InformationResponse (info_type = FIXED_CHANNELS_SUPPORTED…
/system/bt/gd/cert/
Dmatchers.py392 def InformationRequestWithType(info_type): argument
393 return lambda packet: L2capMatchers._information_request_with_type(packet, info_type)
640 def _information_request_with_type(packet, info_type): argument
645 if request.GetInfoType() != info_type:
650 def _information_response_with_type(packet, info_type): argument
655 if response.GetInfoType() != info_type:
/system/bt/test/mock/
Dmock_stack_l2cap_utils.cc265 void l2cu_send_peer_info_req(tL2C_LCB* p_lcb, uint16_t info_type) { in l2cu_send_peer_info_req() argument
269 uint16_t info_type) { in l2cu_send_peer_info_rsp() argument
/system/bt/gd/l2cap/classic/internal/
Dsignalling_manager.cc934 auto info_type = command_just_sent_.info_type_; in handle_send_next_command() local
960 auto builder = InformationRequestBuilder::Create(signal_id.Value(), info_type); in handle_send_next_command()