Searched refs:stack_len (Results 1 - 10 of 10) sorted by relevance

/external/google-breakpad/src/client/linux/microdump_writer/
H A Dmicrodump_writer.cc196 size_t stack_len; local
198 if (!dumper_->GetStackInfo(&stack, &stack_len, stack_pointer)) {
209 LogAppend(stack_len);
213 stack_len > static_cast<unsigned int>(max_stack_len)) {
214 stack_len = max_stack_len;
217 *stack_copy = reinterpret_cast<uint8_t*>(Alloc(stack_len));
218 dumper_->CopyFromProcess(*stack_copy, thread_id, stack, stack_len);
223 for (size_t stack_off = 0; stack_off < stack_len;
229 std::min(STACK_DUMP_CHUNK_SIZE, stack_len - stack_off));
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_core_dumper_unittest.cc114 size_t stack_len; local
115 EXPECT_TRUE(dumper.GetStackInfo(&stack, &stack_len, info.stack_pointer));
H A Dlinux_dumper.h98 // stack_len: (output) the length of the memory area
100 bool GetStackInfo(const void** stack, size_t* stack_len, uintptr_t stack_top);
H A Dlinux_dumper.cc401 bool LinuxDumper::GetStackInfo(const void** stack, size_t* stack_len, argument
419 *stack_len = distance_to_end > kStackToCapture ?
H A Dminidump_writer.cc264 size_t stack_len; local
265 if (dumper_->GetStackInfo(&stack, &stack_len, stack_pointer)) {
268 stack_len > static_cast<unsigned int>(max_stack_len)) {
269 stack_len = max_stack_len;
271 if (!memory.Allocate(stack_len))
273 *stack_copy = reinterpret_cast<uint8_t*>(Alloc(stack_len));
275 stack_len);
276 memory.Copy(*stack_copy, stack_len);
H A Dlinux_ptrace_dumper_unittest.cc433 size_t stack_len;
434 EXPECT_TRUE(dumper.GetStackInfo(&stack, &stack_len,
/external/syslinux/memdisk/
H A Dsetup.c770 unsigned int cmdline_len, stack_len, e820_len; local
1001 stack_len = stack_needed();
1002 total_size += stack_len; /* Stack */
1004 hptr->total_size, e820_len, cmdline_len, stack_len);
/external/selinux/libsepol/src/
H A Dservices.c85 static int stack_len; variable
90 if (next_stack_entry >= stack_len) {
94 if (stack_len == 0)
97 new_stack_len = stack_len * 2;
104 stack_len = new_stack_len;
/external/protobuf/php/ext/google/protobuf/
H A Dupb.c5870 int stack_len; member in struct:upb_descreader
5966 assert(r->stack_len > 1);
5967 index = r->stack[r->stack_len-1].start - 1;
5979 upb_descreader_frame *f = &r->stack[r->stack_len++];
5985 upb_descreader_frame *f = &r->stack[--r->stack_len];
5992 upb_descreader_frame *f = &r->stack[r->stack_len-1];
6433 while (r->stack_len > 0) {
6434 upb_descreader_frame *f = &r->stack[--r->stack_len];
6450 r->stack_len = 0;
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c6438 int stack_len; member in struct:upb_descreader
6501 assert(r->stack_len > 1);
6502 index = r->stack[r->stack_len-1].start - 1;
6514 upb_descreader_frame *f = &r->stack[r->stack_len++];
6520 upb_descreader_frame *f = &r->stack[--r->stack_len];
6530 upb_descreader_frame *f = &r->stack[r->stack_len-1];
7100 while (r->stack_len > 0) {
7101 upb_descreader_frame *f = &r->stack[--r->stack_len];
7117 r->stack_len = 0;

Completed in 485 milliseconds