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

  /external/google-breakpad/src/google_breakpad/processor/
basic_source_line_resolver.h 98 // Format: FUNC <address> <size> <stack_param_size> <name>.
100 // can't be const. On success, <address>, <size>, <stack_param_size>, and
101 // <name> are stored in |*address|, |*size|, |*stack_param_size|, and |*name|.
106 long *stack_param_size, // out
122 // Format: PUBLIC <address> <stack_param_size> <name>
124 // it can't be const. On success, <address>, <stack_param_size>, <name>
125 // are stored in |*address|, |*stack_param_size|, and |*name|.
129 long *stack_param_size, // out
  /external/google-breakpad/src/processor/
basic_source_line_resolver.cc 325 long stack_param_size; local
328 &stack_param_size, &name)) {
329 return new Function(name, address, size, stack_param_size);
350 long stack_param_size; local
354 &stack_param_size, &name)) {
366 stack_param_size));
492 uint64_t *size, long *stack_param_size,
494 // FUNC <address> <size> <stack_param_size> <name>
514 *stack_param_size = strtol(tokens[2], &after_number, 16);
516 *stack_param_size == std::numeric_limits<long>::max() |
    [all...]
basic_source_line_resolver_unittest.cc 455 // FUNC <address> <size> <stack_param_size> <name>
459 long stack_param_size; local
464 &stack_param_size, &name));
467 EXPECT_EQ(3, stack_param_size);
473 &stack_param_size, &name));
476 EXPECT_EQ(0xa3, stack_param_size);
481 &stack_param_size, &name));
484 EXPECT_EQ(0, stack_param_size);
489 // FUNC <address> <size> <stack_param_size> <name>
493 long stack_param_size; local
615 long stack_param_size; local
646 long stack_param_size; local
    [all...]
  /external/google-breakpad/src/common/windows/
pdb_source_line_writer.cc 266 int stack_param_size; local
267 if (!GetSymbolFunctionName(function, &name, &stack_param_size)) {
273 if (stack_param_size < 0) {
274 stack_param_size = GetFunctionStackParamSize(function);
282 ranges[i].rva, ranges[i].length, stack_param_size, name);
814 int stack_param_size; local
815 if (!GetSymbolFunctionName(symbol, &name, &stack_param_size)) {
823 stack_param_size > 0 ? stack_param_size : 0, name);
925 int *stack_param_size) {
    [all...]
pdb_source_line_writer.h 219 // parameters on the stack, this information is returned in stack_param_size.
221 // information, stack_param_size is set to -1.
223 int *stack_param_size);
  /external/google-breakpad/src/common/solaris/
dump_symbols.cc 110 uint32_t stack_param_size; member in struct:__anon9458::FuncInfo
258 func_info->stack_param_size = 0;
539 func_info.stack_param_size,

Completed in 178 milliseconds