/ohos5.0/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() 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 == AVCT_PKT_TYPE_SINGLE) { in AvctMsgAsmbl() 520 } else if (pktType == AVCT_PKT_TYPE_START) { in AvctMsgAsmbl() [all …]
|
/ohos5.0/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() 108 pktType = AVDT_PKT_TYPE_CONTINUE; in AvdtSendFragPacket() 110 pktType = AVDT_PKT_TYPE_END; in AvdtSendFragPacket() 159 AvdtBuildSingleHeader(p, label, pktType, msgType); in AvdtSendFragContinueEnd() 811 uint8_t pktType = AvdtParsePacketType(data); in AvdtParseMsg() local 814 __func__, messageType, transLabel, pktType); in AvdtParseMsg() 815 if (pktType == AVDT_PKT_TYPE_SINGLE) { in AvdtParseMsg() 818 if (pktType == AVDT_PKT_TYPE_START) { in AvdtParseMsg() 907 pktType); in AvdtAssembleMsg() [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 p… 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()
|
/ohos5.0/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()
|
/ohos5.0/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/proxy/ |
H A D | client_trans_proxy_manager_test.cpp | 497 SessionPktType pktType = TRANS_SESSION_MESSAGE; variable 498 int32_t ret = TransProxyPackAndSendData(channelId, nullptr, len, &info, pktType); 500 ret = TransProxyPackAndSendData(channelId, data, len, nullptr, pktType); 503 static_cast<const void *>(data), len, &info, pktType);
|
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/include/ |
H A D | client_trans_proxy_manager.h | 90 ProxyChannelInfoDetail* info, SessionPktType pktType);
|
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/src/ |
H A D | client_trans_proxy_manager.c | 446 …t channelId, const void *data, uint32_t len, ProxyChannelInfoDetail *info, SessionPktType pktType); 971 …_t channelId, const void *data, uint32_t len, ProxyChannelInfoDetail *info, SessionPktType pktType) in TransProxyPackAndSendData() argument 977 …t ret = ClientTransProxyPackBytes(channelId, &dataInfo, info->sequence, info->sessionKey, pktType); in TransProxyPackAndSendData() 995 slicehead->priority = SessionPktTypeToProxyIndex(pktType); in TransProxyPackAndSendData() 1012 …rverIpcSendMessage(channelId, CHANNEL_TYPE_PROXY, sliceData, dataLen + sizeof(SliceHead), pktType); in TransProxyPackAndSendData()
|
/ohos5.0/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()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/ |
H A D | a2dp_profile.cpp | 869 uint8_t pktType = 0; in WriteStream() local 879 int ret = avdtp.WriteStream(handle, pkt, timeStamp, pktType, marker); in WriteStream()
|