Lines Matching refs:ExceptionPort
57 previous_type_(ExceptionPort::Type::NONE) { in ExceptionPortIterator()
62 bool Next(fbl::RefPtr<ExceptionPort>* out_eport) { in Next()
63 fbl::RefPtr<ExceptionPort> eport; in Next()
64 ExceptionPort::Type expected_type = ExceptionPort::Type::NONE; in Next()
68 case ExceptionPort::Type::NONE: in Next()
70 expected_type = ExceptionPort::Type::DEBUGGER; in Next()
72 case ExceptionPort::Type::DEBUGGER: in Next()
74 expected_type = ExceptionPort::Type::THREAD; in Next()
76 case ExceptionPort::Type::THREAD: in Next()
78 expected_type = ExceptionPort::Type::PROCESS; in Next()
80 case ExceptionPort::Type::PROCESS: in Next()
83 expected_type = ExceptionPort::Type::JOB; in Next()
85 case ExceptionPort::Type::JOB: in Next()
89 expected_type = ExceptionPort::Type::JOB; in Next()
112 ExceptionPort::Type previous_type_;
119 static zx_status_t try_exception_handler(fbl::RefPtr<ExceptionPort> eport, in try_exception_handler()
153 ExceptionPort::BuildArchReport(&report, exception_type, context); in exception_handler_worker()
156 fbl::RefPtr<ExceptionPort> eport; in exception_handler_worker()