HomeSort by relevance Sort by last modified time
    Searched refs:pss_bytes (Results 1 - 3 of 3) sorted by null

  /system/extras/memory_replay/
NativeInfo.h 21 void GetNativeInfo(int smaps_fd, size_t* pss_bytes, size_t* va_bytes);
NativeInfo.cpp 33 void GetNativeInfo(int smaps_fd, size_t* pss_bytes, size_t* va_bytes) {
59 *pss_bytes = total_pss_bytes;
64 size_t pss_bytes; local
72 GetNativeInfo(smaps_fd, &pss_bytes, &va_bytes);
73 printf("%sNative PSS: %zu bytes %0.2fMB\n", preamble, pss_bytes, pss_bytes/(1024*1024.0));
  /system/extras/memory_replay/tests/
NativeInfoTest.cpp 62 size_t pss_bytes = 1; local
64 GetNativeInfo(tmp_file_->fd, &pss_bytes, &va_bytes);
65 ASSERT_EQ(0U, pss_bytes);
123 size_t pss_bytes = 1; local
125 GetNativeInfo(tmp_file_->fd, &pss_bytes, &va_bytes);
126 ASSERT_EQ(32768U, pss_bytes);
184 size_t pss_bytes = 1; local
186 GetNativeInfo(tmp_file_->fd, &pss_bytes, &va_bytes);
187 ASSERT_EQ(45056U, pss_bytes);
261 size_t pss_bytes = 1 local
    [all...]

Completed in 1006 milliseconds