Searched refs:dynamic (Results 1 - 12 of 12) sorted by relevance

/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.h54 /// dynamic - the dynamic section of the target machine.
55 /// Use co-variant return type to return its own dynamic section.
56 MipsELFDynamic& dynamic();
58 /// dynamic - the dynamic section of the target machine.
59 /// Use co-variant return type to return its own dynamic section.
60 const MipsELFDynamic& dynamic() const;
H A DMipsLDBackend.cpp115 // initialize .dynamic data
135 "static linkage should not result in a dynamic relocation section");
146 /// dynamic - the dynamic section of the target machine.
147 /// Use co-variant return type to return its own dynamic section.
148 MipsELFDynamic& MipsGNULDBackend::dynamic() function in class:MipsGNULDBackend
154 /// dynamic - the dynamic section of the target machine.
155 /// Use co-variant return type to return its own dynamic section.
156 const MipsELFDynamic& MipsGNULDBackend::dynamic() cons function in class:MipsGNULDBackend
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.h67 /// dynamic - the dynamic section of the target machine.
68 /// Use co-variant return type to return its own dynamic section.
69 ARMELFDynamic& dynamic();
71 /// dynamic - the dynamic section of the target machine.
72 /// Use co-variant return type to return its own dynamic section.
73 const ARMELFDynamic& dynamic() const;
157 /// m_RelDyn - dynamic relocation table of .rel.dyn
159 /// m_RelPLT - dynamic relocatio
[all...]
H A DARMLDBackend.cpp159 // change __exidx_start/_end to local dynamic category
205 // initialize .dynamic data
227 "static linkage should not result in a dynamic relocation section");
235 "static linkage should not result in a dynamic relocation section");
268 /// dynamic - the dynamic section of the target machine.
269 /// Use co-variant return type to return its own dynamic section.
270 ARMELFDynamic& ARMGNULDBackend::dynamic() function in class:ARMGNULDBackend
276 /// dynamic - the dynamic sectio
278 const ARMELFDynamic& ARMGNULDBackend::dynamic() const function in class:ARMGNULDBackend
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.h56 /// dynamic - the dynamic section of the target machine.
57 /// Use co-variant return type to return its own dynamic section.
58 HexagonELFDynamic& dynamic();
60 /// dynamic - the dynamic section of the target machine.
61 /// Use co-variant return type to return its own dynamic section.
62 const HexagonELFDynamic& dynamic() const;
182 /// m_RelaDyn - dynamic relocation table of .rela.dyn
184 /// m_RelaPLT - dynamic relocatio
[all...]
H A DHexagonLDBackend.cpp82 // initialize .dynamic data
99 "static linkage should not result in a dynamic relocation section");
105 "static linkage should not result in a dynamic relocation section");
118 /// dynamic - the dynamic section of the target machine.
119 /// Use co-variant return type to return its own dynamic section.
120 HexagonELFDynamic& HexagonLDBackend::dynamic() function in class:HexagonLDBackend
126 /// dynamic - the dynamic section of the target machine.
127 /// Use co-variant return type to return its own dynamic sectio
128 const HexagonELFDynamic& HexagonLDBackend::dynamic() const function in class:HexagonLDBackend
[all...]
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.h49 /// dynamic - the dynamic section of the target machine.
50 /// Use co-variant return type to return its own dynamic section.
51 X86ELFDynamic& dynamic();
53 /// dynamic - the dynamic section of the target machine.
54 /// Use co-variant return type to return its own dynamic section.
55 const X86ELFDynamic& dynamic() const;
136 /// m_RelDyn - dynamic relocation table of .rel.dyn
138 /// m_RelPLT - dynamic relocatio
[all...]
H A DX86LDBackend.cpp82 // initialize .dynamic data
98 "static linkage should not result in a dynamic relocation section");
104 "static linkage should not result in a dynamic relocation section");
115 /// dynamic - the dynamic section of the target machine.
116 /// Use co-variant return type to return its own dynamic section.
117 X86ELFDynamic& X86GNULDBackend::dynamic() function in class:X86GNULDBackend
123 /// dynamic - the dynamic section of the target machine.
124 /// Use co-variant return type to return its own dynamic sectio
125 const X86ELFDynamic& X86GNULDBackend::dynamic() const function in class:X86GNULDBackend
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DELFReader.cpp528 /// readDynamic - read ELF .dynamic in input dynobj
532 const LDSection* dynamic_sect = pInput.context()->getSection(".dynamic");
534 fatal(diag::err_cannot_read_section) << ".dynamic";
549 const llvm::ELF::Elf32_Dyn* dynamic = local
561 d_tag = dynamic[idx].d_tag;
562 d_val = dynamic[idx].d_un.d_val;
564 d_tag = mcld::bswap32(dynamic[idx].d_tag);
565 d_val = mcld::bswap32(dynamic[idx].d_un.d_val);
583 // if there is no SONAME in .dynamic, then set it from input path
1084 /// readDynamic - read ELF .dynamic i
1105 const llvm::ELF::Elf64_Dyn* dynamic = local
[all...]
/frameworks/compile/mclinker/include/mcld/Target/
H A DGNULDBackend.h125 /// emitNamePools - emit dynamic name pools - .dyntab, .dynstr, .hash
137 /// In ELF executables, this is the length of dynamic linker's path name
209 /// symbolNeedsDynRel - return whether the symbol needs a dynamic relocation
364 /// dynamic - the dynamic section of the target machine.
365 virtual ELFDynamic& dynamic() = 0;
367 /// dynamic - the dynamic section of the target machine.
368 virtual const ELFDynamic& dynamic() const = 0;
484 // ----- dynamic flag
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp380 // TODO: add SectionData for .dynamic section, and then we can get the correct
811 dynamic().reserveNeedEntry();
817 dynamic().reserveNeedEntry();
841 // Because some entries in .dynamic section need information of .dynsym,
844 dynamic().reserveEntries(*file_format);
845 file_format->getDynamic().setSize(dynamic().numOfBytes());
1013 /// emitDynNamePools - emit dynamic name pools - .dyntab, .dynstr, .hash
1091 ELFDynamic::iterator dt_need = dynamic().needBegin();
1118 // initialize value of ELF .dynamic section
1120 // set pointer to SONAME entry in dynamic strin
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DSettings.java90 * Holds information about dynamic settings.
1618 serializer.attribute(null, "type", "dynamic");
2189 final boolean dynamic = "dynamic".equals(ptype);
2191 dynamic ? BasePermission.TYPE_DYNAMIC : BasePermission.TYPE_NORMAL);
2195 if (dynamic) {

Completed in 238 milliseconds