/art/test/087-gc-after-link/ |
D | Android.bp | 3 // Build rules for ART run-test `087-gc-after-link`. 16 name: "art-run-test-087-gc-after-link", 21 ":art-run-test-087-gc-after-link-expected-stdout", 22 ":art-run-test-087-gc-after-link-expected-stderr", 28 name: "art-run-test-087-gc-after-link-expected-stdout", 29 out: ["art-run-test-087-gc-after-link-expected-stdout.txt"], 36 name: "art-run-test-087-gc-after-link-expected-stderr", 37 out: ["art-run-test-087-gc-after-link-expected-stderr.txt"],
|
/art/tools/ahat/src/main/com/android/ahat/dominators/ |
D | Dominators.java | 312 Link<Node> link = dfs.pop(); in computeDominators() local 314 if (link.dst == null) { in computeDominators() 317 link.srcS.maxReachableId = id - 1; in computeDominators() 320 NodeS dstS = (NodeS)graph.getDominatorsComputationState(link.dst); in computeDominators() 325 graph.setDominatorsComputationState(link.dst, dstS); in computeDominators() 327 dstS.node = link.dst; in computeDominators() 329 dstS.inRefIds.add(link.srcS.id); in computeDominators() 330 dstS.domS = link.srcS; in computeDominators() 332 dstS.oldDomS = link.srcS; in computeDominators() 333 dstS.depth = link.srcS.depth + 1; in computeDominators() [all …]
|
/art/runtime/ |
D | handle_scope.h | 77 BaseHandleScope(BaseHandleScope* link, uint32_t capacity) in BaseHandleScope() argument 78 : link_(link), in BaseHandleScope() 82 explicit BaseHandleScope(BaseHandleScope* link) in BaseHandleScope() argument 83 : link_(link), in BaseHandleScope() 173 HandleScope(BaseHandleScope* link, uint32_t capacity) in HandleScope() argument 174 : BaseHandleScope(link, capacity) { in HandleScope() 194 explicit ALWAYS_INLINE FixedSizeHandleScope(BaseHandleScope* link)
|
D | handle_scope-inl.h | 34 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link) in FixedSizeHandleScope() argument 35 : HandleScope(link, kNumReferences) { in FixedSizeHandleScope()
|
D | Android.bp | 624 // A defaults to link libunwindstack statically with necessary dependencies, 717 // Doesn't link libsigchain_fake/libnativeloader (see art_gtest_common_defaults 736 // Doesn't link libsigchain_fake/libnativeloader (see art_gtest_common_defaults 821 // When gtests static link a library with LTO enabled, they are also built with LTO.
|
/art/libartbase/base/ |
D | common_art_test.cc | 618 android::base::unique_fd link[2]; in ForkAndExec() local 625 link[0].reset(link_fd[0]); in ForkAndExec() 626 link[1].reset(link_fd[1]); in ForkAndExec() 644 dup2(link[1].get(), STDOUT_FILENO); in ForkAndExec() 645 dup2(link[1].get(), STDERR_FILENO); in ForkAndExec() 647 link[0].reset(); in ForkAndExec() 648 link[1].reset(); in ForkAndExec() 656 link[1].reset(); in ForkAndExec() 660 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0].get(), buffer, 128)) > 0) { in ForkAndExec() 665 link[0].reset(); in ForkAndExec()
|
/art/tools/ |
D | buildbot-teardown-device.sh | 48 | while read link; do 49 local dir=$(dirname "$link")
|
/art/tools/ahat/src/main/com/android/ahat/ |
D | Menu.java | 24 DocString.link(DocString.uri("/"), DocString.text("overview"))
|
D | Summarizer.java | 161 return DocString.link(uri, text); in summarize()
|
D | SiteHandler.java | 102 DocString.link( in handle()
|
D | DocString.java | 52 public static DocString link(URI uri, DocString content) { in link() method in DocString
|
D | ObjectHandler.java | 286 return DocString.link(DocString.uri("rooted"), DocString.text("ROOT")); in printGcRootPath()
|
/art/test/674-hiddenapi/ |
D | info.txt | 3 tries to access them with reflection/JNI/MethodHandles or link against them.
|
/art/libelffile/elf/ |
D | elf_builder.h | 94 const Section* link, in Section() argument 103 link_(link), in Section() 232 const Section* link, in CachedSection() argument 236 : Section(owner, name, type, flags, link, info, align, entsize), cache_() { } in CachedSection() 418 const Section* link, in BuildIdSection() argument 422 : Section(owner, name, type, flags, link, info, align, entsize), in BuildIdSection()
|
/art/benchmark/ |
D | Android.bp | 52 // TODO(ngeoffray): find a way to link against the libraries in the apex.
|
/art/artd/ |
D | Android.bp | 132 // APIs. As a workaround, we link against "libdexfile" as a static
|
/art/libdexfile/ |
D | Android.bp | 543 // For use by external packages allowed to link in static libdexfile_support. 562 // Using libdexfile_support_static_defaults will link in external libs like 597 // ubsan_minimal. It's needed to be able to link with the prebuilt
|
/art/libnativeloader/ |
D | Android.bp | 116 // Cannot use art_standalone_gtest_defaults because it makes us link
|
/art/test/ |
D | README.atest.md | 61 ART gtests on device, because of build- and link-related limitations (the ART 82 dynamically link them against local ART APEX libraries (in the source tree), and
|
/art/tools/ahat/ |
D | README.txt | 34 * Include a link to /objects in the overview and menu?
|
/art/libartservice/service/ |
D | Android.bp | 249 // Statically link against system server to allow us to mock system
|
/art/ |
D | NOTICE | 58 separable from, or merely link (or bind by name) to the interfaces of,
|
/art/compiler/ |
D | Android.bp | 328 // When gtests static link a library with LTO enabled, they are also built with LTO.
|
/art/runtime/oat/ |
D | oat_file_assistant_test.cc | 553 std::string link = scratch_dir + "/link"; in TEST_P() local 554 ASSERT_EQ(0, symlink(scratch_dir.c_str(), link.c_str())); in TEST_P() 555 dex_location = link + "/OdexUpToDate.jar"; in TEST_P()
|
/art/test/083-compiler-regressions/src/ |
D | Main.java | 9686 private LVNTests link = null; field in LVNTests 9690 link = l; in setLink() 9694 LVNTests link1 = lhs.link; in causeNPE1() 9695 rhs.link = null; in causeNPE1() 9696 LVNTests link2 = lhs.link; in causeNPE1() 9704 t.link = new LVNTests(); in testNPE1() 9713 LVNTests link1 = lhs.link; in causeNPE2() 9715 LVNTests link2 = lhs.link; in causeNPE2() 9723 t.link = new LVNTests(); in testNPE2()
|