Lines Matching refs:ops
69 AgentOptions* ops; in DataDumpRequestCb() local
70 CHECK_CALL_SUCCESS(jvmti->GetEnvironmentLocalStorage(reinterpret_cast<void**>(&ops))); in DataDumpRequestCb()
71 LOG(WARNING) << "Jit thread has loaded " << ops->cnt << " classes"; in DataDumpRequestCb()
78 AgentOptions* ops; in ClassPrepareJit() local
79 CHECK_CALL_SUCCESS(jvmti->GetEnvironmentLocalStorage(reinterpret_cast<void**>(&ops))); in ClassPrepareJit()
82 (ops->fatal ? LOG_STREAM(FATAL) in ClassPrepareJit()
84 ops->cnt++; in ClassPrepareJit()
106 AgentOptions* ops; in SetupJvmti() local
108 jvmti->Allocate(sizeof(AgentOptions), reinterpret_cast<unsigned char**>(&ops))); in SetupJvmti()
109 ops->fatal = (strcmp(options, "fatal") == 0); in SetupJvmti()
110 ops->cnt = 0; in SetupJvmti()
111 CHECK_CALL_SUCCESS(jvmti->SetEnvironmentLocalStorage(ops)); in SetupJvmti()