HomeSort by relevance Sort by last modified time
    Searched refs:current_callbacks (Results 1 - 9 of 9) sorted by null

  /art/test/ti-agent/
test_env.h 29 extern jvmtiEventCallbacks current_callbacks;
test_env.cc 22 jvmtiEventCallbacks current_callbacks = {}; member in namespace:art
frame_pop_helper.cc 93 current_callbacks.FramePop = framePopCB;
96 jvmti_env->SetEventCallbacks(&current_callbacks,
97 sizeof(current_callbacks)))) {
monitors_helper.cc 185 current_callbacks.MonitorContendedEnter = monitorEnterCB;
186 current_callbacks.MonitorContendedEntered = monitorEnteredCB;
187 current_callbacks.MonitorWait = monitorWaitCB;
188 current_callbacks.MonitorWaited = monitorWaitedCB;
191 jvmti_env->SetEventCallbacks(&current_callbacks,
192 sizeof(current_callbacks)))) {
exceptions_helper.cc 150 current_callbacks.Exception = exceptionCB;
151 current_callbacks.ExceptionCatch = exceptionCatchCB;
154 jvmti_env->SetEventCallbacks(&current_callbacks,
155 sizeof(current_callbacks)))) {
redefinition_helper.cc 384 current_callbacks.ClassFileLoadHook = common_retransform::CommonClassFileLoadHookRetransformable;
385 jvmtiError res = jvmti_env->SetEventCallbacks(&current_callbacks, sizeof(current_callbacks));
398 current_callbacks.ClassFileLoadHook = common_retransform::CommonClassFileLoadHookRetransformable;
399 jvmtiError res = jvmti_env->SetEventCallbacks(&current_callbacks, sizeof(current_callbacks));
breakpoint_helper.cc 175 current_callbacks.Breakpoint = breakpointCB;
178 jvmti_env->SetEventCallbacks(&current_callbacks,
179 sizeof(current_callbacks)))) {
trace_helper.cc 516 current_callbacks.MethodEntry = methodEntryCB;
517 current_callbacks.MethodExit = methodExitCB;
518 current_callbacks.FieldAccess = fieldAccessCB;
519 current_callbacks.FieldModification = fieldModificationCB;
520 current_callbacks.ClassPrepare = classPrepareCB;
521 current_callbacks.SingleStep = singleStepCB;
522 current_callbacks.ThreadStart = threadStartCB;
523 current_callbacks.ThreadEnd = threadEndCB;
526 jvmti_env->SetEventCallbacks(&current_callbacks,
527 sizeof(current_callbacks)))) {
    [all...]
  /art/test/1950-unprepared-transform/
unprepared_transform.cc 62 current_callbacks.ClassLoad = ClassLoadCallback;
66 &current_callbacks, sizeof(current_callbacks)))) {

Completed in 96 milliseconds