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

  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 192 int max_stack_len,
212 if (max_stack_len >= 0 &&
213 stack_len > static_cast<unsigned int>(max_stack_len)) {
214 stack_len = max_stack_len;
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 261 int max_stack_len, uint8_t** stack_copy) {
267 if (max_stack_len >= 0 &&
268 stack_len > static_cast<unsigned int>(max_stack_len)) {
269 stack_len = max_stack_len;
396 int max_stack_len = -1; // default to no maximum for this thread local
398 max_stack_len = extra_thread_stack_len;
399 if (!FillThreadStack(&thread, info.stack_pointer, max_stack_len,
    [all...]

Completed in 1083 milliseconds