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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_random_things.py 16 windll.kernel32.LoadLibraryA.restype = c_void_p
17 windll.kernel32.GetProcAddress.argtypes = c_void_p, c_char_p
18 windll.kernel32.GetProcAddress.restype = c_void_p
20 hdll = windll.kernel32.LoadLibraryA("kernel32")
21 funcaddr = windll.kernel32.GetProcAddress(hdll, "GetModuleHandleA")
24 windll.kernel32.GetModuleHandleA(None))
test_loading.py 48 print find_library("kernel32")
52 windll.kernel32.GetModuleHandleW
53 windll["kernel32"].GetModuleHandleW
54 windll.LoadLibrary("kernel32").GetModuleHandleW
55 WinDLL("kernel32").GetModuleHandleW
98 windll.kernel32.GetProcAddress.argtypes = c_void_p, c_char_p
99 windll.kernel32.GetProcAddress.restype = c_void_p
100 proc = windll.kernel32.GetProcAddress(advapi32._handle, "CloseEventLog")
test_win32.py 44 self.assertRaises(WindowsError, windll.kernel32.GetModuleHandleA, 32)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_random_things.py 16 windll.kernel32.LoadLibraryA.restype = c_void_p
17 windll.kernel32.GetProcAddress.argtypes = c_void_p, c_char_p
18 windll.kernel32.GetProcAddress.restype = c_void_p
20 hdll = windll.kernel32.LoadLibraryA("kernel32")
21 funcaddr = windll.kernel32.GetProcAddress(hdll, "GetModuleHandleA")
24 windll.kernel32.GetModuleHandleA(None))
test_loading.py 48 print find_library("kernel32")
52 windll.kernel32.GetModuleHandleW
53 windll["kernel32"].GetModuleHandleW
54 windll.LoadLibrary("kernel32").GetModuleHandleW
55 WinDLL("kernel32").GetModuleHandleW
98 windll.kernel32.GetProcAddress.argtypes = c_void_p, c_char_p
99 windll.kernel32.GetProcAddress.restype = c_void_p
100 proc = windll.kernel32.GetProcAddress(advapi32._handle, "CloseEventLog")
  /external/chromium_org/base/process/
memory_win.cc 31 HMODULE kernel32 = GetModuleHandle(L"kernel32.dll"); local
33 kernel32,
memory_unittest.cc 47 // Any address within the kernel32 module should return
48 // kernel32's HMODULE. Our only assumption here is that
49 // kernel32 is larger than 4 bytes.
50 HMODULE kernel32 = ::GetModuleHandle(L"kernel32.dll"); local
52 base::GetModuleFromAddress(reinterpret_cast<DWORD*>(kernel32) + 1);
53 EXPECT_EQ(kernel32, kernel32_from_address);
65 HMODULE kernel32 = GetModuleHandle(L"kernel32.dll"); local
66 ASSERT_TRUE(kernel32 != NULL)
    [all...]
  /external/chromium_org/tools/traceline/traceline/
Makefile 13 kernel32.lib user32.lib dbghelp.lib powrprof.lib
23 kernel32.lib user32.lib dbghelp.lib powrprof.lib
  /external/chromium_org/chrome/app/
