satyr 0.42
|
Data Fields | |
enum sr_report_type | type |
char * | name |
char * | file_name |
uint32_t | file_line |
char * | class_path |
bool | is_native |
bool | is_exception |
char * | message |
struct sr_java_frame * | next |
Definition at line 41 of file java/frame.h.
char* sr_java_frame::class_path |
A path to jar file or class file. Can be NULL. (Always NULL if frame is exception)
Definition at line 72 of file java/frame.h.
uint32_t sr_java_frame::file_line |
Line no. in the Java file. 0 is used when file_line is missing. (Always 0 if frame is exception)
Definition at line 66 of file java/frame.h.
char* sr_java_frame::file_name |
A Java file. Can be NULL. (Always NULL if frame is exception)
Definition at line 60 of file java/frame.h.
bool sr_java_frame::is_exception |
True if frame is exception.
Definition at line 83 of file java/frame.h.
bool sr_java_frame::is_native |
True if method is native. (Always false if frame is exception)
Definition at line 78 of file java/frame.h.
char* sr_java_frame::message |
Exception message. Can be NULL. (Always NULL if frame is NOT exception).
Definition at line 89 of file java/frame.h.
char* sr_java_frame::name |
FQDN - Fully qualified domain name. Can be NULL.
Method: <Namespace>.<Type>.<Function name>
Exception: <Namespace>.<Type>
Definition at line 54 of file java/frame.h.
struct sr_java_frame* sr_java_frame::next |
Definition at line 91 of file java/frame.h.
enum sr_report_type sr_java_frame::type |
Definition at line 43 of file java/frame.h.