/art/test/901-hello-ti-agent/ |
D | Android.bp | 3 // Build rules for ART run-test `901-hello-ti-agent`. 16 name: "art-run-test-901-hello-ti-agent", 21 ":art-run-test-901-hello-ti-agent-expected-stdout", 22 ":art-run-test-901-hello-ti-agent-expected-stderr", 28 name: "art-run-test-901-hello-ti-agent-expected-stdout", 29 out: ["art-run-test-901-hello-ti-agent-expected-stdout.txt"], 36 name: "art-run-test-901-hello-ti-agent-expected-stderr", 37 out: ["art-run-test-901-hello-ti-agent-expected-stderr.txt"],
|
D | expected-stdout.txt | 1 Loaded Agent for test 901-hello-ti-agent
|
/art/tools/jvmti-agents/ti-alloc-sample/ |
D | Android.bp | 28 name: "ti-alloc-sample-base-defaults", 43 name: "ti-alloc-sample-defaults", 48 defaults: ["ti-alloc-sample-base-defaults"], 52 name: "ti-alloc-sample-static-defaults", 54 defaults: ["ti-alloc-sample-base-defaults"], 68 defaults: ["ti-alloc-sample-static-defaults"], 73 defaults: ["ti-alloc-sample-defaults"], 80 "ti-alloc-sample-defaults",
|
/art/test/155-java-set-resolved-type/src/ |
D | TestParameter.java | 18 public void bar(TestInterface ti) { } in bar() argument
|
/art/test/ti-agent/ |
D | jni_binder.cc | 35 size_t char_count = ti::CountModifiedUtf8Chars(s.c_str(), s.length()); in MangleForJni() 38 uint32_t ch = ti::GetUtf16FromUtf8(&cp); in MangleForJni() 50 const uint16_t leading = ti::GetLeadingUtf16Char(ch); in MangleForJni() 51 const uint32_t trailing = ti::GetTrailingUtf16Char(ch); in MangleForJni()
|
D | ti_utf.h | 26 namespace ti {
|
/art/tools/jvmti-agents/ |
D | README.md | 16 * [litifast](./ti-fast)
|
/art/test/ |
D | Android.bp | 574 "ti-agent/agent_common.cc", 575 "ti-agent/agent_startup.cc", 576 "ti-agent/jni_binder.cc", 577 "ti-agent/jvmti_helper.cc", 578 "ti-agent/test_env.cc", 579 "ti-agent/breakpoint_helper.cc", 580 "ti-agent/common_helper.cc", 581 "ti-agent/early_return_helper.cc", 582 "ti-agent/frame_pop_helper.cc", 583 "ti-agent/locals_helper.cc", [all …]
|
/art/compiler/optimizing/ |
D | optimizing_unit_test.h | 409 HLoadClass* MakeClassLoad(std::optional<dex::TypeIndex> ti = std::nullopt, 412 ti ? *ti : dex::TypeIndex(class_idx_++), 526 HParameterValue* MakeParam(DataType::Type type, std::optional<dex::TypeIndex> ti = std::nullopt) { 528 graph_->GetDexFile(), ti ? *ti : DefaultTypeIndexForType(type), param_count_++, type);
|
D | dead_code_elimination.cc | 193 ReferenceTypeInfo ti = obj->GetReferenceTypeInfo(); in RemoveNonNullControlDependences() local 195 bound->SetUpperBound(ti, /*can_be_null*/ false); in RemoveNonNullControlDependences() 196 bound->SetReferenceTypeInfo(ti); in RemoveNonNullControlDependences()
|
/art/runtime/ti/ |
D | agent.h | 29 namespace ti {
|
D | agent.cc | 31 namespace ti { namespace
|
/art/test/906-iterate-heap/ |
D | iterate_heap.cc | 201 size_t utf_byte_count = ti::CountUtf8Bytes(value, value_length); in Java_art_Test906_iterateThroughHeapString() 204 ti::ConvertUtf16ToModifiedUtf8(mod_utf.get(), utf_byte_count, value, value_length); in Java_art_Test906_iterateThroughHeapString()
|
/art/cmdline/ |
D | cmdline_types.h | 362 struct CmdlineType<std::list<ti::AgentSpec>> : CmdlineTypeParser<std::list<ti::AgentSpec>> { 369 std::list<ti::AgentSpec>& existing_value) {
|
/art/runtime/ |
D | runtime.h | 80 namespace ti { 872 const std::list<std::unique_ptr<ti::Agent>>& GetAgents() const { in GetAgents() 1141 std::list<ti::AgentSpec> agent_specs_; 1142 std::list<std::unique_ptr<ti::Agent>> agents_;
|
D | runtime_options.def | 146 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentLib) // -agentlib:<libname>=<options> 147 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentPath) // -agentpath:<libname>=<options>
|
D | runtime.cc | 1957 ti::LoadError error; in Init() 1958 std::unique_ptr<ti::Agent> agent = agent_spec.Load(&res, &error, &err); in Init() 1966 case ti::LoadError::kInitializationError: in Init() 1970 case ti::LoadError::kLoadingError: in Init() 1974 case ti::LoadError::kNoError: in Init() 2067 ti::AgentSpec agent_spec(agent_arg); in AttachAgent() 2070 ti::LoadError error; in AttachAgent() 2071 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg); in AttachAgent()
|
D | parsed_options.cc | 109 .WithType<std::list<ti::AgentSpec>>().AppendValues() in MakeParser()
|
D | Android.bp | 247 "ti/agent.cc",
|
/art/libdexfile/dex/ |
D | dex_file.cc | 477 const TryItem& ti = try_items[mid]; in FindTryItem() local 478 const uint32_t start = ti.start_addr_; in FindTryItem() 479 const uint32_t end = start + ti.insn_count_; in FindTryItem()
|
/art/test/913-heaps/ |
D | heaps.cc | 589 size_t utf_byte_count = ti::CountUtf8Bytes(value, value_length); in Java_art_Test913_followReferencesString() 592 ti::ConvertUtf16ToModifiedUtf8(mod_utf.get(), utf_byte_count, value, value_length); in Java_art_Test913_followReferencesString()
|
/art/runtime/jni/ |
D | java_vm_ext.cc | 1116 for (const std::unique_ptr<ti::Agent>& agent : Runtime::Current()->GetAgents()) { in FindCodeForNativeMethodInAgents()
|