Home
last modified time | relevance | path

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

/art/tools/jvmti-agents/ti-alloc-sample/
DAndroid.bp19 name: "ti-alloc-sample-base-defaults",
34 name: "ti-alloc-sample-defaults",
39 defaults: ["ti-alloc-sample-base-defaults"],
43 name: "ti-alloc-sample-static-defaults",
45 defaults: ["ti-alloc-sample-base-defaults"],
59 defaults: ["ti-alloc-sample-static-defaults"],
64 defaults: ["ti-alloc-sample-defaults"],
71 "ti-alloc-sample-defaults",
/art/test/155-java-set-resolved-type/src/
DTestParameter.java18 public void bar(TestInterface ti) { } in bar() argument
/art/test/901-hello-ti-agent/
DAndroid.bp3 name: "art-run-test-901-hello-ti-agent",
Dexpected.txt1 Loaded Agent for test 901-hello-ti-agent
/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.h26 namespace ti {
/art/tools/jvmti-agents/
DREADME.md15 * [litifast](./ti-fast)
/art/test/
DAndroid.bp323 "ti-agent/agent_common.cc",
324 "ti-agent/agent_startup.cc",
325 "ti-agent/jni_binder.cc",
326 "ti-agent/jvmti_helper.cc",
327 "ti-agent/test_env.cc",
328 "ti-agent/breakpoint_helper.cc",
329 "ti-agent/common_helper.cc",
330 "ti-agent/early_return_helper.cc",
331 "ti-agent/frame_pop_helper.cc",
332 "ti-agent/locals_helper.cc",
[all …]
/art/runtime/ti/
Dagent.h29 namespace ti {
Dagent.cc31 namespace ti { namespace
/art/compiler/optimizing/
Ddead_code_elimination.cc193 ReferenceTypeInfo ti = obj->GetReferenceTypeInfo(); in RemoveNonNullControlDependences() local
195 bound->SetUpperBound(ti, /*can_be_null*/ false); in RemoveNonNullControlDependences()
196 bound->SetReferenceTypeInfo(ti); in RemoveNonNullControlDependences()
/art/test/906-iterate-heap/
Diterate_heap.cc201 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/runtime/
Druntime.h77 namespace ti {
863 const std::list<std::unique_ptr<ti::Agent>>& GetAgents() const { in GetAgents()
1068 std::list<ti::AgentSpec> agent_specs_;
1069 std::list<std::unique_ptr<ti::Agent>> agents_;
Druntime_options.def140 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentLib) // -agentlib:<libname>=<options>
141 RUNTIME_OPTIONS_KEY (std::list<ti::AgentSpec>, AgentPath) // -agentpath:<libname>=<options>
Druntime.cc1757 ti::LoadError error; in Init()
1758 std::unique_ptr<ti::Agent> agent = agent_spec.Load(&res, &error, &err); in Init()
1766 case ti::LoadError::kInitializationError: in Init()
1770 case ti::LoadError::kLoadingError: in Init()
1774 case ti::LoadError::kNoError: in Init()
1856 ti::AgentSpec agent_spec(agent_arg); in AttachAgent()
1859 ti::LoadError error; in AttachAgent()
1860 std::unique_ptr<ti::Agent> agent = agent_spec.Attach(env, class_loader, &res, &error, &error_msg); in AttachAgent()
Dparsed_options.cc108 .WithType<std::list<ti::AgentSpec>>().AppendValues() in MakeParser()
DAndroid.bp242 "ti/agent.cc",
/art/cmdline/
Dcmdline_types.h345 struct CmdlineType<std::list<ti::AgentSpec>> : CmdlineTypeParser<std::list<ti::AgentSpec>> {
352 std::list<ti::AgentSpec>& existing_value) {
/art/libdexfile/dex/
Ddex_file.cc460 const TryItem& ti = try_items[mid]; in FindTryItem() local
461 const uint32_t start = ti.start_addr_; in FindTryItem()
462 const uint32_t end = start + ti.insn_count_; in FindTryItem()
/art/test/913-heaps/
Dheaps.cc589 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/test/utils/
Dregen-test-files205 art-run-test-901-hello-ti-agent
/art/runtime/jni/
Djava_vm_ext.cc1116 for (const std::unique_ptr<ti::Agent>& agent : Runtime::Current()->GetAgents()) { in FindCodeForNativeMethodInAgents()