Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for RegEnumKeyEx (0.17 sec)

  1. src/internal/syscall/windows/registry/key.go

    	if err != nil {
    		return 0, err
    	}
    	return Key(subkey), nil
    }
    
    // ReadSubKeyNames returns the names of subkeys of key k.
    func (k Key) ReadSubKeyNames() ([]string, error) {
    	// RegEnumKeyEx must be called repeatedly and to completion.
    	// During this time, this goroutine cannot migrate away from
    	// its current thread. See #49320.
    	runtime.LockOSThread()
    	defer runtime.UnlockOSThread()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    // Successive calls to this API must happen on the same OS thread,
    // so call [runtime.LockOSThread] before calling this function.
    func RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) {
    	return regEnumKeyEx(key, index, name, nameLen, reserved, class, classLen, lastWriteTime)
    }
    
    func GetStartupInfo(startupInfo *StartupInfo) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_windows.go

    	return
    }
    
    func RegCloseKey(key Handle) (regerrno error) {
    	r0, _, _ := Syscall(procRegCloseKey.Addr(), 1, uintptr(key), 0, 0)
    	if r0 != 0 {
    		regerrno = Errno(r0)
    	}
    	return
    }
    
    func regEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegEnumKeyExW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    func RegCloseKey(key Handle) (regerrno error) {
    	r0, _, _ := syscall.Syscall(procRegCloseKey.Addr(), 1, uintptr(key), 0, 0)
    	if r0 != 0 {
    		regerrno = syscall.Errno(r0)
    	}
    	return
    }
    
    func RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ReadDirent", Func, 0},
    		{"ReadFile", Func, 0},
    		{"Readlink", Func, 0},
    		{"Reboot", Func, 0},
    		{"Recvfrom", Func, 0},
    		{"Recvmsg", Func, 0},
    		{"RegCloseKey", Func, 0},
    		{"RegEnumKeyEx", Func, 0},
    		{"RegOpenKeyEx", Func, 0},
    		{"RegQueryInfoKey", Func, 0},
    		{"RegQueryValueEx", Func, 0},
    		{"RemoveDirectory", Func, 0},
    		{"Removexattr", Func, 1},
    		{"Rename", Func, 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)
  7. api/go1.txt

    pkg syscall (windows-386), func Recvfrom(Handle, []uint8, int) (int, Sockaddr, error)
    pkg syscall (windows-386), func RegCloseKey(Handle) error
    pkg syscall (windows-386), func RegEnumKeyEx(Handle, uint32, *uint16, *uint32, *uint32, *uint16, *uint32, *Filetime) error
    pkg syscall (windows-386), func RegOpenKeyEx(Handle, *uint16, uint32, uint32, *Handle) 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