Home
last modified time | relevance | path

Searched refs:ti (Results 1 – 23 of 23) sorted by relevance

/art/test/901-hello-ti-agent/
DAndroid.bp3 // 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"],
Dexpected-stdout.txt1 Loaded Agent for test 901-hello-ti-agent
/art/tools/jvmti-agents/ti-alloc-sample/
DAndroid.bp28 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/
DTestParameter.java18 public void bar(TestInterface ti) { } in bar() argument
/art/test/ti-agent/
Djni_binder.cc35 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()
Dti_utf.h27 namespace ti {
/art/tools/jvmti-agents/
DREADME.md16 * [litifast](./ti-fast)
/art/test/
DAndroid.bp638 "ti-agent/agent_common.cc",
639 "ti-agent/agent_startup.cc",
640 "ti-agent/jni_binder.cc",
641 "ti-agent/jvmti_helper.cc",
642 "ti-agent/test_env.cc",
643 "ti-agent/breakpoint_helper.cc",
644 "ti-agent/common_helper.cc",
645 "ti-agent/early_return_helper.cc",
646 "ti-agent/frame_pop_helper.cc",
647 "ti-agent/locals_helper.cc",
[all …]
/art/compiler/optimizing/
Doptimizing_unit_test.h394 HLoadClass* MakeClassLoad(std::optional<dex::TypeIndex> ti = std::nullopt,
397 ti ? *ti : dex::TypeIndex(class_idx_++),
512 HParameterValue* MakeParam(DataType::Type type, std::optional<dex::TypeIndex> ti = std::nullopt) {
514 graph_->GetDexFile(), ti ? *ti : DefaultTypeIndexForType(type), param_count_++, type);
Ddead_code_elimination.cc187 const ReferenceTypeInfo ti = obj->GetReferenceTypeInfo(); in RemoveNonNullControlDependences() local
188 if (!ti.IsValid()) { in RemoveNonNullControlDependences()
205 bound->SetUpperBound(ti, /*can_be_null*/ false); in RemoveNonNullControlDependences()
206 bound->SetReferenceTypeInfo(ti); in RemoveNonNullControlDependences()
/art/runtime/ti/
Dagent.h31 namespace ti {
Dagent.cc31 namespace ti { namespace
/art/test/906-iterate-heap/
Diterate_heap.cc201 size_t utf_byte_count = ti::CountModifiedUtf8BytesInUtf16(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/
Dcmdline_types.h374 struct CmdlineType<std::list<ti::AgentSpec>> : CmdlineTypeParser<std::list<ti::AgentSpec>> {
381 std::list<ti::AgentSpec>& existing_value) {
/art/runtime/
Druntime.h86 namespace ti {
924 const std::list<std::unique_ptr<ti::Agent>>& GetAgents() const { in GetAgents()
1237 std::list<ti::AgentSpec> agent_specs_;
1238 std::list<std::unique_ptr<ti::Agent>> agents_;
Druntime_options.def152 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentLib) // -agentlib:<libname>=<options>
153 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentPath) // -agentpath:<libname>=<options>
Druntime.cc2172 ti::LoadError error; in Init()
2173 std::unique_ptr<ti::Agent> agent = agent_spec.Load(&res, &error, &err); in Init()
2181 case ti::LoadError::kInitializationError: in Init()
2185 case ti::LoadError::kLoadingError: in Init()
2189 case ti::LoadError::kNoError: in Init()
2277 ti::AgentSpec agent_spec(agent_arg); in AttachAgent()
2280 ti::LoadError error; in AttachAgent()
2281 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg); in AttachAgent()
Dparsed_options.cc110 .WithType<std::list<ti::AgentSpec>>().AppendValues() in MakeParser()
DAndroid.bp419 "ti/agent.cc",
/art/libdexfile/dex/
Ddex_file.cc595 const TryItem& ti = try_items[mid]; in FindTryItem() local
596 const uint32_t start = ti.start_addr_; in FindTryItem()
597 const uint32_t end = start + ti.insn_count_; in FindTryItem()
/art/test/913-heaps/
Dheaps.cc596 size_t utf_byte_count = ti::CountModifiedUtf8BytesInUtf16(value, value_length); in Java_art_Test913_followReferencesString()
599 ti::ConvertUtf16ToModifiedUtf8(mod_utf.get(), utf_byte_count, value, value_length); in Java_art_Test913_followReferencesString()
/art/runtime/jni/
Djava_vm_ext.cc1151 for (const std::unique_ptr<ti::Agent>& agent : Runtime::Current()->GetAgents()) { in FindCodeForNativeMethodInAgents()
/art/tools/fuzzer/
DAndroid.bp1158 "host_901-hello-ti-agent_classes.dex",