Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 93 for GetData (0.37 sec)

  1. src/cmd/link/internal/loadxcoff/ldxcoff.go

    		case xcoff.STYP_BSS:
    			s.SetType(sym.SNOPTRBSS)
    		}
    
    		s.SetSize(int64(lds.Size))
    		if s.Type() != sym.SNOPTRBSS {
    			data, err := lds.Section.Data()
    			if err != nil {
    				return nil, err
    			}
    			s.SetData(data)
    		}
    
    		lds.sym = symbol
    		ldSections = append(ldSections, lds)
    	}
    
    	// sx = symbol from file
    	// s = symbol for loader
    	for _, sx := range f.Symbols {
    		// get symbol type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/arm/asm.go

    	o3 := uint32(t)                            // WORD $target
    	arch.ByteOrder.PutUint32(P, o1)
    	arch.ByteOrder.PutUint32(P[4:], o2)
    	arch.ByteOrder.PutUint32(P[8:], o3)
    	tramp.SetData(P)
    
    	if linkmode == ld.LinkExternal || ldr.SymValue(target) == 0 {
    		r, _ := tramp.AddRel(objabi.R_ADDR)
    		r.SetOff(8)
    		r.SetSiz(4)
    		r.SetSym(target)
    		r.SetAdd(offset)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	}
    
    	if err = getmsg(fd, clp, datap, &flags); err != nil {
    		return nil, nil, 0, err
    	}
    
    	if len(cl) > 0 {
    		retCl = cl[:clp.Len]
    	}
    	if len(data) > 0 {
    		retData = data[:datap.Len]
    	}
    	return retCl, retData, flags, nil
    }
    
    func IoctlSetIntRetInt(fd int, req int, arg int) (int, error) {
    	return ioctlRet(fd, req, uintptr(arg))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/symtab.go

    		for _, l := range ctxt.Library {
    			s := ldr.CreateSymForUpdate("go:link.pkghashbytes."+l.Pkg, 0)
    			s.SetType(sym.SRODATA)
    			s.SetSize(int64(len(l.Fingerprint)))
    			s.SetData(l.Fingerprint[:])
    			str := ldr.CreateSymForUpdate("go:link.pkghash."+l.Pkg, 0)
    			str.SetType(sym.SRODATA)
    			str.AddAddr(ctxt.Arch, s.Sym())
    			str.AddUint(ctxt.Arch, uint64(len(l.Fingerprint)))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/symbolbuilder.go

    // Setters for symbol properties.
    
    func (sb *SymbolBuilder) SetType(kind sym.SymKind)   { sb.kind = kind }
    func (sb *SymbolBuilder) SetSize(size int64)         { sb.size = size }
    func (sb *SymbolBuilder) SetData(data []byte)        { sb.data = data }
    func (sb *SymbolBuilder) SetOnList(v bool)           { sb.l.SetAttrOnList(sb.symIdx, v) }
    func (sb *SymbolBuilder) SetExternal(v bool)         { sb.l.SetAttrExternal(sb.symIdx, v) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// and strings with formats are allowed.
    	// If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string.
    	// Must not point to metdata fields.
    	// Required.
    	JSONPath string
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    type CustomResourceColumnDefinition struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm64/asm.go

    	o3 := uint32(0xd61f0200) // br x16
    	ctxt.Arch.ByteOrder.PutUint32(P, o1)
    	ctxt.Arch.ByteOrder.PutUint32(P[4:], o2)
    	ctxt.Arch.ByteOrder.PutUint32(P[8:], o3)
    	tramp.SetData(P)
    
    	r, _ := tramp.AddRel(objabi.R_ADDRARM64)
    	r.SetSiz(8)
    	r.SetSym(target)
    	r.SetAdd(offset)
    }
    
    // generate a trampoline to target+offset for a DYNIMPORT symbol via GOT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadpe/ldpe.go

    		}
    
    		if bld.Type() != sym.SNOPTRBSS {
    			data, err := sect.Data()
    			if err != nil {
    				return nil, err
    			}
    			state.sectdata[sect] = data
    			bld.SetData(data)
    		}
    		bld.SetSize(int64(sect.Size))
    		state.sectsyms[sect] = s
    		if sect.Name == ".rsrc" || strings.HasPrefix(sect.Name, ".rsrc$") {
    			ls.Resources = append(ls.Resources, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	sbld.SetType(sym.SRODATA)
    
    	// Don't reset the variable's size. String variable usually has size of
    	// 2*PtrSize, but in ASAN build it can be larger due to red zone.
    	// (See issue 56175.)
    	bld.SetData(make([]byte, arch.PtrSize*2))
    	bld.SetReadOnly(false)
    	bld.ResetRelocs()
    	bld.SetAddrPlus(arch, 0, sbld.Sym(), 0)
    	bld.SetUint(arch, int64(arch.PtrSize), uint64(len(value)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// and strings with formats are allowed.
    	// If jsonPath refers to absent field in a resource, the jsonPath evaluates to an empty string.
    	// Must not point to metdata fields.
    	// Required.
    	JSONPath string `json:"jsonPath" protobuf:"bytes,1,opt,name=jsonPath"`
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top