HomeSort by relevance Sort by last modified time
    Searched defs:kernel32 (Results 1 - 4 of 4) sorted by null

  /external/bluetooth/glib/gmodule/
gmodule-win32.c 122 static HMODULE kernel32; local
131 if (!kernel32)
132 if (!(kernel32 = GetModuleHandle ("kernel32.dll")))
135 if (!(pfnCreateToolhelp32Snapshot = (PFNCREATETOOLHELP32SNAPSHOT) GetProcAddress (kernel32, "CreateToolhelp32Snapshot"))
136 || !(pfnModule32First = (PFNMODULE32FIRST) GetProcAddress (kernel32, "Module32First"))
137 || !(pfnModule32Next = (PFNMODULE32NEXT) GetProcAddress (kernel32, "Module32Next")))
  /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/bluetooth/glib/gthread/
gthread-win32.c 594 HMODULE kernel32; local
609 /* Here we are looking for TryEnterCriticalSection in KERNEL32.DLL,
614 kernel32 = GetModuleHandle ("KERNEL32.DLL");
615 if (kernel32)
618 GetProcAddress(kernel32, "TryEnterCriticalSection");
  /external/chromium/base/
process_util_win.cc 818 HMODULE kernel32 = GetModuleHandle(L"kernel32.dll"); local
820 kernel32,

Completed in 477 milliseconds