Searched refs:stack (Results 151 - 175 of 2015) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/
H A Dsupp_unknown.stderr.exp6 If you believe this happened as a result of a stack
9 main thread stack using the --main-stacksize= flag.
10 The main thread stack size used in this run was ....
H A Dexecve2.stderr.exp4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
H A Dsigaltstack.stderr.exp1 calling sigaltstack, stack base is 0x........
H A Dsignal2.stderr.exp3 Address 0x........ is not stack'd, malloc'd or (recently) free'd
/external/valgrind/main/none/tests/linux/
H A Dblockfault.stderr.exp6 If you believe this happened as a result of a stack
9 main thread stack using the --main-stacksize= flag.
10 The main thread stack size used in this run was ....
/external/bison/data/
H A Dstack.hh21 b4_output_begin([b4_dir_prefix[]stack.hh])
26 ** \file ]b4_dir_prefix[stack.hh
27 ** Define the ]b4_namespace_ref[::stack class.
30 ]b4_cpp_guard_open([b4_dir_prefix[]stack.hh])[
36 class stack
43 stack () : seq_ ()
47 stack (unsigned int n) : seq_ (n)
94 /// Present a slice of the top of a stack.
95 template <class T, class S = stack<T> >
99 slice (const S& stack, unsigne
[all...]
/external/chromium-trace/trace-viewer/src/ui/
H A Dquad_stack.css6 quad-stack {
17 quad-stack > view-container {
25 quad-stack quad-view {
32 quad-stack > view-container > rect-view {
/external/chromium_org/base/
H A Dat_exit.h8 #include <stack>
23 // AtExitManager object on the stack:
55 // AtExitManagers are kept on a global stack, and it will be removed during
61 std::stack<base::Closure> stack_;
/external/chromium_org/ui/file_manager/video_player/js/
H A Derror_util.js21 * - Capture the stack trace in case of error.
30 var liveStack = (new Error('Stack trace before async call')).stack;
41 // the exception message and stack trace just in case.
43 console.error(e.stack);
/external/compiler-rt/lib/msan/
H A Dmsan_new_delete.cc39 return MsanReallocate(&stack, 0, size, sizeof(u64), false)
52 if (ptr) MsanDeallocate(&stack, ptr)
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stacktrace_test.cc49 // Mark the last fp as zero to terminate the stack trace.
62 // Should get all on-stack retaddrs and start_pc.
76 // Should get all on-stack retaddrs up to the 4th slot and start_pc.
89 // Should get all on-stack retaddrs up to the 4th slot and start_pc.
115 StackTrace stack;
118 stack.Unwind(0, pc, bp, 0, 0, 0, false);
119 EXPECT_EQ(0U, stack.size);
120 EXPECT_EQ(0U, stack.top_frame_bp);
121 stack.Unwind(1, pc, bp, 0, 0, 0, false);
122 EXPECT_EQ(1U, stack
[all...]
/external/libcxx/test/containers/container.adaptors/stack/stack.cons/
H A Dctor_container.pass.cpp10 // <stack>
12 // explicit stack(const container_type& c);
14 #include <stack>
30 std::stack<int> q(d);
/external/libcxx/test/containers/container.adaptors/stack/stack.defn/
H A Dpop.pass.cpp10 // <stack>
14 #include <stack>
19 std::stack<int> q;
/external/libunwind/src/ia64/
H A Ddyn_info_list.S24 /* We do not need executable stack. */
25 .section .note.GNU-stack,"",@progbits
/external/lldb/tools/debugserver/scripts/
H A Ddiagnose-termination.d4 stack();
/external/nist-sip/java/gov/nist/javax/sip/
H A DDefaultAddressResolver.java34 import gov.nist.javax.sip.stack.HopImpl;
35 import gov.nist.javax.sip.stack.MessageProcessor;
44 * some address that cannot be resolved you should register an AddressResolver with the stack.
/external/valgrind/main/drd/tests/
H A Dfp_race.stderr.exp7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
H A Dsem_as_mutex.stderr.exp7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
H A Dsem_open.stderr.exp7 (thread finished, call stack no longer available)
9 (thread finished, call stack no longer available)
16 (thread finished, call stack no longer available)
18 (thread finished, call stack no longer available)
H A Dsigaltstack.stderr.exp1 calling sigaltstack, stack base is 0x........
/external/valgrind/main/none/tests/
H A Dthread-exits.stdout.exp0 stack grew OK
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc70 asan_free(ptr, &stack, FROM_MALLOC);
75 asan_free(ptr, &stack, FROM_MALLOC);
80 return asan_malloc(size, &stack);
96 return asan_calloc(nmemb, size, &stack);
101 return asan_realloc(ptr, size, &stack);
106 return asan_memalign(boundary, size, &stack, FROM_MALLOC);
111 return asan_memalign(boundary, size, &stack, FROM_MALLOC);
116 void *res = asan_memalign(boundary, size, &stack, FROM_MALLOC);
148 return asan_posix_memalign(memptr, alignment, size, &stack);
153 return asan_valloc(size, &stack);
[all...]
/external/lldb/source/Core/
H A DTimer.cpp103 TimerStack *stack = GetTimerStackForCurrentThread (); local
104 if (stack)
106 if (stack->empty() == false)
107 stack->back()->ChildStarted (start_time);
108 stack->push_back(this);
130 TimerStack *stack = GetTimerStackForCurrentThread (); local
131 if (stack)
133 assert (stack->back() == this);
134 stack->pop_back();
135 if (stack
[all...]
/external/qemu/android/base/files/
H A DPathUtils.cpp135 StringVector stack; local
145 // stack that is not '..', then remove it, otherwise push
147 if (!stack.empty() && stack[stack.size() -1U] != "..") {
148 stack.resize(stack.size() - 1U);
150 stack.push_back(*it);
154 // If not a '..', just push on the stack.
155 stack
[all...]
/external/chromium_org/base/debug/
H A Dtrace_event_memory.cc24 // entries on the pseudo-stack per scope.
49 // Records a stack of TRACE_MEMORY events. One per thread is required.
69 TraceMemoryStack* stack = static_cast<TraceMemoryStack*>(value); local
70 delete stack;
86 TraceMemoryStack* stack =
88 delete stack;
98 // Returns the thread-local trace memory stack for the current thread, creating
102 TraceMemoryStack* stack = local
105 if (!stack) {
106 stack
288 TraceMemoryStack* stack = GetTraceMemoryStack(); local
295 TraceMemoryStack* stack = GetTraceMemoryStack(); local
[all...]

Completed in 747 milliseconds

1234567891011>>