Lines Matching refs:file

12  * version 2 for more details (a copy is included in the LICENSE file that
32 // This file provides the basic support for exception handling in the VM.
65 const char* _exception_file; // file information for exception (debugging only)
87 void set_pending_exception(oop exception, const char* file, int line);
103 static bool special_exception(Thread *thread, const char* file, int line, Handle exception);
104 static bool special_exception(Thread* thread, const char* file, int line, Symbol* name, const char* message);
113 static void _throw_oop(Thread* thread, const char* file, int line, oop exception);
114 static void _throw(Thread* thread, const char* file, int line, Handle exception, const char* msg = NULL);
116 static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message);
117 static void _throw_msg(Thread* thread, const char* file, int line, Symbol* name, const char* message,
120 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause);
121 static void _throw_msg_cause(Thread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause,
124 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause);
125 static void _throw_cause(Thread* thread, const char* file, int line, Symbol* name, Handle h_cause,
128 static void _throw_args(Thread* thread, const char* file, int line,
134 static void fthrow(Thread* thread, const char* file, int line, Symbol* name,
161 static void throw_stack_overflow_exception(Thread* thread, const char* file, int line, methodHandle method);