Searched defs:stack_len (Results 1 - 5 of 5) sorted by relevance

/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.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);
/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/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;

Completed in 111 milliseconds