HomeSort by relevance Sort by last modified time
    Searched refs:advapi32 (Results 1 - 25 of 29) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/internal/syscall/windows/
security_windows.go 19 //sys ImpersonateSelf(impersonationlevel uint32) (err error) = advapi32.ImpersonateSelf
20 //sys RevertToSelf() (err error) = advapi32.RevertToSelf
42 //sys OpenThreadToken(h syscall.Handle, access uint32, openasself bool, token *syscall.Token) (err error) = advapi32.OpenThreadToken
43 //sys LookupPrivilegeValue(systemname *uint16, name *uint16, luid *LUID) (err error) = advapi32.LookupPrivilegeValueW
44 //sys adjustTokenPrivileges(token syscall.Token, disableAllPrivileges bool, newstate *TOKEN_PRIVILEGES, buflen uint32, prevstate *TOKEN_PRIVILEGES, returnlen *uint32) (ret uint32, err error) [true] = advapi32.AdjustTokenPrivileges
60 //sys DuplicateTokenEx(hExistingToken syscall.Token, dwDesiredAccess uint32, lpTokenAttributes *syscall.SecurityAttributes, impersonationLevel uint32, tokenType TokenType, phNewToken *syscall.Token) (err error) = advapi32.DuplicateTokenEx
61 //sys SetTokenInformation(tokenHandle syscall.Token, tokenInformationClass uint32, tokenInformation uintptr, tokenInformationLength uint32) (err error) = advapi32.SetTokenInformation
zsyscall_windows.go 43 modadvapi32 = syscall.NewLazyDLL(sysdll.Add("advapi32.dll"))
  /prebuilts/go/linux-x86/src/internal/syscall/windows/
security_windows.go 19 //sys ImpersonateSelf(impersonationlevel uint32) (err error) = advapi32.ImpersonateSelf
20 //sys RevertToSelf() (err error) = advapi32.RevertToSelf
42 //sys OpenThreadToken(h syscall.Handle, access uint32, openasself bool, token *syscall.Token) (err error) = advapi32.OpenThreadToken
43 //sys LookupPrivilegeValue(systemname *uint16, name *uint16, luid *LUID) (err error) = advapi32.LookupPrivilegeValueW
44 //sys adjustTokenPrivileges(token syscall.Token, disableAllPrivileges bool, newstate *TOKEN_PRIVILEGES, buflen uint32, prevstate *TOKEN_PRIVILEGES, returnlen *uint32) (ret uint32, err error) [true] = advapi32.AdjustTokenPrivileges
60 //sys DuplicateTokenEx(hExistingToken syscall.Token, dwDesiredAccess uint32, lpTokenAttributes *syscall.SecurityAttributes, impersonationLevel uint32, tokenType TokenType, phNewToken *syscall.Token) (err error) = advapi32.DuplicateTokenEx
61 //sys SetTokenInformation(tokenHandle syscall.Token, tokenInformationClass uint32, tokenInformation uintptr, tokenInformationLength uint32) (err error) = advapi32.SetTokenInformation
zsyscall_windows.go 43 modadvapi32 = syscall.NewLazyDLL(sysdll.Add("advapi32.dll"))
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/registry/
syscall.go 24 //sys regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) = advapi32.RegCreateKeyExW
25 //sys regDeleteKey(key syscall.Handle, subkey *uint16) (regerrno error) = advapi32.RegDeleteKeyW
26 //sys regSetValueEx(key syscall.Handle, valueName *uint16, reserved uint32, vtype uint32, buf *byte, bufsize uint32) (regerrno error) = advapi32.RegSetValueExW
27 //sys regEnumValue(key syscall.Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegEnumValueW
28 //sys regDeleteValue(key syscall.Handle, name *uint16) (regerrno error) = advapi32.RegDeleteValueW
29 //sys regLoadMUIString(key syscall.Handle, name *uint16, buf *uint16, buflen uint32, buflenCopied *uint32, flags uint32, dir *uint16) (regerrno error) = advapi32.RegLoadMUIStringW
zsyscall_windows.go 39 modadvapi32 = syscall.NewLazyDLL(sysdll.Add("advapi32.dll"))
  /prebuilts/go/linux-x86/src/internal/syscall/windows/registry/
