Home
last modified time | relevance | path

Searched refs:ntraced (Results 1 – 1 of 1) sorted by relevance

/external/libcxxabi/test/
Dbacktrace_test.cpp13 trace_function(struct _Unwind_Context* context, void* ntraced) { in trace_function() argument
14 (*reinterpret_cast<size_t*>(ntraced))++; in trace_function()
16 assert(*reinterpret_cast<size_t*>(ntraced) < 20); in trace_function()
20 void call3_throw(size_t* ntraced) { in call3_throw() argument
22 _Unwind_Backtrace(trace_function, ntraced); in call3_throw()
28 void call3_nothrow(size_t* ntraced) { in call3_nothrow() argument
29 _Unwind_Backtrace(trace_function, ntraced); in call3_nothrow()
32 void call2(size_t* ntraced, bool do_throw) { in call2() argument
34 call3_throw(ntraced); in call2()
36 call3_nothrow(ntraced); in call2()
[all …]