Home
last modified time | relevance | path

Searched refs:Section (Results 1 – 6 of 6) sorted by relevance

/tools/dexter/slicer/export/slicer/
Dwriter.h33 class Section : public slicer::Buffer {
35 explicit Section(dex::u2 mapEntryType) : map_entry_type_(mapEntryType) {} in Section() function
36 ~Section() = default;
38 Section(const Section&) = delete;
39 Section& operator=(const Section&) = delete;
157 Section string_data;
158 Section type_lists;
159 Section debug_info;
160 Section encoded_arrays;
161 Section code;
[all …]
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v1/
DV1SchemeVerifier.java179 public static Pair<ManifestParser.Section, Map<String, ManifestParser.Section>> parseManifest( in parseManifest()
182 ManifestParser.Section manifestMainSection = manifest.readSection(); in parseManifest()
183 List<ManifestParser.Section> manifestIndividualSections = manifest.readAllSections(); in parseManifest()
184 Map<String, ManifestParser.Section> entryNameToManifestSection = in parseManifest()
187 for (ManifestParser.Section manifestSection : manifestIndividualSections) { in parseManifest()
267 Pair<ManifestParser.Section, Map<String, ManifestParser.Section>> manifestSections = in verify()
274 ManifestParser.Section manifestMainSection = manifestSections.getFirst(); in verify()
275 Map<String, ManifestParser.Section> entryNameToManifestSection = in verify()
834 ManifestParser.Section manifestMainSection, in verifySigFileAgainstManifest()
835 Map<String, ManifestParser.Section> entryNameToManifestSection, in verifySigFileAgainstManifest()
[all …]
/tools/apksig/src/main/java/com/android/apksig/internal/jar/
DManifestParser.java61 public List<Section> readAllSections() { in readAllSections()
62 List<Section> sections = new ArrayList<>(); in readAllSections()
63 Section section; in readAllSections()
73 public Section readSection() { in readSection()
100 return new Section(sectionStartOffset, sectionSizeBytes, attrs); in readSection()
288 public static class Section { class in ManifestParser
301 public Section(int startOffset, int sizeBytes, List<Attribute> attrs) { in Section() method in ManifestParser.Section
/tools/dexter/slicer/
Dwriter.cc41 static void WriteEncodedValueHeader(dex::u1 type, int arg, Section& data) { in WriteEncodedValueHeader()
50 static void WriteIntValue(dex::u1 type, T value, Section& data) { in WriteIntValue()
76 static void WriteFloatValue(dex::u1 type, T value, Section& data) { in WriteFloatValue()
97 static void WriteEncodedArray(const ir::EncodedArray* ir_array, Section& data);
98 static void WriteAnnotation(const ir::Annotation* ir_annotation, Section& data);
101 static void WriteEncodedValue(const ir::EncodedValue* ir_value, Section& data) { in WriteEncodedValue()
200 static void WriteAnnotation(const ir::Annotation* ir_annotation, Section& data) { in WriteAnnotation()
210 static void WriteEncodedArray(const ir::EncodedArray* ir_array, Section& data) { in WriteEncodedArray()
/tools/external/fat32lib/
DNOTICE61 …y, and copy and distribute such modifications or work under the terms of Section 1 above, provided…
81 4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in o…
87 … uses the library". The executable is therefore covered by this License. Section 6 states terms fo…
91 …cutables containing this object code plus portions of the Library will still fall under Section 6.)
93 …ect code for the work under the terms of Section 6. Any executables containing that work also fall…
/tools/apksig/src/main/java/com/android/apksig/
DDefaultApkSignerEngine.java605 Pair<ManifestParser.Section, Map<String, ManifestParser.Section>> sections = in initWith()
608 for (Map.Entry<String, ManifestParser.Section> entry : sections.getSecond().entrySet()) { in initWith()