Home
last modified time | relevance | path

Searched refs:FrameInfo (Results 1 - 25 of 33) sorted by relevance

12

/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/include/
H A Dframe_retainer.h29 struct FrameInfo { struct
55 void RetainFrame(const FrameInfo &inFrame);
58 std::list<FrameInfo> FetchFramesForSpecificCommunicator(const LabelType &inCommLabel);
/foundation/multimedia/av_codec/test/nativedemo/e2e_demo/
H A Davcodec_e2e_demo_api10.cpp40 typedef struct FrameInfo { struct
43 }FrameInfo; typedef
44 static list<FrameInfo> frameList;
46 static bool FrameCompare(const FrameInfo &f1, const FrameInfo &f2) in FrameCompare()
87 FrameInfo info = {index, pts}; in sortFrame()
91 FrameInfo first = frameList.front(); in sortFrame()
93 FrameInfo second = *(++it); in sortFrame()
108 FrameInfo first = frameList.front(); in OnDecOutputDataAvailable()
/foundation/graphic/graphic_2d/rosen/modules/frame_analyzer/export/
H A Dframe_collector.h59 struct FrameInfo *pbefore_ = nullptr;
60 struct FrameInfo *pafter_ = nullptr;
H A Dframe_info.h127 struct FrameInfo { struct
141 using FrameInfoQueue = RingQueue<struct FrameInfo, frameQueueMaxSize>;
H A Dframe_painter.h47 double SumTimesInMs(const struct FrameInfo &info);
/foundation/distributedhardware/device_manager/test/unittest/mock/
H A Dsession.h124 } FrameInfo; typedef
131 void (*OnStreamReceived)(int sessionId, const StreamData *data, const StreamData *ext, const FrameInfo *param);
160 int SendStream(int sessionId, const StreamData *data, const StreamData *ext, const FrameInfo *param);
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/include/fillp/
H A Dfillp_frame.h36 FILLP_UINT32 txTimestamp; /* tx timestamp of the frame in struct FrameInfo */
53 FILLP_UINT32 txTimestamp; /* tx timestamp of the frame in struct FrameInfo */
90 struct FrameInfo info;
108 struct FillpFrameItem *FillpFrameItemAlloc(FILLP_CONST struct FrameInfo *frame);
111 const struct FrameInfo *info, FILLP_UINT32 sliceSize, FILLP_BOOL firstPkt);
/foundation/graphic/graphic_2d/rosen/modules/frame_analyzer/src/mingw/
H A Dframe_painter.cpp31 double FramePainter::SumHeight(const struct FrameInfo &info) in SumHeight()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/communicator/src/
H A Dframe_retainer.cpp83 void FrameRetainer::RetainFrame(const FrameInfo &inFrame) in RetainFrame()
126 std::list<FrameInfo> FrameRetainer::FetchFramesForSpecificCommunicator(const LabelType &inCommLabel) in FetchFramesForSpecificCommunicator()
129 std::list<FrameInfo> outFrameList; in FetchFramesForSpecificCommunicator()
143 outFrameList.emplace_back(FrameInfo{work.buffer, entry.second, inCommLabel, work.frameId}); in FetchFramesForSpecificCommunicator()
H A Dcommunicator_aggregator.cpp272 std::list<FrameInfo> framesToRedeliver = retainer_.FetchFramesForSpecificCommunicator(commLabel); in ActivateCommunicator()
701 retainer_.RetainFrame(FrameInfo{inFrameBuffer, srcTarget, toLabel, inResult.GetFrameId()}); in OnAppLayerFrameReceive()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/fillp_lib/src/fillp/
H A Dfillp_frame.c48 struct FillpFrameItem *FillpFrameItemAlloc(FILLP_CONST struct FrameInfo *frame) in FillpFrameItemAlloc()
95 struct FrameInfo *info = FILLP_NULL_PTR; in FillpFrameAddItem()
123 const struct FrameInfo *info, FILLP_UINT32 fragSize, FILLP_BOOL firstPkt) in FillpFrameTxInitItem()
165 const struct FrameInfo *info = FILLP_NULL_PTR; in FillpFrameBuildOption()
194 struct FrameInfo info; in FillpFrameParseOption()
/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/
H A Dui_task_scheduler.h112 void StartRecordFrameInfo(FrameInfo* info) in StartRecordFrameInfo()
207 FrameInfo* frameInfo_ = nullptr;
H A Dui_task_scheduler.cpp152 frameInfo_->AddTaskInfo(node->GetTag(), node->GetId(), time, FrameInfo::TaskType::LAYOUT); in FlushLayoutTask()
191 frameInfo_->AddTaskInfo(node->GetTag(), node->GetId(), time, FrameInfo::TaskType::RENDER); in FlushRenderTask()
H A Dpipeline_context.h1051 FrameInfo* GetCurrentFrameInfo(uint64_t recvTime, uint64_t timeStamp);
1225 std::list<FrameInfo> dumpFrameInfos_;
/foundation/graphic/graphic_2d/rosen/test/frame_analyzer/unittest/
H A Dframe_collector_test.cpp229 FrameInfo info = FrameInfo(); in HWTEST_F()
H A Dframe_painter_test.cpp152 FrameInfo info; in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/base/log/
H A Dframe_info.h41 struct FrameInfo { struct
/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/src/
H A Dsocket_app.c161 #define FRAME_CMSG_LEN CMSG_SPACE(sizeof(struct FrameInfo))
162 static void SockSendFrameInitCmsg(struct msghdr *m, FILLP_CONST struct FrameInfo *frame) in SockSendFrameInitCmsg()
167 f->cmsg_len = CMSG_LEN(sizeof(struct FrameInfo)); in SockSendFrameInitCmsg()
168 (void)memcpy_s((FILLP_UINT8 *)CMSG_DATA(f), sizeof(struct FrameInfo), frame, sizeof(struct FrameInfo)); in SockSendFrameInitCmsg()
172 FILLP_CONST struct FrameInfo *frame) in SockSendSetFrameInfo()
184 static FILLP_CONST struct FrameInfo *SockSendGetFrameInfo(struct msghdr *m) in SockSendGetFrameInfo()
195 cmsg->cmsg_len == CMSG_LEN(sizeof(struct FrameInfo))) { in SockSendGetFrameInfo()
196 return (FILLP_CONST struct FrameInfo *)CMSG_DATA(cmsg); in SockSendGetFrameInfo()
203 static void SockSendSetFrameInfo(struct msghdr *m, FILLP_CONST struct FrameInfo *fram
[all...]
/foundation/arkui/ace_engine/frameworks/core/image/
H A Danimated_image_player.h113 std::vector<SkCodec::FrameInfo> frameInfos_;
/foundation/graphic/graphic_2d/rosen/modules/frame_analyzer/src/
H A Dframe_collector.cpp115 pbefore_ = &frameQueue_.Push(FrameInfo()); in ProcessFrameEvent()
H A Dframe_painter.cpp148 double FramePainter::SumTimesInMs(const struct FrameInfo &info) in SumTimesInMs()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/app_lib/include/
H A Dsocket_app.h44 FILLP_CONST struct FrameInfo *frame);
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Danimated_image.cpp252 SkCodec::FrameInfo info {}; in DecodeImpl()
/foundation/communication/dsoftbus/components/nstackx/fillp/include/
H A Dfillpinc.h95 FILLP_CONST struct FrameInfo *frame);
H A Dfillptypes.h567 struct FrameInfo { struct

Completed in 23 milliseconds

12