HomeSort by relevance Sort by last modified time
    Searched defs:stack_len (Results 1 - 4 of 4) sorted by null

  /external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper_unittest.cc 114 size_t stack_len; local
115 EXPECT_TRUE(dumper.GetStackInfo(&stack, &stack_len, info.stack_pointer));
minidump_writer.cc 264 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);
    [all...]
  /external/google-breakpad/src/client/linux/microdump_writer/
microdump_writer.cc 196 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/selinux/libsepol/src/
services.c 49 #define STACK_LEN 32
85 static int stack_len; variable
90 if (next_stack_entry >= stack_len) {
94 if (stack_len == 0)
95 new_stack_len = STACK_LEN;
97 new_stack_len = stack_len * 2;
104 stack_len = new_stack_len;
443 new_expr_list_len = STACK_LEN;
    [all...]

Completed in 143 milliseconds