Searched refs:max_stack_depth (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmemory_region_map.cc185 void MemoryRegionMap::Init(int max_stack_depth) { argument
187 RAW_CHECK(max_stack_depth >= 0, "");
189 RAW_CHECK(max_stack_depth <= kMaxStackDepth,
193 max_stack_depth_ = max(max_stack_depth_, max_stack_depth);
H A Dmemory_region_map.h59 // a user-supplied max_stack_depth parameter of Init().
86 // Stack traces that have more than "max_stack_depth" frames
87 // are automatically shrunk to "max_stack_depth" when they are recorded.
88 // Init() can be called more than once w/o harm, largest max_stack_depth
94 static void Init(int max_stack_depth);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmemory_region_map.cc193 void MemoryRegionMap::Init(int max_stack_depth, bool use_buckets) { argument
195 RAW_CHECK(max_stack_depth >= 0, "");
197 RAW_CHECK(max_stack_depth <= kMaxStackDepth,
201 max_stack_depth_ = max(max_stack_depth_, max_stack_depth);
H A Dmemory_region_map.h60 // a user-supplied max_stack_depth parameter of Init().
91 // Stack traces that have more than "max_stack_depth" frames
92 // are automatically shrunk to "max_stack_depth" when they are recorded.
93 // Init() can be called more than once w/o harm, largest max_stack_depth
102 static void Init(int max_stack_depth, bool use_buckets);
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dxray.c84 uint32_t max_stack_depth; member in struct:XRayTraceCapture
336 if (depth < capture->max_stack_depth) {
362 if (capture->stack_depth < capture->max_stack_depth) {
514 capture->max_stack_depth = stack_depth;

Completed in 317 milliseconds