/art/tools/ahat/src/main/com/android/ahat/dominators/ |
D | DominatorsComputation.java | 187 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/ |
D | oatdump_test.h | 258 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/ |
D | handle_scope.h | 68 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,
|
D | handle_scope-inl.h | 31 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link, in FixedSizeHandleScope() argument 33 : HandleScope(link, kNumReferences) { in FixedSizeHandleScope()
|
D | oat_file_assistant_test.cc | 198 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()
|
D | thread.cc | 174 DeoptimizationContextRecord* link) in DeoptimizationContextRecord() argument 180 link_(link) {} in DeoptimizationContextRecord() 225 StackedShadowFrameRecord* link) in StackedShadowFrameRecord() argument 228 link_(link) {} in StackedShadowFrameRecord()
|
/art/runtime/interpreter/ |
D | shadow_frame.h | 59 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/ |
D | dex2oat_image_test.cc | 190 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()
|
D | dex2oat_test.cc | 233 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/ |
D | README.md | 4 A fake libart made to satisfy some misbehaving apps that will attempt to link
|
/art/tools/ahat/src/main/com/android/ahat/ |
D | Menu.java | 24 DocString.link(DocString.uri("/"), DocString.text("overview"))
|
D | Summarizer.java | 136 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 | 299 return DocString.link(DocString.uri("rooted"), DocString.text("ROOT")); in printGcRootPath()
|
/art/patchoat/ |
D | patchoat_test.cc | 171 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/ |
D | info.txt | 3 tries to access them with reflection/JNI/MethodHandles or link against them.
|
/art/compiler/linker/ |
D | elf_builder.h | 102 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/ |
D | README.txt | 31 * Include a link to /objects in the overview and menu?
|
/art/tools/ |
D | art | 41 # Get the actual file, $1 is the ART_BINARY_PATH and may be a symbolic link.
|
/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()
|
/art/ |
D | NOTICE | 58 separable from, or merely link (or bind by name) to the interfaces of,
|
/art/runtime/arch/arm/ |
D | quick_entrypoints_arm.S | 650 str lr, [sp, r10] @ Store link register per the compiler ABI
|