Searched refs:GetProcAddress (Results 1 - 25 of 100) sorted by relevance

1234

/external/webkit/Tools/DumpRenderTree/win/
H A DMD5.cpp46 static initPtr ptr = reinterpret_cast<initPtr>(GetProcAddress(cryptDLL(), "MD5Init"));
52 static updatePtr ptr = reinterpret_cast<updatePtr>(GetProcAddress(cryptDLL(), "MD5Update"));
58 static finalPtr ptr = reinterpret_cast<finalPtr>(GetProcAddress(cryptDLL(), "MD5Final"));
/external/bzip2/
H A Ddlltest.c36 BZ2_bzlibVersion=GetProcAddress(hLib,"BZ2_bzlibVersion");
37 BZ2_bzopen=GetProcAddress(hLib,"BZ2_bzopen");
38 BZ2_bzdopen=GetProcAddress(hLib,"BZ2_bzdopen");
39 BZ2_bzread=GetProcAddress(hLib,"BZ2_bzread");
40 BZ2_bzwrite=GetProcAddress(hLib,"BZ2_bzwrite");
41 BZ2_bzflush=GetProcAddress(hLib,"BZ2_bzflush");
42 BZ2_bzclose=GetProcAddress(hLib,"BZ2_bzclose");
43 BZ2_bzerror=GetProcAddress(hLib,"BZ2_bzerror");
48 fprintf(stderr,"GetProcAddress failed.\n");
/external/webkit/Source/WebKit2/Platform/win/
H A DModuleWin.cpp53 return ::GetProcAddress(m_module, functionName);
/external/llvm/lib/Support/Windows/
H A DRWMutex.inc54 (VOID (WINAPI *)(PSRWLOCK))::GetProcAddress(hLib,
57 (VOID (WINAPI *)(PSRWLOCK))::GetProcAddress(hLib,
60 (VOID (WINAPI *)(PSRWLOCK))::GetProcAddress(hLib,
63 (VOID (WINAPI *)(PSRWLOCK))::GetProcAddress(hLib,
66 (VOID (WINAPI *)(PSRWLOCK))::GetProcAddress(hLib,
H A DSignals.inc139 ::GetProcAddress(hLib, "StackWalk64");
141 ::GetProcAddress(hLib, "SymGetModuleBase64");
143 ::GetProcAddress(hLib, "SymGetSymFromAddr64");
145 ::GetProcAddress(hLib, "SymGetLineFromAddr64");
147 ::GetProcAddress(hLib, "SymFunctionTableAccess64");
H A DDynamicLibrary.inc131 FARPROC ptr = GetProcAddress((HMODULE)*I, symbolName);
159 return (void *)(intptr_t)GetProcAddress((HMODULE)Data, symbolName);
/external/webrtc/src/system_wrappers/source/
H A Drw_lock_win.cc60 (PInitializeSRWLock)GetProcAddress(
65 (PAcquireSRWLockExclusive)GetProcAddress(
69 (PReleaseSRWLockExclusive)GetProcAddress(
73 (PAcquireSRWLockShared)GetProcAddress(
77 (PReleaseSRWLockShared)GetProcAddress(
H A Dcondition_variable_win.cc54 (PInitializeConditionVariable) GetProcAddress(
58 (PSleepConditionVariableCS)GetProcAddress(
62 (PWakeConditionVariable)GetProcAddress(
66 (PWakeAllConditionVariable)GetProcAddress(
/external/chromium/chrome/common/
H A Dchild_process_logging_win.cc50 GetProcAddress(exe_module, "SetActiveURL"));
78 GetProcAddress(exe_module, "SetClientId"));
100 GetProcAddress(exe_module, "SetNumberOfExtensions"));
111 GetProcAddress(exe_module, "SetExtensionID"));
136 GetProcAddress(exe_module, "SetGpuInfo"));
155 GetProcAddress(exe_module, "SetNumberOfViews"));
/external/openssl/crypto/rand/
H A Drand_win.c227 * handling the GetProcAddress issue. The trouble is that in
228 * real Win32 API GetProcAddress is available in ANSI flavor
229 * only. In WinCE on the other hand GetProcAddress is a macro
231 * Unicode argument. If we were to call GetProcAddress under
232 * WinCE, I'd recommend to either redefine GetProcAddress as
252 netstatget = (NETSTATGET) GetProcAddress(netapi,"NetStatisticsGet");
253 netfree = (NETFREE) GetProcAddress(netapi,"NetApiBufferFree");
342 acquire = (CRYPTACQUIRECONTEXTW) GetProcAddress(advapi,
344 gen = (CRYPTGENRANDOM) GetProcAddress(advapi,
346 release = (CRYPTRELEASECONTEXT) GetProcAddress(advap
[all...]
/external/webkit/Source/WebKit2/WebProcess/
H A DWebKitMain.cpp96 PSETDEP procSet = reinterpret_cast<PSETDEP>(::GetProcAddress(hMod, "SetProcessDEPPolicy"));
116 HSI heapSetInformation = reinterpret_cast<HSI>(::GetProcAddress(hMod, "HeapSetInformation"));
132 getProcessUserModeExceptionPolicyPtr getPolicyPtr = (getProcessUserModeExceptionPolicyPtr)GetProcAddress(lib, "GetProcessUserModeExceptionPolicy");
133 setProcessUserModeExceptionPolicyPtr setPolicyPtr = (setProcessUserModeExceptionPolicyPtr)GetProcAddress(lib, "SetProcessUserModeExceptionPolicy");
/external/chromium/base/
H A Dnative_library_win.cc52 GetProcAddress(GetModuleHandle(L"kernel32.dll"), "LoadLibraryW"));
65 return GetProcAddress(library, name);
/external/quake/quake/src/WinQuake/
H A Dnet_wins.cpp139 pWSAStartup = (void *)GetProcAddress(hInst, "WSAStartup");
140 pWSACleanup = (void *)GetProcAddress(hInst, "WSACleanup");
141 pWSAGetLastError = (void *)GetProcAddress(hInst, "WSAGetLastError");
142 psocket = (void *)GetProcAddress(hInst, "socket");
143 pioctlsocket = (void *)GetProcAddress(hInst, "ioctlsocket");
144 psetsockopt = (void *)GetProcAddress(hInst, "setsockopt");
145 precvfrom = (void *)GetProcAddress(hInst, "recvfrom");
146 psendto = (void *)GetProcAddress(hInst, "sendto");
147 pclosesocket = (void *)GetProcAddress(hInst, "closesocket");
148 pgethostname = (void *)GetProcAddress(hIns
[all...]
/external/chromium/googleurl/src/
H A Dgurl_test_main.cc75 FARPROC addr = GetProcAddress(module, ICU_UTIL_DATA_SYMBOL);
/external/webkit/Source/WebCore/platform/graphics/win/
H A DQTCFDictionary.cpp41 pCFPropertyListCreateXMLData = reinterpret_cast<pfnCFPropertyListCreateXMLData>(GetProcAddress(qtcfDLL, "QTCF_CFPropertyListCreateXMLData"));
/external/webkit/Source/WebKit2/win/
H A DMainWin.cpp62 WebKitMainProcPtr mainProc = reinterpret_cast<WebKitMainProcPtr>(GetProcAddress(module, "WebKitMain"));
/external/webkit/Source/WebCore/plugins/win/
H A DPluginPackageWin.cpp274 NP_Initialize = (NP_InitializeFuncPtr)GetProcAddress(m_module, L"NP_Initialize");
275 NP_GetEntryPoints = (NP_GetEntryPointsFuncPtr)GetProcAddress(m_module, L"NP_GetEntryPoints");
276 m_NPP_Shutdown = (NPP_ShutdownProcPtr)GetProcAddress(m_module, L"NP_Shutdown");
278 NP_Initialize = (NP_InitializeFuncPtr)GetProcAddress(m_module, "NP_Initialize");
279 NP_GetEntryPoints = (NP_GetEntryPointsFuncPtr)GetProcAddress(m_module, "NP_GetEntryPoints");
280 m_NPP_Shutdown = (NPP_ShutdownProcPtr)GetProcAddress(m_module, "NP_Shutdown");
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwinping.cc151 create_ = (PIcmpCreateFile) GetProcAddress(dll_, ICMP_CREATE_FUNC);
152 close_ = (PIcmpCloseHandle) GetProcAddress(dll_, ICMP_CLOSE_FUNC);
153 send_ = (PIcmpSendEcho) GetProcAddress(dll_, ICMP_SEND_FUNC);
155 LOG(LERROR) << "GetProcAddress(ICMP_*): " << GetLastError();
/external/qemu/distrib/sdl-1.2.15/src/loadso/win32/
H A DSDL_sysloadso.c98 symbol = (void *)GetProcAddress((HMODULE)handle, name_t);
115 symbol = (void *)GetProcAddress((HMODULE)handle, name);
/external/webkit/Source/WebCore/platform/win/
H A DSystemInfo.cpp129 IsWow64ProcessFunc isWOW64Process = reinterpret_cast<IsWow64ProcessFunc>(GetProcAddress(kernel32Module, "IsWow64Process"));
150 GetNativeSystemInfoFunc getNativeSystemInfo = reinterpret_cast<GetNativeSystemInfoFunc>(GetProcAddress(kernel32Module, "GetNativeSystemInfo"));
/external/openssl/ssl/
H A Dkssl.c301 GetProcAddress( hKRB5_32, "krb5_free_data_contents" );
303 GetProcAddress( hKRB5_32, "krb5_free_context" );
305 GetProcAddress( hKRB5_32, "krb5_auth_con_free" );
307 GetProcAddress( hKRB5_32, "krb5_free_principal" );
309 GetProcAddress( hKRB5_32, "krb5_mk_req_extended" );
311 GetProcAddress( hKRB5_32, "krb5_get_credentials" );
313 GetProcAddress( hKRB5_32, "krb5_cc_get_principal" );
315 GetProcAddress( hKRB5_32, "krb5_cc_default" );
317 GetProcAddress( hKRB5_32, "krb5_sname_to_principal" );
319 GetProcAddress( hKRB5_3
[all...]
/external/chromium/base/win/
H A Dwindows_version.cc59 GetProcAddress(GetModuleHandle(L"kernel32.dll"), "IsWow64Process"));
/external/chromium/chrome/browser/
H A Dfullscreen_win.cc33 (::GetProcAddress(shell32_base, "SHQueryUserNotificationState"));
/external/chromium/chrome/browser/ui/window_snapshot/
H A Dwindow_snapshot_win.cc49 GetProcAddress(GetModuleHandle(L"User32.dll"), "PrintWindow"));
/external/libvpx/libvpx/vp8/common/generic/
H A Dsystemdependent.c53 pGNSI = (PGNSI) GetProcAddress(

Completed in 2311 milliseconds

1234