syscall.go 24 //sys regCreateKeyEx(key syscall.Handle, subkey *uint16, reserved uint32, class *uint16, options uint32, desired uint32, sa *syscall.SecurityAttributes, result *syscall.Handle, disposition *uint32) (regerrno error) = advapi32.RegCreateKeyExW
25 //sys regDeleteKey(key syscall.Handle, subkey *uint16) (regerrno error) = advapi32.RegDeleteKeyW
26 //sys regSetValueEx(key syscall.Handle, valueName *uint16, reserved uint32, vtype uint32, buf *byte, bufsize uint32) (regerrno error) = advapi32.RegSetValueExW
27 //sys regEnumValue(key syscall.Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegEnumValueW
28 //sys regDeleteValue(key syscall.Handle, name *uint16) (regerrno error) = advapi32.RegDeleteValueW
29 //sys regLoadMUIString(key syscall.Handle, name *uint16, buf *uint16, buflen uint32, buflenCopied *uint32, flags uint32, dir *uint16) (regerrno error) = advapi32.RegLoadMUIStringW
zsyscall_windows.go 39 modadvapi32 = syscall.NewLazyDLL(sysdll.Add("advapi32.dll"))
  /external/python/cpython2/Lib/ctypes/test/
test_loading.py 86 # On winXP 64-bit, advapi32 loads at an address that does
91 handle = LoadLibrary("advapi32")
96 # Since on winXP 64-bit advapi32 loads like described
101 advapi32 = windll.advapi32
104 self.assertEqual(0, advapi32.CloseEventLog(None))
107 proc = windll.kernel32.GetProcAddress(advapi32._handle,
  /external/python/cpython3/Lib/ctypes/test/
test_loading.py 86 # On winXP 64-bit, advapi32 loads at an address that does
91 handle = LoadLibrary("advapi32")
96 # Since on winXP 64-bit advapi32 loads like described
101 advapi32 = windll.advapi32
104 self.assertEqual(0, advapi32.CloseEventLog(None))
107 proc = windll.kernel32.GetProcAddress(advapi32._handle,
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_loading.py 80 # On winXP 64-bit, advapi32 loads at an address that does
85 handle = LoadLibrary("advapi32")
89 # Since on winXP 64-bit advapi32 loads like described
94 advapi32 = windll.advapi32
97 self.assertEqual(0, advapi32.CloseEventLog(None))
100 proc = windll.kernel32.GetProcAddress(advapi32._handle, "CloseEventLog")
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_loading.py 80 # On winXP 64-bit, advapi32 loads at an address that does
85 handle = LoadLibrary("advapi32")
89 # Since on winXP 64-bit advapi32 loads like described
94 advapi32 = windll.advapi32
97 self.assertEqual(0, advapi32.CloseEventLog(None))
100 proc = windll.kernel32.GetProcAddress(advapi32._handle, "CloseEventLog")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_loading.py 80 # On winXP 64-bit, advapi32 loads at an address that does
85 handle = LoadLibrary("advapi32")
89 # Since on winXP 64-bit advapi32 loads like described
94 advapi32 = windll.advapi32
97 self.assertEqual(0, advapi32.CloseEventLog(None))
100 proc = windll.kernel32.GetProcAddress(advapi32._handle, "CloseEventLog")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_loading.py 80 # On winXP 64-bit, advapi32 loads at an address that does
85 handle = LoadLibrary("advapi32")
89 # Since on winXP 64-bit advapi32 loads like described
94 advapi32 = windll.advapi32
97 self.assertEqual(0, advapi32.CloseEventLog(None))
100 proc = windll.kernel32.GetProcAddress(advapi32._handle, "CloseEventLog")
  /external/python/cpython2/PC/VC6/
_ssl.mak 16 LIBS=gdi32.lib wsock32.lib user32.lib advapi32.lib /libpath:$(SSL_LIB_DIR) libeay32.lib ssleay32.lib
  /external/python/cpython2/PC/VS7.1/
_ssl.mak 17 SSL_LIBS=gdi32.lib wsock32.lib user32.lib advapi32.lib /LIBPATH:$(SSL_LIB_DIR) libeay32.lib ssleay32.lib
20 HASH_LIBS=gdi32.lib user32.lib advapi32.lib /libpath:$(SSL_LIB_DIR) libeay32.lib
  /prebuilts/go/darwin-x86/src/syscall/
security_windows.go 93 //sys LookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) = advapi32.LookupAccountSidW
94 //sys LookupAccountName(systemName *uint16, accountName *uint16, sid *SID, sidLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) = advapi32.LookupAccountNameW
95 //sys ConvertSidToStringSid(sid *SID, stringSid **uint16) (err error) = advapi32.ConvertSidToStringSidW
96 //sys ConvertStringSidToSid(stringSid *uint16, sid **SID) (err error) = advapi32.ConvertStringSidToSidW
97 //sys GetLengthSid(sid *SID) (len uint32) = advapi32.GetLengthSid
98 //sys CopySid(destSidLen uint32, destSid *SID, srcSid *SID) (err error) = advapi32.CopySid
288 //sys OpenProcessToken(h Handle, access uint32, token *Token) (err error) = advapi32.OpenProcessToken
289 //sys GetTokenInformation(t Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) = advapi32.GetTokenInformation
syscall_windows.go 172 //sys CreateProcessAsUser(token Token, appName *uint16, commandLine *uint16, procSecurity *SecurityAttributes, threadSecurity *SecurityAttributes, inheritHandles bool, creationFlags uint32, env *uint16, currentDir *uint16, startupInfo *StartupInfo, outProcInfo *ProcessInformation) (err error) = advapi32.CreateProcessAsUserW
184 //sys CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) = advapi32.CryptAcquireContextW
185 //sys CryptReleaseContext(provhandle Handle, flags uint32) (err error) = advapi32.CryptReleaseContext
186 //sys CryptGenRandom(provhandle Handle, buflen uint32, buf *byte) (err error) = advapi32.CryptGenRandom
221 //sys RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error) = advapi32.RegOpenKeyExW
222 //sys RegCloseKey(key Handle) (regerrno error) = advapi32.RegCloseKey
223 //sys RegQueryInfoKey(key Handle, class *uint16, classLen *uint32, reserved *uint32, subkeysLen *uint32, maxSubkeyLen *uint32, maxClassLen *uint32, valuesLen *uint32, maxValueNameLen *uint32, maxValueLen *uint32, saLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegQueryInfoKeyW
224 //sys RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegEnumKeyExW
225 //sys RegQueryValueEx(key Handle, name *uint16, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegQueryValueExW
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
security_windows.go 93 //sys LookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) = advapi32.LookupAccountSidW
94 //sys LookupAccountName(systemName *uint16, accountName *uint16, sid *SID, sidLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) = advapi32.LookupAccountNameW
95 //sys ConvertSidToStringSid(sid *SID, stringSid **uint16) (err error) = advapi32.ConvertSidToStringSidW
96 //sys ConvertStringSidToSid(stringSid *uint16, sid **SID) (err error) = advapi32.ConvertStringSidToSidW
97 //sys GetLengthSid(sid *SID) (len uint32) = advapi32.GetLengthSid
98 //sys CopySid(destSidLen uint32, destSid *SID, srcSid *SID) (err error) = advapi32.CopySid
288 //sys OpenProcessToken(h Handle, access uint32, token *Token) (err error) = advapi32.OpenProcessToken
289 //sys GetTokenInformation(t Token, infoClass uint32, info *byte, infoLen uint32, returnedLen *uint32) (err error) = advapi32.GetTokenInformation
syscall_windows.go 172 //sys CreateProcessAsUser(token Token, appName *uint16, commandLine *uint16, procSecurity *SecurityAttributes, threadSecurity *SecurityAttributes, inheritHandles bool, creationFlags uint32, env *uint16, currentDir *uint16, startupInfo *StartupInfo, outProcInfo *ProcessInformation) (err error) = advapi32.CreateProcessAsUserW
184 //sys CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) = advapi32.CryptAcquireContextW
185 //sys CryptReleaseContext(provhandle Handle, flags uint32) (err error) = advapi32.CryptReleaseContext
186 //sys CryptGenRandom(provhandle Handle, buflen uint32, buf *byte) (err error) = advapi32.CryptGenRandom
221 //sys RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error) = advapi32.RegOpenKeyExW
222 //sys RegCloseKey(key Handle) (regerrno error) = advapi32.RegCloseKey
223 //sys RegQueryInfoKey(key Handle, class *uint16, classLen *uint32, reserved *uint32, subkeysLen *uint32, maxSubkeyLen *uint32, maxClassLen *uint32, valuesLen *uint32, maxValueNameLen *uint32, maxValueLen *uint32, saLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegQueryInfoKeyW
224 //sys RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint32, reserved *uint32, class *uint16, classLen *uint32, lastWriteTime *Filetime) (regerrno error) = advapi32.RegEnumKeyExW
225 //sys RegQueryValueEx(key Handle, name *uint16, reserved *uint32, valtype *uint32, buf *byte, buflen *uint32) (regerrno error) = advapi32.RegQueryValueExW
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/tools/
list_ports_windows.py 106 advapi32 = ctypes.windll.LoadLibrary("Advapi32") variable
107 RegCloseKey = advapi32.RegCloseKey
111 RegQueryValueEx = advapi32.RegQueryValueExA
  /external/lzma/CPP/
Build.mak 36 LIBS = $(LIBS) user32.lib advapi32.lib shell32.lib
  /external/icu/icu4c/source/config/
mh-cygwin-msvc 97 DEFAULT_LIBS = advapi32.lib
mh-msys-msvc 102 DEFAULT_LIBS = advapi32.lib
  /prebuilts/go/darwin-x86/src/runtime/
os_windows.go 114 // The RtlGenRandom is not listed in advapi32.dll, instead
183 var advapi32dll = []byte("advapi32.dll\000")
186 throw("advapi32.dll not found")

Completed in 794 milliseconds

1 2