Home
last modified time | relevance | path

Searched refs:pktType (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/stack/src/avctp/
H A Davctp_ctrl_act.c440 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 Davdtp_message.c74 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 Davdtp_message.h125 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 Davdtp_l2cap.c810 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 Dclienttransproxymanager_fuzzer.cpp54 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 Dclient_trans_proxy_manager_test.cpp497 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 Dclient_trans_proxy_manager.h90 ProxyChannelInfoDetail* info, SessionPktType pktType);
/ohos5.0/foundation/communication/dsoftbus/sdk/transmission/trans_channel/proxy/src/
H A Dclient_trans_proxy_manager.c446 …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 Dprotocol_proto.cpp563 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 Da2dp_profile.cpp869 uint8_t pktType = 0; in WriteStream() local
879 int ret = avdtp.WriteStream(handle, pkt, timeStamp, pktType, marker); in WriteStream()