Home
last modified time | relevance | path

Searched refs:CurWordSize (Results 1 – 8 of 8) sorted by relevance

/developtools/profiler/device/plugins/memory_plugin/test/unittest/
Dbuffer_splitter_unittest.cpp57 EXPECT_EQ((size_t)0, totalbuffer.CurWordSize());
73 EXPECT_EQ((size_t)0, totalbuffer.CurWordSize());
89 EXPECT_EQ((size_t)0, totalbuffer.CurWordSize());
105 EXPECT_EQ((size_t)0, totalbuffer.CurWordSize());
123 EXPECT_EQ(expect.curWordSz, totalbuffer.CurWordSize());
141 EXPECT_EQ(expect.curWordSz, totalbuffer.CurWordSize());
159 EXPECT_EQ(expect.curWordSz, totalbuffer.CurWordSize());
183 EXPECT_EQ(expect[i].curWordSz, totalbuffer.CurWordSize());
204 EXPECT_EQ(expect.curWordSz, totalbuffer.CurWordSize());
225 EXPECT_EQ(expect[i].curWordSz, totalbuffer.CurWordSize());
[all …]
/developtools/profiler/device/plugins/diskio_plugin/src/
Ddiskio_data_plugin.cpp149 std::string curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in SetDiskioData()
155 curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in SetDiskioData()
162 curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in SetDiskioData()
/developtools/profiler/device/plugins/memory_plugin/include/
Dbuffer_splitter.h47 size_t CurWordSize() const in CurWordSize() function
/developtools/profiler/device/plugins/process_plugin/src/
Dprocess_data_plugin.cpp191 if (BufnCmp(totalbuffer.CurWord(), totalbuffer.CurWordSize(), "Name", strlen("Name"))) { in WriteProcess()
196 processinfo->set_name(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in WriteProcess()
197 … } else if (BufnCmp(totalbuffer.CurWord(), totalbuffer.CurWordSize(), "Pid", strlen("Pid"))) { in WriteProcess()
208 … } else if (BufnCmp(totalbuffer.CurWord(), totalbuffer.CurWordSize(), "PPid", strlen("PPid"))) { in WriteProcess()
219 … } else if (BufnCmp(totalbuffer.CurWord(), totalbuffer.CurWordSize(), "Uid", strlen("Uid"))) { in WriteProcess()
224 std::string curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in WriteProcess()
/developtools/profiler/device/plugins/cpu_plugin/src/
Dcpu_data_plugin.cpp251 std::string curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in WriteProcessCpuUsage()
395 std::string curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in WriteSystemCpuUsage()
566 … std::string curWord = std::string(totalbuffer.CurWord() + 1, totalbuffer.CurWordSize() - 1); in WriteThread()
569 std::string curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in WriteThread()
573 std::string curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in WriteThread()
/developtools/profiler/device/plugins/memory_plugin/src/
Dmemory_data_plugin.cpp191 const_cast<char *>(totalbuffer.CurWord())[totalbuffer.CurWordSize()] = '\0'; in WriteMeminfo()
250 const_cast<char *>(totalbuffer.CurWord())[totalbuffer.CurWordSize()] = '\0'; in WriteVmstat()
257 char* valuestr = const_cast<char *>(totalbuffer.CurWord() + totalbuffer.CurWordSize() + 1); in WriteVmstat()
694 int key = GetProcStatusId(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in WriteProcess()
700 processinfo->set_name(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in WriteProcess()
/developtools/profiler/device/plugins/network_plugin/src/
Dnetwork_plugin.cpp229 … strncpy_s(tmp, sizeof(tmp), totalbuffer.CurWord(), totalbuffer.CurWordSize()) == EOK) { in ReadTxRxBytes()
297 … strncpy_s(tmp, sizeof(tmp), totalbuffer.CurWord(), totalbuffer.CurWordSize()) == EOK) { in ReadSystemTxRxBytes()
/developtools/profiler/device/plugins/native_hook/test/unittest/
Dcheck_hook_data_test.cpp368 std::string curWord = std::string(totalbuffer.CurWord(), totalbuffer.CurWordSize()); in Getdata()