Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for st_fstype (0.19 sec)

  1. src/runtime/defs1_solaris_amd64.go

    	st_uid     uint32
    	st_gid     uint32
    	st_rdev    uint64
    	st_size    int64
    	st_atim    timespec
    	st_mtim    timespec
    	st_ctim    timespec
    	st_blksize int32
    	pad_cgo_0  [4]byte
    	st_blocks  int64
    	st_fstype  [16]int8
    }
    
    // created by cgo -cdefs and then converted to Go
    // cgo -cdefs defs_solaris.go defs_solaris_amd64.go
    
    const (
    	_REG_RDI    = 0x8
    	_REG_RSI    = 0x9
    	_REG_RDX    = 0xc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:40:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/MimeMap.java

                            break;
                        } else if( ch == '#' ) {
                            state = ST_COMM;
                            break;
                        }
                        state = ST_TYPE;
                    case ST_TYPE:
                        if( ch == ' ' || ch == '\t' ) {
                            state = ST_GAP;
                        } else {
                            type[t++] = ch;
                        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/proxyconfig.go

    			if podName, podNamespace, err = getPodName(ctx, args[0]); err != nil {
    				return err
    			}
    			if statsType == "" || statsType == "server" {
    				stats, err = setupEnvoyServerStatsConfig(kubeClient, podName, podNamespace, outputFormat)
    				if err != nil {
    					return err
    				}
    			} else if statsType == "cluster" || statsType == "clusters" {
    				stats, err = setupEnvoyClusterStatsConfig(kubeClient, podName, podNamespace, outputFormat)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadelf/ldelf.go

    		elfsym.name = cstring(elfobj.symstr.base[b.Name:])
    		elfsym.value = b.Value
    		elfsym.size = b.Size
    		elfsym.shndx = elf.SectionIndex(b.Shndx)
    		elfsym.bind = elf.ST_BIND(b.Info)
    		elfsym.type_ = elf.ST_TYPE(b.Info)
    		elfsym.other = b.Other
    	} else {
    		b := new(elf.Sym32)
    		binary.Read(bytes.NewReader(elfobj.symtab.base[i*elf.Sym32Size:(i+1)*elf.Sym32Size]), elfobj.e, b)
    		elfsym.name = cstring(elfobj.symstr.base[b.Name:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	}
    
    	for _, elfsym := range syms {
    		if elf.ST_TYPE(elfsym.Info) == elf.STT_NOTYPE || elf.ST_TYPE(elfsym.Info) == elf.STT_SECTION {
    			continue
    		}
    
    		// Symbols whose names start with "type:" are compiler generated,
    		// so make functions with that prefix internal.
    		ver := 0
    		symname := elfsym.Name // (unmangled) symbol name
    		if elf.ST_TYPE(elfsym.Info) == elf.STT_FUNC && strings.HasPrefix(elfsym.Name, "type:") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	Name  uint32
    	Value uint32
    	Size  uint32
    	Info  uint8
    	Other uint8
    	Shndx uint16
    }
    
    const Sym32Size = 16
    
    func ST_BIND(info uint8) SymBind { return SymBind(info >> 4) }
    func ST_TYPE(info uint8) SymType { return SymType(info & 0xF) }
    func ST_INFO(bind SymBind, typ SymType) uint8 {
    	return uint8(bind)<<4 | uint8(typ)&0xf
    }
    func ST_VISIBILITY(other uint8) SymVis { return SymVis(other & 3) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"STT_TLS", Const, 0},
    		{"STV_DEFAULT", Const, 0},
    		{"STV_HIDDEN", Const, 0},
    		{"STV_INTERNAL", Const, 0},
    		{"STV_PROTECTED", Const, 0},
    		{"ST_BIND", Func, 0},
    		{"ST_INFO", Func, 0},
    		{"ST_TYPE", Func, 0},
    		{"ST_VISIBILITY", Func, 0},
    		{"Section", Type, 0},
    		{"Section.ReaderAt", Field, 0},
    		{"Section.SectionHeader", Field, 0},
    		{"Section32", Type, 0},
    		{"Section32.Addr", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg debug/elf, func R_TYPE32(uint32) uint32
    pkg debug/elf, func R_TYPE64(uint64) uint32
    pkg debug/elf, func ST_BIND(uint8) SymBind
    pkg debug/elf, func ST_INFO(SymBind, SymType) uint8
    pkg debug/elf, func ST_TYPE(uint8) SymType
    pkg debug/elf, func ST_VISIBILITY(uint8) SymVis
    pkg debug/elf, method (*File) Close() error
    pkg debug/elf, method (*File) DWARF() (*dwarf.Data, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top