Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for GetTokenInformation (0.41 sec)

  1. src/syscall/security_windows.go

    	PrimaryGroup *SID
    }
    
    //sys	OpenProcessToken(h Handle, access uint32, token *Token) (err error) = advapi32.OpenProcessToken
    //sys	GetTokenInformation(t Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) = advapi32.GetTokenInformation
    //sys	GetUserProfileDirectory(t Token, dir *uint16, dirLen *uint32) (err error) = userenv.GetUserProfileDirectoryW
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/exec_windows_test.go

    	return sid.String()
    }
    
    func tokenGetInfo(t syscall.Token, class uint32, initSize int) (unsafe.Pointer, error) {
    	n := uint32(initSize)
    	for {
    		b := make([]byte, n)
    		e := syscall.GetTokenInformation(t, class, &b[0], uint32(len(b)), &n)
    		if e == nil {
    			return unsafe.Pointer(&b[0]), nil
    		}
    		if e != syscall.ERROR_INSUFFICIENT_BUFFER {
    			return nil, e
    		}
    		if n <= uint32(len(b)) {
    			return nil, e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	GetTokenInformation(token Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) = advapi32.GetTokenInformation
    //sys	SetTokenInformation(token Token, infoClass uint32, info *byte, infoLen uint32) (err error) = advapi32.SetTokenInformation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_windows.go

    	procCryptReleaseContext                = modadvapi32.NewProc("CryptReleaseContext")
    	procGetLengthSid                       = modadvapi32.NewProc("GetLengthSid")
    	procGetTokenInformation                = modadvapi32.NewProc("GetTokenInformation")
    	procLookupAccountNameW                 = modadvapi32.NewProc("LookupAccountNameW")
    	procLookupAccountSidW                  = modadvapi32.NewProc("LookupAccountSidW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procGetSidSubAuthorityCount                              = modadvapi32.NewProc("GetSidSubAuthorityCount")
    	procGetTokenInformation                                  = modadvapi32.NewProc("GetTokenInformation")
    	procImpersonateSelf                                      = modadvapi32.NewProc("ImpersonateSelf")
    	procInitializeSecurityDescriptor                         = modadvapi32.NewProc("InitializeSecurityDescriptor")
    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

    		{"GetStartupInfo", Func, 0},
    		{"GetStdHandle", Func, 0},
    		{"GetSystemTimeAsFileTime", Func, 0},
    		{"GetTempPath", Func, 0},
    		{"GetTimeZoneInformation", Func, 0},
    		{"GetTokenInformation", Func, 0},
    		{"GetUserNameEx", Func, 0},
    		{"GetUserProfileDirectory", Func, 0},
    		{"GetVersion", Func, 0},
    		{"Getcwd", Func, 0},
    		{"Getdents", Func, 0},
    		{"Getdirentries", 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 GetTempPath(uint32, *uint16) (uint32, error)
    pkg syscall (windows-386), func GetTimeZoneInformation(*Timezoneinformation) (uint32, error)
    pkg syscall (windows-386), func GetTokenInformation(Token, uint32, *uint8, uint32, *uint32) error
    pkg syscall (windows-386), func GetUserNameEx(uint32, *uint16, *uint32) error
    pkg syscall (windows-386), func GetUserProfileDirectory(Token, *uint16, *uint32) 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