Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cgoCheckResult (0.2 sec)

  1. src/runtime/linkname.go

    // used in internal/godebug and syscall
    //go:linkname write
    
    // used by cgo
    //go:linkname _cgo_panic_internal
    //go:linkname cgoAlwaysFalse
    //go:linkname cgoUse
    //go:linkname cgoCheckPointer
    //go:linkname cgoCheckResult
    //go:linkname cgoNoCallback
    //go:linkname gobytes
    //go:linkname gostringn
    
    // used in plugin
    //go:linkname doInit
    
    // used in math/bits
    //go:linkname overflowError
    //go:linkname divideError
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 778 bytes
    - Viewed (0)
  2. src/runtime/cgocall.go

    func cgoInRange(p unsafe.Pointer, start, end uintptr) bool {
    	return start <= uintptr(p) && uintptr(p) < end
    }
    
    // cgoCheckResult is called to check the result parameter of an
    // exported Go function. It panics if the result is or contains any
    // other pointer into unpinned Go memory.
    func cgoCheckResult(val any) {
    	if !goexperiment.CgoCheck2 && debug.cgocheck == 0 {
    		return
    	}
    
    	ep := efaceOf(&val)
    	t := ep._type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/issues_test.go

    func _cgo_runtime_cgocall(unsafe.Pointer, uintptr) int32
    
    //go:linkname _cgoCheckPointer runtime.cgoCheckPointer
    func _cgoCheckPointer(interface{}, interface{})
    
    //go:linkname _cgoCheckResult runtime.cgoCheckResult
    func _cgoCheckResult(interface{})
    `
    	testFiles(t, []string{"p.go", "_cgo_gotypes.go"}, [][]byte{[]byte(src), []byte(cgoTypes)}, 0, false, func(cfg *Config) {
    		*boolFieldAddr(cfg, "go115UsesCgo") = true
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    //go:linkname _cgoCheckPointer runtime.cgoCheckPointer
    //go:noescape
    func _cgoCheckPointer(interface{}, interface{})
    
    //go:linkname _cgoCheckResult runtime.cgoCheckResult
    //go:noescape
    func _cgoCheckResult(interface{})
    `
    
    const gccgoGoProlog = `
    func _cgoCheckPointer(interface{}, interface{})
    
    func _cgoCheckResult(interface{})
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/go/types/issues_test.go

    func _cgo_runtime_cgocall(unsafe.Pointer, uintptr) int32
    
    //go:linkname _cgoCheckPointer runtime.cgoCheckPointer
    func _cgoCheckPointer(interface{}, interface{})
    
    //go:linkname _cgoCheckResult runtime.cgoCheckResult
    func _cgoCheckResult(interface{})
    `
    	testFiles(t, []string{"p.go", "_cgo_gotypes.go"}, [][]byte{[]byte(src), []byte(cgoTypes)}, false, func(cfg *Config) {
    		*boolFieldAddr(cfg, "go115UsesCgo") = true
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top