HomeSort by relevance Sort by last modified time
    Searched refs:hKernel32 (Results 1 - 9 of 9) sorted by null

  /external/python/cpython2/PC/
dl_nt.c 49 HINSTANCE hKernel32 = GetModuleHandleW(L"kernel32.dll");
50 if (hKernel32)
51 pfnGetCurrentActCtx = (PFN_GETCURRENTACTCTX) GetProcAddress(hKernel32, "GetCurrentActCtx");
54 pfnActivateActCtx = (PFN_ACTIVATEACTCTX) GetProcAddress(hKernel32, "ActivateActCtx");
55 pfnDeactivateActCtx = (PFN_DEACTIVATEACTCTX) GetProcAddress(hKernel32, "DeactivateActCtx");
56 pfnAddRefActCtx = (PFN_ADDREFACTCTX) GetProcAddress(hKernel32, "AddRefActCtx");
57 pfnReleaseActCtx = (PFN_RELEASEACTCTX) GetProcAddress(hKernel32, "ReleaseActCtx");
  /external/python/cpython3/PC/
dl_nt.c 57 HINSTANCE hKernel32 = GetModuleHandleW(L"kernel32.dll");
58 if (hKernel32)
59 pfnGetCurrentActCtx = (PFN_GETCURRENTACTCTX) GetProcAddress(hKernel32, "GetCurrentActCtx");
62 pfnActivateActCtx = (PFN_ACTIVATEACTCTX) GetProcAddress(hKernel32, "ActivateActCtx");
63 pfnDeactivateActCtx = (PFN_DEACTIVATEACTCTX) GetProcAddress(hKernel32, "DeactivateActCtx");
64 pfnAddRefActCtx = (PFN_ADDREFACTCTX) GetProcAddress(hKernel32, "AddRefActCtx");
65 pfnReleaseActCtx = (PFN_RELEASEACTCTX) GetProcAddress(hKernel32, "ReleaseActCtx");
  /external/expat/lib/
loadlibrary.c 85 HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32"));
86 if(!hKernel32)
91 pLoadLibraryEx = (LOADLIBRARYEX_FN) GetProcAddress(hKernel32, LOADLIBARYEX);
106 else if(pLoadLibraryEx && GetProcAddress(hKernel32, "AddDllDirectory")) {
  /external/curl/lib/
system_win32.c 275 HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32"));
276 if(!hKernel32)
281 pLoadLibraryEx = (LOADLIBRARYEX_FN) GetProcAddress(hKernel32, LOADLIBARYEX);
296 else if(pLoadLibraryEx && GetProcAddress(hKernel32, "AddDllDirectory")) {
  /external/libusb/libusb/os/
poll_windows.c 96 HMODULE hKernel32 = GetModuleHandleA("KERNEL32");
97 if (hKernel32 != NULL) {
99 GetProcAddress(hKernel32, "CancelIoEx");
  /external/python/cpython3/Modules/
overlapped.c 105 HINSTANCE hKernel32;
127 hKernel32 = GetModuleHandle("KERNEL32");
128 *(FARPROC *)&Py_CancelIoEx = GetProcAddress(hKernel32, "CancelIoEx");
    [all...]
_winapi.c 75 HINSTANCE hKernel32 = GetModuleHandle("KERNEL32");
76 * (FARPROC *) &Py_CancelIoEx = GetProcAddress(hKernel32,
    [all...]
posixmodule.c     [all...]
  /external/python/cpython3/Python/
sysmodule.c 942 HANDLE hKernel32;
973 hKernel32 = GetModuleHandleW(L"kernel32.dll");
974 if (hKernel32 && GetModuleFileNameW(hKernel32, kernel32_path, MAX_PATH) &&
    [all...]

Completed in 429 milliseconds