OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StartType
(Results
1 - 2
of
2
) sorted by null
/art/tools/jvmti-agents/wrapagentproperties/
wrapagentproperties.cc
244
enum class
StartType
{
248
static jint CallNextAgent(
StartType
start,
254
return ((start ==
StartType
::OnLoad) ? vm->load : vm->attach)(vm, options.c_str(), reserved);
305
static jint AgentStart(
StartType
start, JavaVM* vm, char* options, void* reserved) {
327
return AgentStart(
StartType
::OnAttach, vm, options, reserved);
333
return AgentStart(
StartType
::OnLoad, jvm, options, reserved);
/art/tools/jvmti-agents/breakpoint-logger/
breakpoint_logger.cc
346
enum class
StartType
{
350
static jint AgentStart(
StartType
start,
415
if (start ==
StartType
::OnAttach) {
438
return AgentStart(
StartType
::OnAttach, vm, options, reserved);
443
return AgentStart(
StartType
::OnLoad, jvm, options, reserved);
Completed in 426 milliseconds