Home
last modified time | relevance | path

Searched refs:link (Results 1 – 25 of 30) sorted by relevance

12

/art/test/087-gc-after-link/
DAndroid.bp3 // 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/
DDominators.java312 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/
Dhandle_scope.h77 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)
Dhandle_scope-inl.h34 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link) in FixedSizeHandleScope() argument
35 : HandleScope(link, kNumReferences) { in FixedSizeHandleScope()
DAndroid.bp624 // 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/
Dcommon_art_test.cc618 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/
Dbuildbot-teardown-device.sh48 | while read link; do
49 local dir=$(dirname "$link")
/art/tools/ahat/src/main/com/android/ahat/
DMenu.java24 DocString.link(DocString.uri("/"), DocString.text("overview"))
DSummarizer.java161 return DocString.link(uri, text); in summarize()
DSiteHandler.java102 DocString.link( in handle()
DDocString.java52 public static DocString link(URI uri, DocString content) { in link() method in DocString
DObjectHandler.java286 return DocString.link(DocString.uri("rooted"), DocString.text("ROOT")); in printGcRootPath()
/art/test/674-hiddenapi/
Dinfo.txt3 tries to access them with reflection/JNI/MethodHandles or link against them.
/art/libelffile/elf/
Delf_builder.h94 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/
DAndroid.bp52 // TODO(ngeoffray): find a way to link against the libraries in the apex.
/art/artd/
DAndroid.bp132 // APIs. As a workaround, we link against "libdexfile" as a static
/art/libdexfile/
DAndroid.bp543 // 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/
DAndroid.bp116 // Cannot use art_standalone_gtest_defaults because it makes us link
/art/test/
DREADME.atest.md61 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/
DREADME.txt34 * Include a link to /objects in the overview and menu?
/art/libartservice/service/
DAndroid.bp249 // Statically link against system server to allow us to mock system
/art/
DNOTICE58 separable from, or merely link (or bind by name) to the interfaces of,
/art/compiler/
DAndroid.bp328 // When gtests static link a library with LTO enabled, they are also built with LTO.
/art/runtime/oat/
Doat_file_assistant_test.cc553 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/
DMain.java9686 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()

12