Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for domacho (0.14 sec)

  1. src/cmd/link/internal/sym/symkind_string.go

    	_ = x[SFUNCTABRELRO-18]
    	_ = x[SELFRELROSECT-19]
    	_ = x[STYPELINK-20]
    	_ = x[SITABLINK-21]
    	_ = x[SSYMTAB-22]
    	_ = x[SPCLNTAB-23]
    	_ = x[SFirstWritable-24]
    	_ = x[SBUILDINFO-25]
    	_ = x[SELFSECT-26]
    	_ = x[SMACHO-27]
    	_ = x[SMACHOGOT-28]
    	_ = x[SWINDOWS-29]
    	_ = x[SELFGOT-30]
    	_ = x[SNOPTRDATA-31]
    	_ = x[SINITARR-32]
    	_ = x[SDATA-33]
    	_ = x[SXCOFFTOC-34]
    	_ = x[SBSS-35]
    	_ = x[SNOPTRBSS-36]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/stmtlines_test.go

    // license that can be found in the LICENSE file.
    
    package ssa_test
    
    import (
    	cmddwarf "cmd/internal/dwarf"
    	"cmd/internal/quoted"
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"fmt"
    	"internal/platform"
    	"internal/testenv"
    	"internal/xcoff"
    	"io"
    	"os"
    	"runtime"
    	"sort"
    	"testing"
    )
    
    func open(path string) (*dwarf.Data, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_trimpath_cgo.txt

    	}
    	sort.Strings(sortedFiles)
    	return sortedFiles, nil
    }
    -- list-dwarf/read_darwin.go --
    package main
    
    import (
    	"debug/dwarf"
    	"debug/macho"
    )
    
    func readDWARF(exePath string) (*dwarf.Data, error) {
    	machoFile, err := macho.Open(exePath)
    	if err != nil {
    		return nil, err
    	}
    	defer machoFile.Close()
    	return machoFile.DWARF()
    }
    -- list-dwarf/read_elf.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/debug/macho/file_test.go

    	}
    	if X86_64_RELOC_BRANCH.GoString() != "macho.X86_64_RELOC_BRANCH" {
    		t.Errorf("got %v, want %v", X86_64_RELOC_BRANCH.GoString(), "macho.X86_64_RELOC_BRANCH")
    	}
    }
    
    func TestTypeString(t *testing.T) {
    	if TypeExec.String() != "Exec" {
    		t.Errorf("got %v, want %v", TypeExec.String(), "Exec")
    	}
    	if TypeExec.GoString() != "macho.Exec" {
    		t.Errorf("got %v, want %v", TypeExec.GoString(), "macho.Exec")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/amd64/versions_test.go

    // which does not respect GOAMD64, so we skip the test if boringcrypto is enabled.
    //go:build !boringcrypto
    
    package amd64_test
    
    import (
    	"bufio"
    	"debug/elf"
    	"debug/macho"
    	"errors"
    	"fmt"
    	"go/build"
    	"internal/testenv"
    	"io"
    	"math"
    	"math/bits"
    	"os"
    	"os/exec"
    	"regexp"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  6. api/go1.3.txt

    pkg debug/macho, const CpuArm = 12
    pkg debug/macho, const CpuArm Cpu
    pkg debug/macho, const CpuPpc = 18
    pkg debug/macho, const CpuPpc Cpu
    pkg debug/macho, const CpuPpc64 = 16777234
    pkg debug/macho, const CpuPpc64 Cpu
    pkg debug/macho, const MagicFat = 3405691582
    pkg debug/macho, const MagicFat uint32
    pkg debug/macho, const TypeBundle = 8
    pkg debug/macho, const TypeBundle Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  7. src/cmd/link/internal/sym/symkind.go

    	SELFRELROSECT
    
    	// Part of .data.rel.ro if it exists, otherwise part of .rodata.
    	STYPELINK
    	SITABLINK
    	SSYMTAB
    	SPCLNTAB
    
    	// Writable sections.
    	SFirstWritable
    	SBUILDINFO
    	SELFSECT
    	SMACHO
    	SMACHOGOT
    	SWINDOWS
    	SELFGOT
    	SNOPTRDATA
    	SINITARR
    	SDATA
    	SXCOFFTOC
    	SBSS
    	SNOPTRBSS
    	SLIBFUZZER_8BIT_COUNTER
    	SCOVERAGE_COUNTER
    	SCOVERAGE_AUXVAR
    	STLSBSS
    	SXREF
    	SMACHOSYMSTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/debug/dwarf/testdata/typedef.c

    // license that can be found in the LICENSE file.
    
    /*
    Linux ELF:
    gcc -gdwarf-2 -m64 -c typedef.c && gcc -gdwarf-2 -m64 -o typedef.elf typedef.o
    
    OS X Mach-O:
    gcc -gdwarf-2 -m64 -c typedef.c -o typedef.macho
    gcc -gdwarf-4 -m64 -c typedef.c -o typedef.macho4
    */
    #include <complex.h>
    
    typedef volatile int* t_ptr_volatile_int;
    typedef const char *t_ptr_const_char;
    typedef long t_long;
    typedef unsigned short t_ushort;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 19:56:24 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/internal/buildid/note.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 buildid
    
    import (
    	"bytes"
    	"debug/elf"
    	"debug/macho"
    	"encoding/binary"
    	"fmt"
    	"io"
    	"io/fs"
    	"os"
    )
    
    func readAligned4(r io.Reader, sz int32) ([]byte, error) {
    	full := (sz + 3) &^ 3
    	data := make([]byte, full)
    	_, err := io.ReadFull(r, data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. src/cmd/nm/nm_test.go

    )
    
    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
    		// "debug/pe/testdata/gcc-amd64-mingw-exec", // no symbols!
    		"debug/pe/testdata/gcc-386-mingw-exec",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top