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

  /system/extras/memory_replay/
main.cpp 69 void ProcessDump(int fd, size_t max_allocs, size_t max_threads) {
71 Pointers pointers(max_allocs);
75 printf("Maximum allocations in dump: %zu\n", max_allocs);
185 size_t max_allocs = GetMaxAllocs(dump_fd); local
186 ProcessDump(dump_fd, max_allocs, max_threads);
Pointers.h 30 explicit Pointers(size_t max_allocs);
Pointers.cpp 29 Pointers::Pointers(size_t max_allocs) {
33 pointers_size_ = (max_allocs * 4 * sizeof(pointer_data) + pagesize - 1) & ~(pagesize - 1);
38 err(1, "Unable to allocate data for pointer hash: %zu total_allocs\n", max_allocs);

Completed in 201 milliseconds