Searched defs:link (Results 1 - 12 of 12) sorted by relevance

/art/runtime/
H A Dhandle_scope-inl.h31 inline FixedSizeHandleScope<kNumReferences>::FixedSizeHandleScope(BaseHandleScope* link, argument
33 : HandleScope(link, kNumReferences) {
202 current_scope_ = new LocalScopeType(/*link*/ nullptr);
H A Dhandle_scope.h68 BaseHandleScope(BaseHandleScope* link, uint32_t num_references) argument
69 : link_(link),
73 explicit BaseHandleScope(BaseHandleScope* link) argument
74 : link_(link),
119 // Offset of link within HandleScope, used by generated code.
129 // Offset of link within handle scope, used by generated code.
135 static HandleScope* Create(void* storage, BaseHandleScope* link, uint32_t num_references)
137 return new (storage) HandleScope(link, num_references);
165 HandleScope(BaseHandleScope* link, uint32_t num_references) argument
166 : BaseHandleScope(link, num_reference
[all...]
H A Doat_file_assistant_test.cc198 std::string link = scratch_dir + "/link"; local
199 ASSERT_EQ(0, symlink(scratch_dir.c_str(), link.c_str()));
200 dex_location = link + "/OdexUpToDate.jar";
H A Dthread.cc174 DeoptimizationContextRecord* link)
180 link_(link) {}
215 // A link to the previous DeoptimizationContextRecord.
225 StackedShadowFrameRecord* link)
228 link_(link) {}
169 DeoptimizationContextRecord(const JValue& ret_val, bool is_reference, bool from_code, ObjPtr<mirror::Throwable> pending_exception, DeoptimizationMethodType method_type, DeoptimizationContextRecord* link) argument
223 StackedShadowFrameRecord(ShadowFrame* shadow_frame, StackedShadowFrameType type, StackedShadowFrameRecord* link) argument
/art/tools/ahat/src/main/com/android/ahat/
H A DDocString.java50 * Construct a new DocString, initialized with the given link.
52 public static DocString link(URI uri, DocString content) { method in class:DocString
/art/dex2oat/
H A Ddex2oat_image_test.cc190 int link[2]; local
192 if (pipe(link) == -1) {
204 dup2(link[1], STDERR_FILENO);
205 close(link[0]);
206 close(link[1]);
216 close(link[1]);
221 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) {
224 close(link[0]);
H A Ddex2oat_test.cc233 int link[2]; local
235 if (pipe(link) == -1) {
247 dup2(link[1], STDERR_FILENO);
248 close(link[0]);
249 close(link[1]);
259 close(link[1]);
264 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) {
267 close(link[0]);
/art/oatdump/
H A Doatdump_test.h258 int link[2]; local
259 if (pipe(link) == -1) {
267 close(link[0]);
268 close(link[1]);
273 dup2(link[1], STDOUT_FILENO);
274 close(link[0]);
275 close(link[1]);
291 close(link[1]);
292 *pipe_fd = link[0];
/art/patchoat/
H A Dpatchoat_test.cc171 int link[2]; local
173 if (pipe(link) == -1) {
185 dup2(link[1], STDERR_FILENO);
186 close(link[0]);
187 close(link[1]);
197 close(link[1]);
202 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) {
205 close(link[0]);
/art/runtime/interpreter/
H A Dshadow_frame.h59 static ShadowFrame* CreateDeoptimizedFrame(uint32_t num_vregs, ShadowFrame* link, argument
62 return CreateShadowFrameImpl(num_vregs, link, method, dex_pc, memory);
74 #define CREATE_SHADOW_FRAME(num_vregs, link, method, dex_pc) ({ \
78 ShadowFrame::CreateShadowFrameImpl((num_vregs), (link), (method), (dex_pc), \
337 ShadowFrame* link,
341 return new (memory) ShadowFrame(num_vregs, link, method, dex_pc, true);
365 ShadowFrame(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, argument
367 : link_(link),
336 CreateShadowFrameImpl(uint32_t num_vregs, ShadowFrame* link, ArtMethod* method, uint32_t dex_pc, void* memory) argument
/art/compiler/linker/
H A Delf_builder.h102 const Section* link,
111 link_(link),
240 const Section* link,
244 : Section(owner, name, type, flags, link, info, align, entsize), cache_() { }
284 /* link */ nullptr,
308 /* link */ nullptr,
423 const Section* link,
429 : Section(owner, name, type, flags, link, info, align, entsize) {
484 const Section* link,
488 : Section(owner, name, type, flags, link, inf
98 Section(ElfBuilder<ElfTypes>* owner, const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize) argument
236 CachedSection(ElfBuilder<ElfTypes>* owner, const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize) argument
419 AbiflagsSection(ElfBuilder<ElfTypes>* owner, const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize, InstructionSet isa, const InstructionSetFeatures* features) argument
480 BuildIdSection(ElfBuilder<ElfTypes>* owner, const std::string& name, Elf_Word type, Elf_Word flags, const Section* link, Elf_Word info, Elf_Word align, Elf_Word entsize) argument
[all...]
/art/test/083-compiler-regressions/src/
H A DMain.java9686 private LVNTests link = null; field in class:LVNTests
9690 link = l;
9694 LVNTests link1 = lhs.link;
9695 rhs.link = null;
9696 LVNTests link2 = lhs.link;
9704 t.link = new LVNTests();
9713 LVNTests link1 = lhs.link;
9715 LVNTests link2 = lhs.link;
9723 t.link = new LVNTests();

Completed in 280 milliseconds