Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DLLError (0.18 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    func syscall_getprocaddress(handle Handle, procname *uint8) (proc uintptr, err Errno)
    
    // DLLError describes reasons for DLL load failures.
    type DLLError struct {
    	Err     error
    	ObjName string
    	Msg     string
    }
    
    func (e *DLLError) Error() string { return e.Msg }
    
    func (e *DLLError) Unwrap() error { return e.Err }
    
    // A DLL implements access to a single DLL.
    type DLL struct {
    	Name   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  2. src/syscall/dll_windows.go

    package syscall
    
    import (
    	"internal/syscall/windows/sysdll"
    	"sync"
    	"sync/atomic"
    	"unsafe"
    )
    
    // DLLError describes reasons for DLL load failures.
    type DLLError struct {
    	Err     error
    	ObjName string
    	Msg     string
    }
    
    func (e *DLLError) Error() string { return e.Msg }
    
    func (e *DLLError) Unwrap() error { return e.Err }
    
    // Implemented in ../runtime/syscall_windows.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DIOCBSFLUSH", Const, 1},
    		{"DIOCOSFPFLUSH", Const, 1},
    		{"DLL", Type, 0},
    		{"DLL.Handle", Field, 0},
    		{"DLL.Name", Field, 0},
    		{"DLLError", Type, 0},
    		{"DLLError.Err", Field, 0},
    		{"DLLError.Msg", Field, 0},
    		{"DLLError.ObjName", Field, 0},
    		{"DLT_A429", Const, 0},
    		{"DLT_A653_ICM", Const, 0},
    		{"DLT_AIRONET_HEADER", Const, 0},
    		{"DLT_AOS", Const, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (windows-386), type DLL struct, Name string
    pkg syscall (windows-386), type DLLError struct
    pkg syscall (windows-386), type DLLError struct, Err error
    pkg syscall (windows-386), type DLLError struct, Msg string
    pkg syscall (windows-386), type DLLError struct, ObjName string
    pkg syscall (windows-386), type DNSMXData struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (linux-arm-cgo), func Setegid(int) error
    pkg syscall (linux-arm-cgo), func Seteuid(int) error
    pkg syscall (windows-386), method (*DLLError) Unwrap() error
    pkg syscall (windows-386), type SysProcAttr struct, NoInheritHandles bool
    pkg syscall (windows-amd64), method (*DLLError) Unwrap() error
    pkg syscall (windows-amd64), type SysProcAttr struct, NoInheritHandles bool
    pkg testing/fstest, func TestFS(fs.FS, ...string) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top