Home
last modified time | relevance | path

Searched refs:textSection (Results 1 – 3 of 3) sorted by relevance

/external/boringssl/src/util/fipstools/
Dbreak-hash.go43 var textSection *elf.Section
48 textSection = section
53 if textSection == nil {
98 if n, err := textSection.ReadAt(moduleText, int64(start-textSection.Addr)); err != nil {
99 …Errorf("failed to read from module start (at %d of %d) in .text: %s", start, textSection.Size, err)
129 fmt.Printf("Found start of module at offset 0x%x (VMA 0x%x):\n", start-textSection.Addr, start)
/external/boringssl/src/util/fipstools/inject_hash/
Dinject_hash.go97 var textSection, rodataSection *elf.Section
103 textSection = section
110 if textSection == nil {
127 base = textSection.Addr
184 if max := textSection.Size; *textStart > max || *textStart > *textEnd || *textEnd > max {
196 text := textSection.Open()
/external/llvm-project/lld/unittests/MachOTests/
DMachONormalizedFileToAtomsTests.cpp38 Section textSection; in TEST() local
41 textSection.content = llvm::makeArrayRef(contentBytes, contentSize); in TEST()
42 f.sections.push_back(textSection); in TEST()