Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 184 for elf_ (0.06 sec)

  1. src/debug/elf/reader.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package elf
    
    import (
    	"io"
    	"os"
    )
    
    // errorReader returns error from all operations.
    type errorReader struct {
    	error
    }
    
    func (r errorReader) Read(p []byte) (n int, err error) {
    	return 0, r.error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:06:17 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	extname     map[Sym]string      // stores Extname symbol attribute
    	elfType     map[Sym]elf.SymType // stores elf type symbol property
    	elfSym      map[Sym]int32       // stores elf sym symbol property
    	localElfSym map[Sym]int32       // stores "local" elf sym symbol property
    	symPkg      map[Sym]string      // stores package for symbol, or library for shlib-derived syms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/internal/profile/prune.go

    	for _, loc := range p.Location {
    		var i int
    		for i = len(loc.Line) - 1; i >= 0; i-- {
    			if fn := loc.Line[i].Function; fn != nil && fn.Name != "" {
    				funcName := fn.Name
    				// Account for leading '.' on the PPC ELF v1 ABI.
    				if funcName[0] == '.' {
    					funcName = funcName[1:]
    				}
    				if dropRx.MatchString(funcName) {
    					if keepRx == nil || !keepRx.MatchString(funcName) {
    						break
    					}
    				}
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  4. src/debug/elf/file_test.go

    			{"", 3, 0, 28, 0, 0, "", ""},
    			{"", 3, 0, 29, 0, 0, "", ""},
    			{"crt1.c", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"<command line>", 4, 0, 65521, 0, 0, "", ""},
    			{"<built-in>", 4, 0, 65521, 0, 0, "", ""},
    			{"/usr/src/lib/csu/i386-elf/crti.S", 4, 0, 65521, 0, 0, "", ""},
    			{"crtstuff.c", 4, 0, 65521, 0, 0, "", ""},
    			{"__CTOR_LIST__", 1, 0, 14, 134518436, 0, "", ""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. src/runtime/vdso_linux.go

    // This code was originally based on the sample Linux vDSO parser at
    // https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/tools/testing/selftests/vDSO/parse_vdso.c
    
    // This implements the ELF dynamic linking spec at
    // http://sco.com/developers/gabi/latest/ch5.dynamic.html
    
    // The version section is documented at
    // https://refspecs.linuxfoundation.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/symversion.html
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    // internal linking.
    func elfImportedSymbols(f *elf.File) []elf.ImportedSymbol {
    	syms, _ := f.DynamicSymbols()
    	var imports []elf.ImportedSymbol
    	for _, s := range syms {
    		if (elf.ST_BIND(s.Info) == elf.STB_GLOBAL || elf.ST_BIND(s.Info) == elf.STB_WEAK) && s.Section == elf.SHN_UNDEF {
    			imports = append(imports, elf.ImportedSymbol{
    				Name:    s.Name,
    				Library: s.Library,
    				Version: s.Version,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/nm/nm_test.go

    	return nmExePath
    }
    
    var (
    	nmPathOnce sync.Once
    	nmExePath  string
    	nmPathErr  error
    )
    
    func TestNonGoExecs(t *testing.T) {
    	t.Parallel()
    	testfiles := []string{
    		"debug/elf/testdata/gcc-386-freebsd-exec",
    		"debug/elf/testdata/gcc-amd64-linux-exec",
    		"debug/macho/testdata/gcc-386-darwin-exec.base64",   // golang.org/issue/34986
    		"debug/macho/testdata/gcc-amd64-darwin-exec.base64", // golang.org/issue/34986
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg debug/elf, const EM_68K = 4
    pkg debug/elf, const EM_860 = 7
    pkg debug/elf, const EM_88K = 5
    pkg debug/elf, const EM_960 = 19
    pkg debug/elf, const EM_ALPHA = 36902
    pkg debug/elf, const EM_ALPHA_STD = 41
    pkg debug/elf, const EM_ARC = 45
    pkg debug/elf, const EM_ARM = 40
    pkg debug/elf, const EM_COLDFIRE = 52
    pkg debug/elf, const EM_FR20 = 37
    pkg debug/elf, const EM_H8S = 48
    pkg debug/elf, const EM_H8_300 = 46
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  9. src/go/internal/gccgoimporter/gccgoinstallation_test.go

    	"crypto/rsa",
    	"crypto/sha1",
    	"crypto/sha256",
    	"crypto/sha512",
    	"crypto/subtle",
    	"crypto/tls",
    	"crypto/x509",
    	"crypto/x509/pkix",
    	"database/sql/driver",
    	"database/sql",
    	"debug/dwarf",
    	"debug/elf",
    	"debug/gosym",
    	"debug/macho",
    	"debug/pe",
    	"encoding/ascii85",
    	"encoding/asn1",
    	"encoding/base32",
    	"encoding/base64",
    	"encoding/binary",
    	"encoding/csv",
    	"encoding/gob",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 21 02:25:41 UTC 2021
    - 4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

                if (line.length > 7 && line[3] == "FILE") {
                    def name = line[7]
                    // These are objects added by GCC or Swift toolchains
                    if (!(name in ["crt1.o", "crtstuff.c", "SwiftRT-ELF.cpp"])) {
                        def type = 'F' as char
                        symbols.add(new Symbol(name, type, false))
                    }
                }
            }
            return symbols
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top