HomeSort by relevance Sort by last modified time
    Searched full:max_stack_depth (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.h 59 // 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);
memory_region_map.cc 185 void MemoryRegionMap::Init(int max_stack_depth) {
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);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.h 60 // 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);
memory_region_map.cc 193 void MemoryRegionMap::Init(int max_stack_depth, bool use_buckets) {
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);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/xray/
xray.c 84 uint32_t max_stack_depth; member in struct:XRayTraceCapture
330 if (depth < capture->max_stack_depth) {
356 if (capture->stack_depth < capture->max_stack_depth) {
508 capture->max_stack_depth = stack_depth;
  /dalvik/tools/dmtracedump/
TraceDump.c 43 #define MAX_STACK_DEPTH 10000
202 StackEntry calls[MAX_STACK_DEPTH];
1174 char spaces[MAX_STACK_DEPTH+1];
1183 memset(spaces, '.', MAX_STACK_DEPTH);
1184 spaces[MAX_STACK_DEPTH] = '\0';
    [all...]

Completed in 181 milliseconds