Home | History | Annotate | Download | only in jvmti

Lines Matching defs:error

42  * Handle an error or a warning, return 0 if the checked error is 
49 severe ? "Error" : "Warning", msg, err);
185 perror("Error: op_write_native_code()");
193 perror("Error: op_write_debug_line_info()");
217 perror("Error: op_unload_native_code()");
233 perror("Error: op_write_native_code()");
245 jvmtiError error;
264 perror("Error: op_open_agent()");
270 fprintf(stderr, "Error: GetEnv(), rc=%i\n", rc);
276 error = (*jvmti)->AddCapabilities(jvmti, &caps);
277 if (handle_error(error, "AddCapabilities()", 1))
281 error = (*jvmti)->GetJLocationFormat(jvmti, &format);
282 if (!handle_error(error, "GetJLocationFormat", 1) &&
287 error = (*jvmti)->AddCapabilities(jvmti, &caps);
288 if (!handle_error(error, "AddCapabilities()", 1))
296 error = (*jvmti)->SetEventCallbacks(jvmti, &callbacks,
298 if (handle_error(error, "SetEventCallbacks()", 1))
301 error = (*jvmti)->SetEventNotificationMode(jvmti, JVMTI_ENABLE,
303 if (handle_error(error, "SetEventNotificationMode() "
306 error = (*jvmti)->SetEventNotificationMode(jvmti, JVMTI_ENABLE,
308 if (handle_error(error, "SetEventNotificationMode() "
311 error = (*jvmti)->SetEventNotificationMode(jvmti, JVMTI_ENABLE,
313 if (handle_error(error, "SetEventNotificationMode() "
325 perror("Error: op_close_agent()");