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

  /external/boringssl/src/crypto/test/
abi_test.cc 248 // UnwindCursor abstracts between libunwind and Windows unwind APIs. It is
251 class UnwindCursor {
253 explicit UnwindCursor(const CONTEXT &ctx) : ctx_(ctx) {
332 class UnwindCursor {
334 explicit UnwindCursor(unw_context_t *ctx) : ctx_(ctx) {
496 static void AddUnwindError(UnwindCursor *cursor, Args... args) {
512 static void CheckUnwind(UnwindCursor *cursor) {
645 UnwindCursor cursor(*info->ContextRecord);
745 UnwindCursor cursor(&ctx);
  /external/libunwind_llvm/src/
UnwindCursor.hpp 1 //===------------------------- UnwindCursor.hpp ---------------------------===//
455 /// \c UnwindCursor contains all state (including all register values) during
458 class UnwindCursor : public AbstractUnwindCursor {
461 UnwindCursor(unw_context_t *context, A &as);
462 UnwindCursor(CONTEXT *context, A &as);
463 UnwindCursor(A &as, void *threadArg);
464 virtual ~UnwindCursor() {}
487 static void *operator new(size_t, UnwindCursor<A, R> *p) { return p; }
529 UnwindCursor<A, R>::UnwindCursor(unw_context_t *context, A &as
    [all...]

Completed in 225 milliseconds