/foundation/communication/bluetooth_service/services/bluetooth/stack/src/avctp/ |
H A D | avctp_ctrl_act.c | 440 uint8_t pktType = AVCT_PKT_TYPE_START; in AvctSendFraMsg() local 453 if (pktType == AVCT_PKT_TYPE_START) { in AvctSendFraMsg() 461 sndPkg = AvctMakeFrgMsgHeadContinueEnd(txMsg.label, pktType, txMsg.cr); in AvctSendFraMsg() 469 if (pktType == AVCT_PKT_TYPE_START) { in AvctSendFraMsg() 481 pktType = AVCT_PKT_TYPE_CONTINUE; in AvctSendFraMsg() 483 pktType = AVCT_PKT_TYPE_END; in AvctSendFraMsg() 512 uint8_t pktType = 0; in AvctMsgAsmbl() local 516 AvctParsePktType(fistByte, &pktType); in AvctMsgAsmbl() 517 LOG_DEBUG("[AVCT] %{public}s:packet type is %hhu", __func__, pktType); in AvctMsgAsmbl() 518 if (pktType in AvctMsgAsmbl() [all...] |
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/clienttransproxymanager_fuzzer/ |
H A D | clienttransproxymanager_fuzzer.cpp | 54 int32_t pktType = *(reinterpret_cast<const int32_t*>(data)); in ClientTransProxyManagerTest() local 64 ClientTransProxyOnDataReceived(channelId, clientData, len, (SessionPktType)pktType); in ClientTransProxyManagerTest()
|
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/avdtp/ |
H A D | avdtp_message.c | 74 uint8_t pktType = AVDT_PKT_TYPE_START; in AvdtSendFragPacket() local 94 if (pktType == AVDT_PKT_TYPE_START) { in AvdtSendFragPacket() 99 Ret = AvdtSendFragContinueEnd(lcid, fragmentPacket, pktType, msgType, label, peerMtu); in AvdtSendFragPacket() 108 pktType = AVDT_PKT_TYPE_CONTINUE; in AvdtSendFragPacket() 110 pktType = AVDT_PKT_TYPE_END; in AvdtSendFragPacket() 153 uint16_t lcid, Packet *fragmentPacket, uint8_t pktType, uint8_t msgType, uint8_t label, uint16_t peerMtu) in AvdtSendFragContinueEnd() 155 LOG_DEBUG("[AVDT]%{public}s: pktType(0x%x) msgType(0x%x) label(0x%x)", __func__, pktType, msgType, label); in AvdtSendFragContinueEnd() 159 AvdtBuildSingleHeader(p, label, pktType, msgType); in AvdtSendFragContinueEnd() 705 void AvdtBuildSingleHeader(uint8_t *data, uint8_t label, uint8_t pktType, uint8_ argument 152 AvdtSendFragContinueEnd( uint16_t lcid, Packet *fragmentPacket, uint8_t pktType, uint8_t msgType, uint8_t label, uint16_t peerMtu) AvdtSendFragContinueEnd() argument 811 uint8_t pktType = AvdtParsePacketType(data); AvdtParseMsg() local 897 AvdtAssembleMsg(AvdtSigCtrl *sigCtrl, uint8_t msgType, uint8_t pktType, Packet *pkt) AvdtAssembleMsg() argument [all...] |
H A D | avdtp_message.h | 125 void AvdtBuildSingleHeader(uint8_t *data, uint8_t label, uint8_t pktType, uint8_t msgType); 140 uint16_t lcid, Packet *fragmentPacket, uint8_t pktType, uint8_t msgType, uint8_t label, uint16_t peerMtu); 168 void AvdtAssembleMsg(AvdtSigCtrl *sigCtrl, uint8_t msgType, uint8_t pktType, Packet *pkt);
|
H A D | avdtp_l2cap.c | 810 uint8_t pktType = (data & 0xF7); in AvdtStreamDataProc() local 825 streamConfig->sinkDataCback(streamCtrl->handle, packet, timeStamp, pktType, streamCtrl->codecIndex); in AvdtStreamDataProc()
|
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/proxy/ |
H A D | client_trans_proxy_manager_test.cpp | 497 SessionPktType pktType = TRANS_SESSION_MESSAGE; in HWTEST_F() local 498 int32_t ret = TransProxyPackAndSendData(channelId, nullptr, len, &info, pktType); in HWTEST_F() 500 ret = TransProxyPackAndSendData(channelId, data, len, nullptr, pktType); in HWTEST_F() 503 static_cast<const void *>(data), len, &info, pktType); in HWTEST_F()
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/include/ |
H A D | client_trans_proxy_manager.h | 90 ProxyChannelInfoDetail* info, SessionPktType pktType);
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/src/ |
H A D | client_trans_proxy_manager.c | 446 int32_t channelId, const void *data, uint32_t len, ProxyChannelInfoDetail *info, SessionPktType pktType); 973 int32_t channelId, const void *data, uint32_t len, ProxyChannelInfoDetail *info, SessionPktType pktType) in TransProxyPackAndSendData() 979 int32_t ret = ClientTransProxyPackBytes(channelId, &dataInfo, info->sequence, info->sessionKey, pktType); in TransProxyPackAndSendData() 997 slicehead->priority = SessionPktTypeToProxyIndex(pktType); in TransProxyPackAndSendData() 1014 int ret = ServerIpcSendMessage(channelId, CHANNEL_TYPE_PROXY, sliceData, dataLen + sizeof(SliceHead), pktType); in TransProxyPackAndSendData() 972 TransProxyPackAndSendData( int32_t channelId, const void *data, uint32_t len, ProxyChannelInfoDetail *info, SessionPktType pktType) TransProxyPackAndSendData() argument
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/ |
H A D | protocol_proto.cpp | 563 uint8_t pktType = NetToHost(phyHeader->packetType); in DisplayPacketInformation() local 564 bool isFragment = ((pktType & PACKET_TYPE_FRAGMENTED) != 0); in DisplayPacketInformation() 565 FrameType frameType = GetFrameType(pktType); in DisplayPacketInformation() 567 LOGW("[Proto][Display] This is unrecognized frame, pktType=%" PRIu8 ".", pktType); in DisplayPacketInformation() 804 LOGW("[Proto][ParsePhy] Unrecognized frame, pktType=%" PRIu32 ".", phyHeader.packetType); in ParseCommPhyHeader()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/ |
H A D | a2dp_profile.cpp | 871 uint8_t pktType = 0; in WriteStream() local 881 int ret = avdtp.WriteStream(handle, pkt, timeStamp, pktType, marker); in WriteStream()
|