Searched refs:agent (Results 1 – 11 of 11) sorted by relevance
/art/test/909-attach-agent/ |
D | run | 18 agent=libtiagentd.so 20 agent=libtiagent.so 27 --args agent:${agent}=909-attach-agent 31 --args agent:${agent}=909-attach-agent 33 ./default-run "$@" --args agent:${agent}=909-attach-agent
|
D | expected.txt | 2 Attached Agent for test 909-attach-agent 5 Attached Agent for test 909-attach-agent
|
/art/test/ |
D | Android.bp | 248 "ti-agent/agent_common.cc", 249 "ti-agent/agent_startup.cc", 250 "ti-agent/jni_binder.cc", 251 "ti-agent/jvmti_helper.cc", 252 "ti-agent/test_env.cc", 253 "ti-agent/breakpoint_helper.cc", 254 "ti-agent/common_helper.cc", 255 "ti-agent/redefinition_helper.cc", 256 "ti-agent/suspension_helper.cc", 257 "ti-agent/trace_helper.cc", [all …]
|
/art/test/909-attach-agent/src-art/ |
D | Main.java | 25 String agent = a.substring(6); in main() local 27 VMDebug.attachAgent(agent); in main()
|
/art/test/987-agent-bind/ |
D | info.txt | 1 Tests that native methods are bound from agent libs.
|
/art/test/etc/ |
D | run-test-jar | 392 agent=libtiagentd.so 395 agent=libtiagent.so 402 FLAGS="${FLAGS} -agentpath:${ANDROID_HOST_OUT}/nativetest64/${agent}=${TEST_NAME},jvm" 404 FLAGS="${FLAGS} -agentpath:${agent}=${TEST_NAME},art" 414 agent=libtistressd.so 416 agent=libtistress.so 442 FLAGS="${FLAGS} -agentpath:${ANDROID_HOST_OUT}/nativetest64/${agent}=${agent_args}" 444 FLAGS="${FLAGS} -agentpath:${agent}=${agent_args}"
|
/art/test/901-hello-ti-agent/ |
D | expected.txt | 1 Loaded Agent for test 901-hello-ti-agent
|
/art/runtime/ |
D | java_vm_ext.cc | 965 for (const ti::Agent& agent : Runtime::Current()->GetAgents()) { in FindCodeForNativeMethodInAgents() local 966 void* fn = agent.FindSymbol(jni_short_name); in FindCodeForNativeMethodInAgents() 969 << " (symbol: " << jni_short_name << ") in " << agent; in FindCodeForNativeMethodInAgents() 972 fn = agent.FindSymbol(jni_long_name); in FindCodeForNativeMethodInAgents() 975 << " (symbol: " << jni_long_name << ") in " << agent; in FindCodeForNativeMethodInAgents()
|
D | runtime.cc | 362 for (auto& agent : agents_) { in ~Runtime() local 363 agent.Unload(); in ~Runtime() 1457 for (auto& agent : agents_) { in Init() local 1461 ti::Agent::LoadError result = agent.Load(&res, &err); in Init() 1521 ti::Agent agent(agent_arg); in AttachAgent() local 1524 ti::Agent::LoadError result = agent.Attach(&res, &error_msg); in AttachAgent() 1527 agents_.push_back(std::move(agent)); in AttachAgent()
|
D | Android.bp | 213 "ti/agent.cc", 471 "ti/agent.h",
|
/art/runtime/native/ |
D | dalvik_system_VMDebug.cc | 511 static void VMDebug_attachAgent(JNIEnv* env, jclass, jstring agent) { in VMDebug_attachAgent() argument 512 if (agent == nullptr) { in VMDebug_attachAgent() 526 ScopedUtfChars chars(env, agent); in VMDebug_attachAgent()
|