Home
last modified time | relevance | path

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

/third_party/boost/boost/stacktrace/
Dsafe_dump_to.hpp34 … typedef const void* native_frame_ptr_t; // TODO: change to `typedef void(*native_frame_ptr_t)();` typedef
37 …BOOST_STACKTRACE_FUNCTION std::size_t from_dump(const char* filename, native_frame_ptr_t* out_fram…
38 …BOOST_STACKTRACE_FUNCTION std::size_t dump(const char* file, const native_frame_ptr_t* frames, std…
40 …BOOST_STACKTRACE_FUNCTION std::size_t dump(void* fd, const native_frame_ptr_t* frames, std::size_t…
43 …BOOST_STACKTRACE_FUNCTION std::size_t dump(int fd, const native_frame_ptr_t* frames, std::size_t f…
48 …BOOST_NOINLINE BOOST_STACKTRACE_FUNCTION static std::size_t collect(native_frame_ptr_t* out_frames…
51 typedef boost::stacktrace::detail::native_frame_ptr_t native_frame_ptr_t; in safe_dump_to_impl() typedef
53 if (size < sizeof(native_frame_ptr_t)) { in safe_dump_to_impl()
57 native_frame_ptr_t* mem = static_cast<native_frame_ptr_t*>(memory); in safe_dump_to_impl()
58 …stacktrace::detail::this_thread_frames::collect(mem, size / sizeof(native_frame_ptr_t) - 1, skip +… in safe_dump_to_impl()
[all …]
Dstacktrace.hpp43 typedef boost::stacktrace::detail::native_frame_ptr_t native_frame_ptr_t; typedef in boost::stacktrace::basic_stacktrace
46 void fill(native_frame_ptr_t* begin, std::size_t size) { in fill()
63 …const std::size_t ret = (buffer_size > sizeof(native_frame_ptr_t) ? buffer_size / sizeof(native_fr… in frames_count_from_buffer_size()
75 native_frame_ptr_t buffer[buffer_size]; in init()
85 typedef typename Allocator::template rebind<native_frame_ptr_t>::other allocator_void_t; in init()
87 …f typename std::allocator_traits<Allocator>::template rebind_alloc<native_frame_ptr_t> allocator_v… in init()
89 … std::vector<native_frame_ptr_t, allocator_void_t> buf(buffer_size * 2, 0, impl_.get_allocator()); in init()
307 native_frame_ptr_t ptr = 0; in from_dump()
329 const native_frame_ptr_t* first = static_cast<const native_frame_ptr_t*>(begin); in from_dump()
335 const native_frame_ptr_t* const last = first + frames_count; in from_dump()
/third_party/boost/boost/stacktrace/detail/
Dframe_decl.hpp34 typedef boost::stacktrace::detail::native_frame_ptr_t native_frame_ptr_t; typedef in boost::stacktrace::frame
38 native_frame_ptr_t addr_;
78 BOOST_CONSTEXPR explicit frame(native_frame_ptr_t addr) BOOST_NOEXCEPT in frame()
90 : addr_(boost::stacktrace::detail::void_ptr_cast<native_frame_ptr_t>(function_addr)) in frame()
107 BOOST_CONSTEXPR native_frame_ptr_t address() const BOOST_NOEXCEPT { in address()
Dsafe_dump_noop.ipp21 std::size_t dump(void* /*fd*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_count*/) …
25 std::size_t dump(int /*fd*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_count*/) BO…
31 std::size_t dump(const char* /*file*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_c…
Dcollect_unwind.ipp41 native_frame_ptr_t* current;
42 native_frame_ptr_t* end;
54 *state->current = reinterpret_cast<native_frame_ptr_t>(
66 std::size_t this_thread_frames::collect(native_frame_ptr_t* out_frames, std::size_t max_frames_coun…
Dsafe_dump_win.ipp26 std::size_t dump(void* /*fd*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_count*/) …
30 sizeof(native_frame_ptr_t) * frames_count
41 std::size_t dump(const char* /*file*/, const native_frame_ptr_t* /*frames*/, std::size_t /*frames_c…
Dsafe_dump_posix.ipp24 std::size_t dump(int fd, const native_frame_ptr_t* frames, std::size_t frames_count) BOOST_NOEXCEPT…
29 if (::write(fd, frames, sizeof(native_frame_ptr_t) * frames_count) == -1) {
36 std::size_t dump(const char* file, const native_frame_ptr_t* frames, std::size_t frames_count) BOOS…
Dcollect_noop.ipp19 std::size_t this_thread_frames::collect(native_frame_ptr_t* /*out_frames*/, std::size_t /*max_frame…
Dcollect_msvc.ipp21 std::size_t this_thread_frames::collect(native_frame_ptr_t* out_frames, std::size_t max_frames_coun…
Dframe_unwind.ipp37 std::string operator()(boost::stacktrace::detail::native_frame_ptr_t addr) {
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DReactorDebugInfo.cpp85 static std::unordered_map<bs::frame::native_frame_ptr_t, Location> cache; in getCallerBacktrace()