Searched refs:ntdll (Results 1 - 10 of 10) sorted by relevance
/external/chromium_org/sandbox/win/src/ |
H A D | Wow64.h | 21 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 D | sandbox_utils.cc | 29 HMODULE ntdll = ::GetModuleHandle(kNtdllName); local 31 GetProcAddress(ntdll, "RtlInitUnicodeString"));
|
H A D | policy_broker.cc | 26 // 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 D | win_utils.cc | 304 // with ntdll/imports underneath us. So, we retry a few times, and in the 311 static HMODULE ntdll = ::GetModuleHandle(sandbox::kNtdllName); local 314 *function_ptr = ::GetProcAddress(ntdll, name); 319 ntdll = ::GetModuleHandle(sandbox::kNtdllName); 320 *function_ptr = ::GetProcAddress(ntdll, name);
|
H A D | interception.cc | 359 base::string16 ntdll(kNtdllName); 360 if (ntdll == data.dll) 361 return false; // ntdll has to be intercepted from the parent 497 const base::string16 ntdll(kNtdllName); 498 if (it->dll != ntdll)
|
H A D | registry_policy_test.cc | 24 ::GetProcAddress(::GetModuleHandle(L"ntdll.dll"), #name)) 241 HMODULE ntdll = GetModuleHandle(L"ntdll.dll"); local 243 reinterpret_cast<NtDeleteKeyFunction>(GetProcAddress(ntdll,
|
H A D | policy_opcodes_unittest.cc | 14 ::GetProcAddress(ntdll, #member)); \ 23 HMODULE ntdll = ::GetModuleHandle(kNtdllName); local
|
/external/chromium_org/tools/traceline/traceline/ |
H A D | main.cc | 99 resolver_("ntdll.dll"), 295 resolver_.Resolve("ntdll!NtQueryPerformanceCounter"))); 376 static const char* kFuncName = "ntdll!DebugPrint"; 384 proc_, resolver_.Resolve("ntdll!ShowSnaps"), &enabled, 1, NULL); 418 options_.vista() ? "ntdll!NtCreateThreadEx" : "ntdll!NtCreateThread"; 460 static const char* kFuncName = "ntdll!CsrNewThread"; 485 static const char* kFuncName = "ntdll!_RtlUserThreadStart"; 514 static const char* kFuncName = "ntdll!RtlDispatchException"; 561 static const char* kFuncName = "ntdll!LdrShutdownThrea [all...] |
/external/chromium_org/components/breakpad/app/ |
H A D | hard_error_handler_win.cc | 45 HMODULE ntdll = ::GetModuleHandleA("NTDLL.DLL"); 50 ntdll,
|
/external/chromium_org/sandbox/win/wow_helper/ |
H A D | service64_resolver.cc | 134 // 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 976 milliseconds