Searched refs:readsize (Results 1 - 3 of 3) sorted by relevance
/developtools/profiler/device/plugins/memory_plugin/test/unittest/ |
H A D | buffer_splitter_unittest.cpp | 49 int readsize = 0; in HWTEST_F() local 50 BufferSplitter totalbuffer(text, readsize); in HWTEST_F() 65 int readsize = sizeof(text); in HWTEST_F() local 66 BufferSplitter totalbuffer(text, readsize); in HWTEST_F() 81 int readsize = sizeof(text); in HWTEST_F() local 82 BufferSplitter totalbuffer(text, readsize); in HWTEST_F() 97 int readsize = sizeof(text); in HWTEST_F() local 98 BufferSplitter totalbuffer(text, readsize); in HWTEST_F() 113 int readsize = sizeof(text); in HWTEST_F() local 114 BufferSplitter totalbuffer(text, readsize); in HWTEST_F() 132 int readsize = sizeof(text); HWTEST_F() local 150 int readsize = sizeof(text); HWTEST_F() local 172 int readsize = sizeof(text); HWTEST_F() local 194 int readsize = sizeof(text); HWTEST_F() local 213 int readsize = sizeof(text); HWTEST_F() local 235 int readsize = sizeof(text); HWTEST_F() local 254 int readsize = sizeof(text); HWTEST_F() local 274 int readsize = sizeof(text); HWTEST_F() local 298 int readsize = sizeof(text); HWTEST_F() local 327 int readsize = sizeof(text); HWTEST_F() local 410 int readsize = sizeof(g_kMockMeminfo); HWTEST_F() local [all...] |
/developtools/profiler/hiebpf/src/ |
H A D | elf_file.cpp | 82 size_t readsize = ReadFile(ehdrBuf, ehdr64Size); in ParseElfHeader() local 83 CHECK_TRUE(readsize >= ehdr64Size, false, in ParseElfHeader() 84 "file size not enough, try read %zu, only have %zu", ehdr64Size, readsize); in ParseElfHeader() 85 ehdr_ = ElfHeader::MakeUnique(ehdrBuf, readsize); in ParseElfHeader()
|
/developtools/profiler/device/plugins/memory_plugin/src/ |
H A D | memory_data_plugin.cpp | 208 int readsize = ReadFile(meminfoFd_); in WriteMeminfo() local 209 if (readsize == RET_FAIL) { in WriteMeminfo() 212 BufferSplitter totalbuffer((const char*)buffer_.get(), readsize); in WriteMeminfo() 267 int readsize = ReadFile(vmstatFd_); in WriteVmstat() local 268 if (readsize == RET_FAIL) { in WriteVmstat() 271 BufferSplitter totalbuffer((const char*)buffer_.get(), readsize); in WriteVmstat() 436 int readsize = pread(fd, buffer_.get(), READ_BUFFER_SIZE - 1, 0); in ReadFile() local 437 if (readsize <= 0) { in ReadFile() 445 return readsize; in ReadFile()
|
Completed in 8 milliseconds