Lines Matching defs:info

751     EventInfo info;
756 (void)memset(&info,0,sizeof(info));
757 info.ei = EI_SINGLE_STEP;
758 info.thread = thread;
759 info.clazz = getMethodClass(jvmti_env, method);
760 info.method = method;
761 info.location = location;
762 event_callback(env, &info);
773 EventInfo info;
778 (void)memset(&info,0,sizeof(info));
779 info.ei = EI_BREAKPOINT;
780 info.thread = thread;
781 info.clazz = getMethodClass(jvmti_env, method);
782 info.method = method;
783 info.location = location;
784 event_callback(env, &info);
796 EventInfo info;
806 (void)memset(&info,0,sizeof(info));
807 info.ei = EI_FRAME_POP;
808 info.thread = thread;
809 info.clazz = getMethodClass(jvmti_env, method);
810 info.method = method;
811 event_callback(env, &info);
824 EventInfo info;
829 (void)memset(&info,0,sizeof(info));
830 info.ei = EI_EXCEPTION;
831 info.thread = thread;
832 info.clazz = getMethodClass(jvmti_env, method);
833 info.method = method;
834 info.location = location;
835 info.object = exception;
836 info.u.exception.catch_clazz = getMethodClass(jvmti_env, catch_method);
837 info.u.exception.catch_method = catch_method;
838 info.u.exception.catch_location = catch_location;
839 event_callback(env, &info);
849 EventInfo info;
854 (void)memset(&info,0,sizeof(info));
855 info.ei = EI_THREAD_START;
856 info.thread = thread;
857 event_callback(env, &info);
867 EventInfo info;
872 (void)memset(&info,0,sizeof(info));
873 info.ei = EI_THREAD_END;
874 info.thread = thread;
875 event_callback(env, &info);
886 EventInfo info;
891 (void)memset(&info,0,sizeof(info));
892 info.ei = EI_CLASS_PREPARE;
893 info.thread = thread;
894 info.clazz = klass;
895 event_callback(env, &info);
915 EventInfo info;
920 (void)memset(&info,0,sizeof(info));
921 info.ei = EI_CLASS_LOAD;
922 info.thread = thread;
923 info.clazz = klass;
924 event_callback(env, &info);
937 EventInfo info;
942 (void)memset(&info,0,sizeof(info));
943 info.ei = EI_FIELD_ACCESS;
944 info.thread = thread;
945 info.clazz = getMethodClass(jvmti_env, method);
946 info.method = method;
947 info.location = location;
948 info.u.field_access.field_clazz = field_klass;
949 info.object = object;
950 info.u.field_access.field = field;
951 event_callback(env, &info);
964 EventInfo info;
969 (void)memset(&info,0,sizeof(info));
970 info.ei = EI_FIELD_MODIFICATION;
971 info.thread = thread;
972 info.clazz = getMethodClass(jvmti_env, method);
973 info.method = method;
974 info.location = location;
975 info.u.field_modification.field = field;
976 info.u.field_modification.field_clazz = field_klass;
977 info.object = object;
978 info.u.field_modification.signature_type= signature_type;
979 info.u.field_modification.new_value = new_value;
980 event_callback(env, &info);
991 EventInfo info;
996 (void)memset(&info,0,sizeof(info));
997 info.ei = EI_EXCEPTION_CATCH;
998 info.thread = thread;
999 info.clazz = getMethodClass(jvmti_env, method);
1000 info.method = method;
1001 info.location = location;
1002 info.object = exception;
1003 event_callback(env, &info);
1014 EventInfo info;
1019 (void)memset(&info,0,sizeof(info));
1020 info.ei = EI_METHOD_ENTRY;
1021 info.thread = thread;
1022 info.clazz = getMethodClass(jvmti_env, method);
1023 info.method = method;
1024 event_callback(env, &info);
1036 EventInfo info;
1046 (void)memset(&info,0,sizeof(info));
1047 info.ei = EI_METHOD_EXIT;
1048 info.thread = thread;
1049 info.clazz = getMethodClass(jvmti_env, method);
1050 info.method = method;
1051 info.u.method_exit.return_value = return_value;
1052 event_callback(env, &info);
1063 EventInfo info;
1071 (void)memset(&info,0,sizeof(info));
1072 info.ei = EI_MONITOR_CONTENDED_ENTER;
1073 info.thread = thread;
1074 info.object = object;
1079 info.location = location;
1080 info.method = method;
1081 info.clazz = getMethodClass(jvmti_env, method);
1083 info.location = -1;
1085 event_callback(env, &info);
1096 EventInfo info;
1104 (void)memset(&info,0,sizeof(info));
1105 info.ei = EI_MONITOR_CONTENDED_ENTERED;
1106 info.thread = thread;
1107 info.object = object;
1112 info.location = location;
1113 info.method = method;
1114 info.clazz = getMethodClass(jvmti_env, method);
1116 info.location = -1;
1118 event_callback(env, &info);
1130 EventInfo info;
1138 (void)memset(&info,0,sizeof(info));
1139 info.ei = EI_MONITOR_WAIT;
1140 info.thread = thread;
1141 info.object = object;
1142 /* The info.clazz is used for both class filtering and for location info.
1144 * object. So here info.clazz is set to class of monitor object here and it
1145 * is reset to class of method before writing location info.
1148 info.clazz = getObjectClass(object);
1149 info.u.monitor.timeout = timeout;
1155 info.location = location;
1156 info.method = method;
1158 info.location = -1;
1160 event_callback(env, &info);
1172 EventInfo info;
1180 (void)memset(&info,0,sizeof(info));
1181 info.ei = EI_MONITOR_WAITED;
1182 info.thread = thread;
1183 info.object = object;
1184 /* The info.clazz is used for both class filtering and for location info.
1186 * object. So here info.clazz is set to class of monitor object here and it
1187 * is reset to class of method before writing location info.
1190 info.clazz = getObjectClass(object);
1191 info.u.monitor.timed_out = timed_out;
1197 info.location = location;
1198 info.method = method;
1200 info.location = -1;
1202 event_callback(env, &info);
1212 EventInfo info;
1217 (void)memset(&info,0,sizeof(info));
1218 info.ei = EI_VM_INIT;
1219 info.thread = thread;
1220 event_callback(env, &info);
1231 EventInfo info;
1278 (void)memset(&info,0,sizeof(info));
1279 info.ei = EI_VM_DEATH;
1280 event_callback(env, &info);