Searched defs:sections (Results 1 - 25 of 32) sorted by relevance

12

/external/llvm/include/llvm/ExecutionEngine/
H A DObjectImage.h46 iterator_range<object::section_iterator> sections() const { function in class:llvm::ObjectImage
54 // addresses for sections and common symbols
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dsection.h63 /** Linked list of sections. */
64 /*@reldef@*/ STAILQ_HEAD(yasm_sectionhead, yasm_section) sections; member in struct:yasm_object
130 /** Delete (free allocated memory for) an object. All sections in the
131 * object and all bytecodes within those sections are also deleted.
153 /** Traverses all sections in an object, calling a function on each section.
/external/smack/src/org/xbill/DNS/
H A DSection.java6 * Constants and functions relating to DNS message sections
35 private static Mnemonic sections = new Mnemonic("Message Section", field in class:Section
41 sections.setMaximum(3);
42 sections.setNumericAllowed(true);
44 sections.add(QUESTION, "qd");
45 sections.add(ANSWER, "an");
46 sections.add(AUTHORITY, "au");
47 sections.add(ADDITIONAL, "ad");
66 return sections.getText(i);
72 sections
[all...]
H A DMessage.java11 * and 4 message sections.
25 private List [] sections; field in class:Message
58 sections = new List[4];
106 sections[i] = new ArrayList(count);
110 sections[i].add(rec);
163 if (sections[section] == null)
164 sections[section] = new LinkedList();
166 sections[section].add(r);
176 if (sections[section] != null && sections[sectio
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMapItem.java60 * the contents of the given array of sections, adding it to the
63 * @param sections {@code non-null;} the sections
67 public static void addMap(Section[] sections, argument
69 if (sections == null) {
70 throw new NullPointerException("sections == null");
80 for (Section section : sections) {
H A DDexFile.java97 * {@code non-null;} array of sections in the order they will appear in the
100 private final Section[] sections; field in class:DexFile
130 * This is the list of sections in the order they appear in
133 sections = new Section[] {
498 * add items happen before the calls to the sections that get
515 // Place the sections within the file.
517 int count = sections.length;
521 Section one = sections[i];
530 * Inform the map of all the sections, and add it
534 MapItem.addMap(sections, ma
[all...]
/external/bluetooth/bluedroid/osi/src/
H A Dconfig.c24 list_t *sections; member in struct:config_t
53 config->sections = list_new(section_free);
65 list_free(config->sections);
149 list_append(config->sections, sec);
238 for (const list_node_t *node = list_begin(config->sections); node != list_end(config->sections); node = list_next(node)) {
/external/chromium_org/tools/gyp/tools/emacs/
H A Dgyp.el57 "Regular expression to introduce 'sources' sections")
61 "Regular expression to introduce conditions sections")
65 "Regular expression to introduce variables sections")
69 "Regular expression to introduce 'defines' sections")
73 "Regular expression to introduce 'targets' sections")
76 "Map the sections we are interested in from SECTION to symbol.
103 (defun gyp-parse-sections ()
111 (defun gyp-add-parse-history (point sections)
116 (setq gyp-parse-history (cons (cons point sections) gyp-parse-history)))
134 (sections (gy
[all...]
/external/elfutils/0.153/libdwfl/
H A Dderelocate.c198 possible target sections we care about. */
275 struct dwfl_relocation *sections = mod->reloc_info; local
277 if (idx >= sections->count)
281 *shndxp = elf_ndxscn (sections->refs[idx].scn);
283 return sections->refs[idx].name;
324 struct dwfl_relocation *sections = mod->reloc_info; local
326 /* The sections are sorted by address, so we can use binary search. */
327 size_t l = 0, u = sections->count;
331 if (*addr < sections->refs[idx].start)
333 else if (*addr > sections
[all...]
/external/chromium_org/base/win/
H A Dpe_image_unittest.cc98 sections = 0, enumerator in enum:base::win::Value
218 EXPECT_EQ(GetExpectedValue(sections, os), count);
/external/libsepol/src/
H A Dmodule.c374 size_t ** offsets, uint32_t * sections)
400 nsec = *sections = le32_to_cpu(buf[2]);
403 ERR(file->handle, "too many sections (%u) in module package",
456 /* Flags for which sections have been seen during parsing of module package. */
506 "found multiple file contexts sections in module package (at section %u)",
533 "found multiple seuser sections in module package (at section %u)",
556 "found multiple user_extra sections in module package (at section %u)",
581 "found multiple netfilter contexts sections in module package (at section %u)",
608 "found multiple module sections in module package (at section %u)",
697 "found multiple file contexts sections i
372 module_package_read_offsets(sepol_module_package_t * mod, struct policy_file *file, size_t ** offsets, uint32_t * sections) argument
[all...]
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp215 SectionList *sections = obj_file->GetSectionList(); local
217 const size_t num_sections = sections->GetSize();
221 SectionSP section_sp (sections->GetSectionAtIndex(i));
/external/llvm/include/llvm/Object/
H A DObjectFile.h76 /// the list of sections in the object file.
312 section_iterator_range sections() const { function in class:llvm::object::ObjectFile
H A DELF.h336 Elf_Shdr_Range sections() const { function in class:llvm::object::ELFFile
657 // Scan sections for special sections.
659 for (const Elf_Shdr &Sec : sections()) {
716 // Get string table sections.
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dpkg_genc.c989 IMAGE_SECTION_HEADER sections[2]; member in struct:__anon11444
1120 uprv_strncpy((char *)objHeader.sections[0].Name, ".drectve", 8);
1121 objHeader.sections[0].SizeOfRawData=length;
1122 objHeader.sections[0].PointerToRawData=IMAGE_SIZEOF_FILE_HEADER+2*IMAGE_SIZEOF_SECTION_HEADER;
1123 objHeader.sections[0].Characteristics=IMAGE_SCN_LNK_INFO|IMAGE_SCN_LNK_REMOVE|IMAGE_SCN_ALIGN_1BYTES;
1126 uprv_strncpy((char *)objHeader.sections[1].Name, ".rdata", 6);
1127 objHeader.sections[1].SizeOfRawData=size;
1128 objHeader.sections[1].PointerToRawData=IMAGE_SIZEOF_FILE_HEADER+2*IMAGE_SIZEOF_SECTION_HEADER+length;
1129 objHeader.sections[1].Characteristics=IMAGE_SCN_CNT_INITIALIZED_DATA|IMAGE_SCN_ALIGN_16BYTES|IMAGE_SCN_MEM_READ;
1145 T_FileStream_write(out, &objHeader, objHeader.sections[
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Dpkg_genc.c1002 IMAGE_SECTION_HEADER sections[2]; member in struct:__anon21420
1133 uprv_strncpy((char *)objHeader.sections[0].Name, ".drectve", 8);
1134 objHeader.sections[0].SizeOfRawData=length;
1135 objHeader.sections[0].PointerToRawData=IMAGE_SIZEOF_FILE_HEADER+2*IMAGE_SIZEOF_SECTION_HEADER;
1136 objHeader.sections[0].Characteristics=IMAGE_SCN_LNK_INFO|IMAGE_SCN_LNK_REMOVE|IMAGE_SCN_ALIGN_1BYTES;
1139 uprv_strncpy((char *)objHeader.sections[1].Name, ".rdata", 6);
1140 objHeader.sections[1].SizeOfRawData=size;
1141 objHeader.sections[1].PointerToRawData=IMAGE_SIZEOF_FILE_HEADER+2*IMAGE_SIZEOF_SECTION_HEADER+length;
1142 objHeader.sections[1].Characteristics=IMAGE_SCN_CNT_INITIALIZED_DATA|IMAGE_SCN_ALIGN_16BYTES|IMAGE_SCN_MEM_READ;
1158 T_FileStream_write(out, &objHeader, objHeader.sections[
[all...]
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp123 typedef std::vector<std::unique_ptr<COFFSection>> sections; typedef in class:__anon25058::WinCOFFObjectWriter
132 sections Sections;
354 report_fatal_error("two sections have the same comdat");
474 report_fatal_error("conflicting sections for symbol");
869 // Fixup associative COMDAT sections.
963 sections::iterator i, ie;
/external/valgrind/main/VEX/unused/
H A Dlinker.c94 Section* sections; member in struct:_ObjectCode
729 /* Process the relocation sections. */
732 /* Skip sections called ".rel.stab". These appear to contain
1018 relocations in various debug-info sections. So we'd better
1200 oc->sections = NULL;
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_controller_unittest.cc1114 // Fill in the shipping and credit card sections with new data.
1393 // sections.
2954 DialogSection sections[] = { SECTION_CC_BILLING, SECTION_SHIPPING }; local
2955 for (size_t i = 0; i < arraysize(sections); ++i) {
2957 controller()->RequestedFieldsForSection(sections[i]);
2959 EXPECT_TRUE(controller()->InputIsEditable(inputs[j], sections[i]));
2977 for (size_t i = 0; i < arraysize(sections); ++i) {
2979 controller()->RequestedFieldsForSection(sections[i]);
2983 EXPECT_FALSE(controller()->InputIsEditable(inputs[j], sections[i]));
2985 EXPECT_TRUE(controller()->InputIsEditable(inputs[j], sections[
[all...]
/external/elfutils/0.153/src/
H A Dunstrip.c317 Because of this, the related sections can shrink in the stripped
392 /* Update relocation sections using the symbol table. */
530 /* Adjust all the relocation sections in the file. */
549 sections, even the unallocated ones. To match it as closely as
550 possible, add in section symbols for the added sections. */
695 /* Sort all non-allocated sections last. */
872 sections_match (const struct section *sections, size_t i,
875 return (sections[i].shdr.sh_flags == shdr->sh_flags
876 && (sections[i].shdr.sh_size == shdr->sh_size
877 || (sections[
870 sections_match(const struct section *sections, size_t i, const GElf_Shdr *shdr, const char *name) argument
882 find_alloc_section(const GElf_Shdr *shdr, GElf_Addr bias, const char *name, struct section sections[], size_t nalloc) argument
925 find_alloc_sections_prelink(Elf *debug, Elf_Data *debug_shstrtab, Elf *main, const GElf_Ehdr *main_ehdr, Elf_Data *main_shstrtab, GElf_Addr bias, struct section *sections, size_t nalloc, size_t nsections) argument
1155 new_shstrtab(Elf *unstripped, size_t unstripped_shnum, Elf_Data *shstrtab, size_t unstripped_shstrndx, struct section *sections, size_t stripped_shnum, struct Ebl_Strtab *strtab) argument
1244 struct section sections[stripped_shnum - 1]; local
[all...]
/external/lldb/source/Core/
H A DModule.cpp1129 // Populate m_unified_sections_ap with sections from objfile.
1142 // Populate m_unified_sections_ap with sections from objfile.
1257 // Remove any sections in the unified section list that come from the current symbol vendor.
1300 SectionList *sections = GetSectionList(); local
1301 if (sections != NULL)
1303 size_t num_sections = sections->GetSize();
1306 SectionSP section_sp = sections->GetSectionAtIndex(sect_idx);
1414 // Iterate through the object file sections to find the
1418 // Only load non-thread specific sections when given a slide
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp458 // We now know the slide amount, so go through all sections
479 // __LINKEDIT sections from files in the shared cache
482 // "Section" objects, and "true" for all other sections.
508 // to apply this more generally to more sections that have no
847 SectionList *sections = objfile->GetSectionList(); local
848 if (sections)
851 Section *commpage_section = sections->FindSectionByName(commpage_dbstr).get();
974 // since that has sections correctly filled in.
1279 // All sections listed in the dyld image info structure will all
1289 // Iterate through the object file sections t
[all...]
/external/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp709 // never conflict with any of the sections.
714 section_type, // This section is a container of other sections.
747 // segments, sections, etc).
765 SectionList *sections = GetSectionList(); local
766 if (sections)
767 sections->Dump(s, NULL, true, UINT32_MAX);
/external/valgrind/main/perf/
H A Dtinycc.c714 /* Version definition sections. */
1171 /* Entries found in sections of type SHT_MIPS_GPTAB. */
1187 /* Entry found in sections of type SHT_MIPS_REGINFO. */
1196 /* Entries found in sections of type SHT_MIPS_OPTIONS. */
1386 /* Entries found in sections of type SHT_MIPS_LIBLIST. */
1417 /* Entries found in sections of type SHT_MIPS_CONFLICT. */
2332 static Section *text_section, *data_section, *bss_section; /* predefined sections */
2338 /* bound check related sections */
2341 /* symbol sections */
2344 /* debug sections */
2430 Section **sections; member in struct:TCCState
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 779 milliseconds

12