HomeSort by relevance Sort by last modified time
    Searched refs:madvise (Results 126 - 137 of 137) sorted by null

1 2 3 4 56

  /external/chromium_org/components/nacl/loader/nonsfi/
nonsfi_sandbox_unittest.cc 493 RESTRICT_SYSCALL_EPERM_TEST(madvise);
  /frameworks/native/libs/binder/
MemoryDealer.cpp 212 int err = madvise(start_ptr, size, MADV_REMOVE);
213 ALOGW_IF(err, "madvise(%p, %zu, MADV_REMOVE) returned %s",
219 // This should be done after madvise(MADV_REMOVE), otherwise madvise()
  /art/runtime/gc/space/
large_object_space.cc 390 madvise(obj, allocation_size, MADV_DONTNEED);
  /art/runtime/
mem_map.cc 570 int result = madvise(base_begin_, base_size_, MADV_DONTNEED);
572 PLOG(WARNING) << "madvise failed";
thread.cc 253 // We then madvise this away.
283 // NB. madvise will probably write zeroes into the memory (on linux it does).
285 madvise(pregion, unwanted_size, MADV_DONTNEED);
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/bench/
numa.c 334 ret = madvise(buf, bytes, MADV_HUGEPAGE);
337 printf("WARNING: Could not enable THP - do: 'echo madvise > /sys/kernel/mm/transparent_hugepage/enabled'\n");
341 ret = madvise(buf, bytes, MADV_NOHUGEPAGE);
    [all...]
  /external/qemu/
kvm-all.c 901 int ret = madvise(start, size, MADV_DONTFORK);
  /art/runtime/gc/allocator/
rosalloc.cc 137 // Don't need to call madvise on remainder here.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.cpp 151 madvise(m_base, m_size, MADV_NORMAL);
167 madvise(m_base, m_size, MADV_DONTNEED);
    [all...]
  /libcore/luni/src/main/native/
libcore_icu_ICU.cpp     [all...]
  /external/valgrind/main/memcheck/tests/x86-linux/
scalar.stderr.exp     [all...]
  /art/runtime/gc/
heap.cc     [all...]

Completed in 621 milliseconds

1 2 3 4 56