HomeSort by relevance Sort by last modified time
    Searched defs:Section (Results 176 - 200 of 485) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/
MCCodeView.h 86 /// created at the current address in the current section and the info from
103 // section and if there is information from the last .cv_loc directive that
130 /// The section of the first .cv_loc directive used for this function, or null
132 MCSection *Section = nullptr;
323 /// A collection of MCCVLineEntry for each section.
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/
MCCodeView.h 86 /// created at the current address in the current section and the info from
103 // section and if there is information from the last .cv_loc directive that
130 /// The section of the first .cv_loc directive used for this function, or null
132 MCSection *Section = nullptr;
323 /// A collection of MCCVLineEntry for each section.
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCCodeView.h 86 /// created at the current address in the current section and the info from
103 // section and if there is information from the last .cv_loc directive that
130 /// The section of the first .cv_loc directive used for this function, or null
132 MCSection *Section = nullptr;
323 /// A collection of MCCVLineEntry for each section.
  /prebuilts/go/darwin-x86/src/debug/elf/
file.go 53 Sections []*Section
60 // A SectionHeader represents a single ELF section header.
73 // FileSize is the size of this section in the file in bytes.
74 // If a section is compressed, FileSize is the size of the
80 // A Section represents a single section in an ELF file.
81 type Section struct {
91 // ReaderAt may be nil if the section is not easily available
92 // in a random-access form. For example, a compressed section
101 // Data reads and returns the contents of the ELF section
    [all...]
  /prebuilts/go/linux-x86/src/debug/elf/
file.go 53 Sections []*Section
60 // A SectionHeader represents a single ELF section header.
73 // FileSize is the size of this section in the file in bytes.
74 // If a section is compressed, FileSize is the size of the
80 // A Section represents a single section in an ELF file.
81 type Section struct {
91 // ReaderAt may be nil if the section is not easily available
92 // in a random-access form. For example, a compressed section
101 // Data reads and returns the contents of the ELF section
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/jar/
ManifestParser.java 29 * <p>These files consist of a main section followed by individual sections. Individual sections
61 public List<Section> readAllSections() {
62 List<Section> sections = new ArrayList<>();
63 Section section; local
64 while ((section = readSection()) != null) {
65 sections.add(section);
71 * Returns the next section from this file or {@code null} if end of file has been reached.
73 public Section readSection() {
87 // Read attributes until end of section reache
    [all...]
  /frameworks/base/cmds/incidentd/src/
Section.cpp 19 #include "Section.h"
53 // special section ids
57 // incident section parameters
118 VLOG("Section %d flushed %zu bytes to fd %d with spec %d", id, privacyBuffer.size(),
142 VLOG("Section %d flushed %zu bytes to dropbox %d with spec %d", id, privacyBuffer.size(),
144 // Reports bytes of the section uploaded via dropbox after filtering.
154 Section::Section(int i, int64_t timeoutMs, bool userdebugAndEngOnly, bool deviceSpecific)
160 Section::~Section() {}
405 const WorkerThreadSection* section; member in struct:android::os::incidentd::WorkerThreadData
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
EncryptedDocument.java 53 * encrypted metadata section, followed by an encrypted content section. The
54 * content section always starts at a specific offset {@link #CONTENT_OFFSET} to
57 * Each section is encrypted using AES-128 with a random IV, and authenticated
71 * Offset in file at which content section starts. Magic and metadata
72 * section must fully fit before this offset.
129 * Decrypt and return parsed metadata section from this document.
140 // Only interested in metadata section
166 * Decrypt and read content section of this document, writing it into the
188 // Skip over metadata section
274 final Section section = new Section(); local
312 final Section section = new Section(); local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
FirmwareVolumeBuffer.c 1155 or finds the EFI_SECTION_RAW section within the file and returns its data.
1172 EFI_RAW_SECTION* Section;
1189 // Within the file, we now need to find the EFI_SECTION_RAW section.
1191 Status = FvBufFindSectionByType (File, EFI_SECTION_RAW, (VOID **)&Section);
1196 *RawData = (VOID*)((UINT8 *)Section + FvBufGetSecHdrLen(Section));
1198 FvBufGetSecFileLen (Section) - FvBufGetSecHdrLen(Section);
1219 contain one EFI_FV_FILETYPE_RAW section.
1242 // The section size is the DataSize + the size of the section header
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
FWVolume.c 54 int ComponentsInstance; // highest [components.n] section with a file for this FV
71 int ComponentsInstance; // which [components.n] section it's in
595 SECTION *Section;
718 Section = DSCFileFindSection (DSC, Str);
719 if (Section != NULL) {
727 Error (NULL, 0, 0, Str, "could not find FV section in description file");
733 Section = DSCFileFindSection (DSC, Str);
734 if (Section != NULL) {
741 Error (NULL, 0, 0, Str, "Could not find FV section in description file");
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/
SectionExtraction.c 2 Section Extraction Protocol implementation.
4 Stream database is implemented as a linked list of section streams,
23 the stream in question to be refreshed if and when the required section
66 // StreamBase + OffsetInStream == pointer to section header in stream. The
71 // Then EncapsulatedStreamHandle below is always 0 if the section is NOT an
72 // encapsulating section. Otherwise, it contains the stream handle
80 // If the section REQUIRES an extraction protocol, register for RPN
112 SEP member function. This function creates and returns a new section stream
113 handle to represent the new section stream.
116 @param SectionStreamLength Size in bytes of the section stream.
    [all...]
  /external/deqp/framework/common/
tcuTestLog.hpp 69 * log << TestLog::Section("Details", "Test case details")
95 typedef LogSection Section;
115 TestLog& operator<< (const Section& section);
411 // Section helper that closes section when leaving scope.
418 m_log << TestLog::Section(name, description);
435 inline TestLog& TestLog::operator<< (const Section& section) { section.write(*this); return *this;
    [all...]
  /external/llvm/include/llvm/ObjectYAML/
MachOYAML.h 25 struct Section {
54 std::vector<Section> Sections;
108 std::vector<Section> Sections;
136 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MachOYAML::Section)
191 template <> struct MappingTraits<MachOYAML::Section> {
192 static void mapping(IO &IO, MachOYAML::Section &Section);
284 template <> struct MappingTraits<MachO::section> {
285 static void mapping(IO &IO, MachO::section &LoadCommand);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 63 SectionEntry &Section = Sections[SectionID];
68 uint8_t *LocalAddress = Section.getAddressWithOffset(Offset);
74 assert(TargetSI != Obj.section_end() && "Can't find section for symbol");
148 const SectionEntry &Section = Sections[RE.SectionID];
149 uint8_t *LocalAddress = Section.getAddress() + RE.Offset;
150 uint64_t FinalAddress = Section.getLoadAddress() + RE.Offset;
152 dbgs() << "resolveRelocation Section: " << RE.SectionID
177 // Populate __pointers section.
183 "Pointer table section not supported in 64-bit MachO.");
186 MachO::section Sec32 = Obj.getSection(PTSection.getRawDataRefImpl())
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 188 for (const auto &Section : COFF.sections()) {
189 uint64_t Address = Section.getAddress();
190 uint64_t Size = Section.getSize();
193 return Section;
217 const SectionRef &Section,
219 for (const auto &Relocation : Section.relocations()) {
513 const SectionRef &Section,
516 if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
519 uint64_t SectionVA = Section.getAddress();
569 getRelocatedSymbol(COFF, Section, HandlerOffset * sizeof(uint32_t))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
GlobalValue.h 75 std::string Section; // Section to emit this into, empty mean default
97 bool hasSection() const { return !Section.empty(); }
98 const std::string &getSection() const { return Section; }
99 void setSection(StringRef S) { Section = S; }
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DarwinAsmParser.cpp 34 bool ParseSectionSwitch(const char *Segment, const char *Section,
51 AddDirectiveHandler<&DarwinAsmParser::ParseDirectiveSection>(".section");
59 // Special section directives.
117 // Named Section Directive
297 const char *Section,
301 return TokError("unexpected token in section switching directive");
307 Segment, Section, TAA, StubSize,
314 // alignment on the section (e.g., if one manually inserts bytes into the
315 // section, then just issuing the section switch directive will not realig
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MachObjectWriter.cpp 196 // struct section (68 bytes) or
202 const MCSectionMachO &Section = cast<MCSectionMachO>(SD.getSection());
203 WriteBytes(Section.getSectionName(), 16);
204 WriteBytes(Section.getSegmentName(), 16);
214 unsigned Flags = Section.getTypeAndAttributes();
224 Write32(Section.getStubSize()); // reserved2
376 const MCSectionMachO &Section =
379 if (Section.getType() != MCSectionMachO::S_NON_LAZY_SYMBOL_POINTERS)
382 // Initialize the section indirect symbol base, if necessary.
393 const MCSectionMachO &Section
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
COFFObjectFile.cpp 76 // Verify that the section points to a valid entry in the section table.
79 report_fatal_error("Section was outside of section table.");
83 "Section did not point to the beginning of a section");
121 const coff_section *Section = NULL;
122 if (error_code ec = getSection(symb->SectionNumber, Section))
129 else if (Section)
130 Result = Section->VirtualAddress + symb->Value
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMBuildAttrs.h 21 // AttrType (below) entries in the .ARM.attributes section in the ELF.
28 Section = 2,
  /external/swiftshader/third_party/LLVM/tools/llvm-objdump/
MachODump.cpp 88 struct Section {
105 static Section copySection(const T &Sect) {
106 Section S;
126 static void DumpAddress(uint64_t Address, ArrayRef<Section> Sections,
217 std::vector<Section> &Sections,
229 InMemoryStruct<macho::Section> Sect;
325 std::vector<Section> Sections;
350 ArrayRef<Section> DebugSections = Sections;
351 std::vector<Section> DSYMSections;
354 // get the sections and supply it to the section name parsing machinery
    [all...]
  /external/tensorflow/tensorflow/tools/proto_text/
gen_proto_text_functions_lib.cc 52 // This class has a notion of the current output Section. The Print, Nested,
53 // and Unnest functions apply their operations to the current output section,
73 struct Section {
74 explicit Section(string* str) : str(str) {}
79 // Switches the currently active section to <section>.
80 Generator& SetOutput(Section* section) {
81 cur_ = section;
116 // Appends the print code for a message. May change which section is currentl
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
WasmYAML.h 109 struct Section {
110 Section(SectionType SecType) : Type(SecType) {}
111 virtual ~Section();
117 struct CustomSection : Section {
118 CustomSection() : Section(wasm::WASM_SEC_CUSTOM) {}
119 static bool classof(const Section *S) {
127 struct TypeSection : Section {
128 TypeSection() : Section(wasm::WASM_SEC_TYPE) {}
129 static bool classof(const Section *S) {
136 struct ImportSection : Section {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCAssembler.h 46 MCSection *Section;
180 /// \brief Perform one layout iteration of the given section and return true
229 /// Emit the section contents using the given object writer.
230 void writeSectionData(const MCSection *Section,
273 // Layout all section and prepare them for emission.
300 /// \name Section List Access
398 bool registerSection(MCSection &Section);
421 /// its section and \p FSize is the fragment's size.
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ObjectYAML/
WasmYAML.h 115 struct Section {
116 Section(SectionType SecType) : Type(SecType) {}
117 virtual ~Section();
123 struct CustomSection : Section {
124 CustomSection() : Section(wasm::WASM_SEC_CUSTOM) {}
125 static bool classof(const Section *S) {
132 // The follow is used by the "name" custom section.
134 // name section can support multiple sub-sections.
138 struct TypeSection : Section {
139 TypeSection() : Section(wasm::WASM_SEC_TYPE) {
    [all...]

Completed in 2110 milliseconds

1 2 3 4 5 6 78 91011>>