delay_load_hook_unittest_win.cc 27 SetupInfo("kernel32.dll");
58 SetupInfo("kernel32.dll");
71 SetupInfo("kernel32-delay.dll");
72 HMODULE kernel32 = reinterpret_cast<HMODULE>( local
76 base::ScopedNativeLibrary lib_holder(kernel32);
78 ASSERT_TRUE(kernel32 == ::GetModuleHandle(L"kernel32.dll"));
82 SetupInfo("kernel32-delay.dll");
  /external/chromium_org/tools/stats_viewer/
win32.cs 29 [DllImport("kernel32", SetLastError=true, CharSet=CharSet.Auto)]
35 [DllImport("kernel32", SetLastError=true)]
40 [DllImport("kernel32", SetLastError=true, CharSet=CharSet.Auto)]
44 [DllImport("kernel32", SetLastError=true)]
47 [DllImport("kernel32", SetLastError = true)]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 16 ctypes.windll.kernel32.GetFinalPathNameByHandleW
24 hdir = ctypes.windll.kernel32.\
34 res = ctypes.windll.kernel32.\
37 ctypes.windll.kernel32.CloseHandle(hdir)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
symlink_support.py 35 CreateSymbolicLink = ctypes.windll.kernel32.CreateSymbolicLinkW
65 bytes = ctypes.windll.kernel32.FormatMessageW(
79 ctypes.windll.kernel32.LocalFree(result_buffer)
84 value = ctypes.windll.kernel32.GetLastError()
win_console_handler.py 33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
FixTk.py 16 ctypes.windll.kernel32.GetFinalPathNameByHandleW
24 hdir = ctypes.windll.kernel32.\
34 res = ctypes.windll.kernel32.\
37 ctypes.windll.kernel32.CloseHandle(hdir)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
symlink_support.py 35 CreateSymbolicLink = ctypes.windll.kernel32.CreateSymbolicLinkW
65 bytes = ctypes.windll.kernel32.FormatMessageW(
79 ctypes.windll.kernel32.LocalFree(result_buffer)
84 value = ctypes.windll.kernel32.GetLastError()
win_console_handler.py 33 SetConsoleCtrlHandler = ctypes.windll.kernel32.SetConsoleCtrlHandler
  /external/chromium/base/win/
i18n.cc 49 HMODULE kernel32 = GetModuleHandle(L"kernel32.dll"); local
50 if (NULL != kernel32) {
55 GetProcAddress(kernel32, kLanguageFunctionNames[function]));
81 NOTREACHED() << "kernel32.dll not found.";
  /external/chromium_org/base/win/
i18n.cc 49 HMODULE kernel32 = GetModuleHandle(L"kernel32.dll"); local
50 if (NULL != kernel32) {
55 GetProcAddress(kernel32, kLanguageFunctionNames[function]));
81 NOTREACHED() << "kernel32.dll not found.";
  /external/chromium_org/base/synchronization/
condition_variable_win.cc 17 // We can't use the linker supported delay-load for kernel32 so all this
31 HMODULE kernel32 = GetModuleHandleA("kernel32.dll"); local
34 GetProcAddress(kernel32, "InitializeConditionVariable"));
39 GetProcAddress(kernel32, "SleepConditionVariableCS"));
44 GetProcAddress(kernel32, "WakeConditionVariable"));
49 GetProcAddress(kernel32, "WakeAllConditionVariable"));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo.py 96 handle = windll.kernel32.GetStdHandle(-12) # -12 == stderr
98 if windll.kernel32.GetConsoleScreenBufferInfo(handle, console_screen_buffer_info):
executive.py 233 CreateToolhelp32Snapshot = ctypes.windll.kernel32.CreateToolhelp32Snapshot
234 Process32First = ctypes.windll.kernel32.Process32First
235 Process32Next = ctypes.windll.kernel32.Process32Next
236 CloseHandle = ctypes.windll.kernel32.CloseHandle
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
format.py 136 self.handle = ctypes.windll.kernel32.GetStdHandle(nStdHandle)
143 ctypes.windll.kernel32.SetConsoleTextAttribute(self.handle, attr)
  /external/mesa3d/src/gallium/tools/trace/
format.py 136 self.handle = ctypes.windll.kernel32.GetStdHandle(nStdHandle)
143 ctypes.windll.kernel32.SetConsoleTextAttribute(self.handle, attr)
  /external/chromium_org/third_party/WebKit/Source/wtf/
Assertions.cpp 235 HMODULE kernel32 = ::GetModuleHandleW(L"Kernel32.dll");
236 if (!kernel32) {
241 ::GetProcAddress(kernel32, "RtlCaptureStackBackTrace"));
  /external/chromium_org/chrome/installer/setup/
setup_util.cc 224 HMODULE kernel32 = ::GetModuleHandle(L"kernel32.dll"); local
226 ::GetProcAddress(kernel32, "Sleep"));
228 ::GetProcAddress(kernel32, "DeleteFileW"));
230 ::GetProcAddress(kernel32, "ExitProcess"));

Completed in 699 milliseconds

1 2