Home
last modified time | relevance | path

Searched refs:RandomWriteCtx (Results 1 – 4 of 4) sorted by relevance

/developtools/profiler/interfaces/kits/
Dplugin_module_api.h60 struct RandomWriteCtx;
70 typedef bool (*GetMemoryFunc)(RandomWriteCtx* ctx, uint32_t size, uint8_t** memory, uint32_t* offse…
78 typedef bool (*SeekFunc)(RandomWriteCtx* ctx, uint32_t offset);
83 struct RandomWriteCtx { struct
103 typedef int32_t (*PluginReportResultOptimizeCallback)(RandomWriteCtx* randomWrite); argument
146 typedef RandomWriteCtx* (*StartReportFuncPtr)(WriterStruct* writer);
/developtools/profiler/proto_encoder/include/
Dbase_message.h58 explicit BaseMessage(RandomWriteCtx* writeCtx, MessagePool* messagePool = nullptr)
70 void Reset(RandomWriteCtx* writeCtx = nullptr, MessagePool* messagePool = nullptr)
237 RandomWriteCtx* StartAddBytes(uint32_t fieldId);
243 using GetDataCallback = std::function<int32_t(RandomWriteCtx* randomWriteCtx)>;
370 RandomWriteCtx* writeCtx_ = nullptr;
/developtools/profiler/proto_encoder/test/unittest/
Dbase_message_unittest.cpp33 bool GetMemory(RandomWriteCtx* ctx, uint32_t size, uint8_t** memory, uint32_t* offset) in GetMemory()
44 bool Seek(RandomWriteCtx* ctx, uint32_t offset) in Seek()
54 static RandomWriteCtx g_writeCtx = {GetMemory, Seek};
965 [](RandomWriteCtx* ctx) -> int32_t { in __anon697c60380102()
988 [](RandomWriteCtx* ctx) -> int32_t { in __anon697c60380202()
1020 RandomWriteCtx* writeCtx = msgOpt.startAdd_len_bytes();
1265 [](RandomWriteCtx* randomWriteCtx) -> int32_t { in __anon697c60380302()
1312 [](RandomWriteCtx* randomWriteCtx) -> int32_t { in __anon697c60380402()
1332 RandomWriteCtx writeCtx = {
1333 [](RandomWriteCtx*, uint32_t, uint8_t**, uint32_t*) -> bool { return false; }, in __anon697c60380502()
[all …]
/developtools/profiler/proto_encoder/src/
Dbase_message.cpp109 RandomWriteCtx* BaseMessage::StartAddBytes(uint32_t fieldId) in StartAddBytes()