Searched defs:ntdll (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/sandbox/win/src/
H A DWow64.h21 Wow64(TargetProcess* child, HMODULE ntdll) argument
22 : child_(child), ntdll_(ntdll), dll_load_(NULL), continue_load_(NULL) {}
27 // process and wait until ntdll is ready.
38 // Returns true if ntdll.dll is mapped on the child.
42 HMODULE ntdll_; // ntdll on the parent.
H A Dpolicy_broker.cc26 // This is the list of all imported symbols from ntdll.dll.
42 HMODULE ntdll = ::GetModuleHandle(kNtdllName); local
43 base::win::PEImage ntdll_image(ntdll);
51 loader_get, &ntdll);
H A Dsandbox_utils.cc21 HMODULE ntdll = ::GetModuleHandle(kNtdllName); local
23 GetProcAddress(ntdll, "RtlInitUnicodeString"));
H A Dregistry_policy_test.cc24 ::GetProcAddress(::GetModuleHandle(L"ntdll.dll"), #name))
241 HMODULE ntdll = GetModuleHandle(L"ntdll.dll"); local
243 reinterpret_cast<NtDeleteKeyFunction>(GetProcAddress(ntdll,
H A Dpolicy_opcodes_unittest.cc14 ::GetProcAddress(ntdll, #member)); \
23 HMODULE ntdll = ::GetModuleHandle(kNtdllName); local
H A Dwin_utils.cc304 static volatile HMODULE ntdll = NULL; local
306 if (!ntdll) {
308 // Use PEImage to sanity-check that we have a valid ntdll handle.
311 // Race-safe way to set static ntdll.
313 reinterpret_cast<PVOID volatile*>(&ntdll), ntdll_local, NULL);
317 CHECK_NT(ntdll);
319 *function_ptr = ::GetProcAddress(ntdll, name);
/external/chromium_org/extensions/browser/api/system_cpu/
H A Dcpu_info_provider_win.cc16 const wchar_t kNtdll[] = L"ntdll.dll";
31 HMODULE ntdll = GetModuleHandle(kNtdll); local
32 CHECK(ntdll != NULL);
35 ::GetProcAddress(ntdll, kNtQuerySystemInformationName));
/external/chromium_org/chrome_elf/blacklist/
H A Dblacklist_interceptions.cc32 // TODO(robertshield): Merge with ntdll exports cache.
34 HMODULE ntdll = ::GetModuleHandle(sandbox::kNtdllName); local
35 return ::GetProcAddress(ntdll, export_name);
/external/chromium_org/sandbox/win/wow_helper/
H A Dservice64_resolver.cc134 // Get pointers to the functions that we need from ntdll.dll.
136 wchar_t* ntdll_name = L"ntdll.dll";
137 HMODULE ntdll = ::GetModuleHandle(ntdll_name); local
138 if (!ntdll)
141 void* signal = ::GetProcAddress(ntdll, "NtSignalAndWaitForSingleObject");

Completed in 949 milliseconds