Home
last modified time | relevance | path

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

/art/tools/ahat/src/main/com/android/ahat/dominators/
DDominatorsComputation.java187 Link link = dfs.pop(); in computeDominators() local
188 NodeS dstS = (NodeS)link.dst.getDominatorsComputationState(); in computeDominators()
193 dstS.node = link.dst; in computeDominators()
195 dstS.domid = link.srcS.id; in computeDominators()
196 dstS.domS = link.srcS; in computeDominators()
197 dstS.srcS = link.srcS; in computeDominators()
200 link.dst.setDominatorsComputationState(dstS); in computeDominators()
202 for (Node child : link.dst.getReferencesForDominators()) { in computeDominators()
208 NodeS srcS = link.srcS; in computeDominators()
215 dstS.seenid = link.srcS.id; in computeDominators()
/art/oatdump/
Doatdump_test.h258 int link[2]; in ForkAndExec() local
259 if (pipe(link) == -1) { in ForkAndExec()
267 close(link[0]); in ForkAndExec()
268 close(link[1]); in ForkAndExec()
273 dup2(link[1], STDOUT_FILENO); in ForkAndExec()
274 close(link[0]); in ForkAndExec()
275 close(link[1]); in ForkAndExec()
291 close(link[1]); in ForkAndExec()
292 *pipe_fd = link[0]; in ForkAndExec()
/art/runtime/
Dhandle_scope.h68 BaseHandleScope(BaseHandleScope* link, uint32_t num_references) in BaseHandleScope() argument
69 : link_(link), in BaseHandleScope()
73 explicit BaseHandleScope(BaseHandleScope* link) in BaseHandleScope() argument
74 : link_(link), in BaseHandleScope()
135 static HandleScope* Create(void* storage, BaseHandleScope* link, uint32_t num_references) in Create() argument
137 return new (storage) HandleScope(link, num_references); in Create()
165 HandleScope(BaseHandleScope* link, uint32_t num_references) in HandleScope() argument
166 : BaseHandleScope(link, num_references) {} in HandleScope()
240 explicit ALWAYS_INLINE FixedSizeHandleScope(BaseHandleScope* link,
Dhandle_scope-inl.h31 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link, in FixedSizeHandleScope() argument
33 : HandleScope(link, kNumReferences) { in FixedSizeHandleScope()
Doat_file_assistant_test.cc198 std::string link = scratch_dir + "/link"; in TEST_F() local
199 ASSERT_EQ(0, symlink(scratch_dir.c_str(), link.c_str())); in TEST_F()
200 dex_location = link + "/OdexUpToDate.jar"; in TEST_F()
Dthread.cc174 DeoptimizationContextRecord* link) in DeoptimizationContextRecord() argument
180 link_(link) {} in DeoptimizationContextRecord()
225 StackedShadowFrameRecord* link) in StackedShadowFrameRecord() argument
228 link_(link) {} in StackedShadowFrameRecord()
/art/runtime/interpreter/
Dshadow_frame.h59 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link, in CreateDeoptimizedFrame() argument
62 return CreateShadowFrameImpl(num_vregs, link, method, dex_pc, memory); in CreateDeoptimizedFrame()
74 #define CREATE_SHADOW_FRAME(num_vregs, link, method, dex_pc) ({ \ argument
78 ShadowFrame::CreateShadowFrameImpl((num_vregs), (link), (method), (dex_pc), \
337 ShadowFrame* link, in CreateShadowFrameImpl() argument
341 return new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true); in CreateShadowFrameImpl()
365 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, in ShadowFrame() argument
367 : link_(link), in ShadowFrame()
/art/dex2oat/
Ddex2oat_image_test.cc190 int link[2]; in RunDex2Oat() local
192 if (pipe(link) == -1) { in RunDex2Oat()
204 dup2(link[1], STDERR_FILENO); in RunDex2Oat()
205 close(link[0]); in RunDex2Oat()
206 close(link[1]); in RunDex2Oat()
216 close(link[1]); in RunDex2Oat()
221 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) { in RunDex2Oat()
224 close(link[0]); in RunDex2Oat()
Ddex2oat_test.cc233 int link[2]; in Dex2Oat() local
235 if (pipe(link) == -1) { in Dex2Oat()
247 dup2(link[1], STDERR_FILENO); in Dex2Oat()
248 close(link[0]); in Dex2Oat()
249 close(link[1]); in Dex2Oat()
259 close(link[1]); in Dex2Oat()
264 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) { in Dex2Oat()
267 close(link[0]); in Dex2Oat()
/art/libart_fake/
DREADME.md4 A fake libart made to satisfy some misbehaving apps that will attempt to link
/art/tools/ahat/src/main/com/android/ahat/
DMenu.java24 DocString.link(DocString.uri("/"), DocString.text("overview"))
DSummarizer.java136 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.java299 return DocString.link(DocString.uri("rooted"), DocString.text("ROOT")); in printGcRootPath()
/art/patchoat/
Dpatchoat_test.cc171 int link[2]; in RunDex2OatOrPatchoat() local
173 if (pipe(link) == -1) { in RunDex2OatOrPatchoat()
185 dup2(link[1], STDERR_FILENO); in RunDex2OatOrPatchoat()
186 close(link[0]); in RunDex2OatOrPatchoat()
187 close(link[1]); in RunDex2OatOrPatchoat()
197 close(link[1]); in RunDex2OatOrPatchoat()
202 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) { in RunDex2OatOrPatchoat()
205 close(link[0]); in RunDex2OatOrPatchoat()
/art/test/674-hiddenapi/
Dinfo.txt3 tries to access them with reflection/JNI/MethodHandles or link against them.
/art/compiler/linker/
Delf_builder.h102 const Section* link, in Section() argument
111 link_(link), in Section()
240 const Section* link, in CachedSection() argument
244 : Section(owner, name, type, flags, link, info, align, entsize), cache_() { } in CachedSection()
423 const Section* link, in AbiflagsSection() argument
429 : Section(owner, name, type, flags, link, info, align, entsize) { in AbiflagsSection()
484 const Section* link, in BuildIdSection() argument
488 : Section(owner, name, type, flags, link, info, align, entsize), in BuildIdSection()
/art/tools/ahat/
DREADME.txt31 * Include a link to /objects in the overview and menu?
/art/tools/
Dart41 # Get the actual file, $1 is the ART_BINARY_PATH and may be a symbolic link.
/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()
/art/
DNOTICE58 separable from, or merely link (or bind by name) to the interfaces of,
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S650 str lr, [sp, r10] @ Store link register per the compiler ABI