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

  /external/chromium_org/sandbox/win/src/
Wow64.h 21 Wow64(TargetProcess* child, HMODULE ntdll)
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.
sandbox_utils.cc 29 HMODULE ntdll = ::GetModuleHandle(kNtdllName); local
31 GetProcAddress(ntdll, "RtlInitUnicodeString"));
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);
win_utils.cc 303 // with ntdll/imports underneath us. So, we retry a few times, and in the
310 static HMODULE ntdll = ::GetModuleHandle(sandbox::kNtdllName); local
313 *function_ptr = ::GetProcAddress(ntdll, name);
318 ntdll = ::GetModuleHandle(sandbox::kNtdllName);
319 *function_ptr = ::GetProcAddress(ntdll, name);
interception.cc 358 std::wstring ntdll(kNtdllName);
359 if (ntdll == data.dll)
360 return false; // ntdll has to be intercepted from the parent
496 const std::wstring ntdll(kNtdllName);
497 if (it->dll != ntdll)
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,
policy_opcodes_unittest.cc 14 ::GetProcAddress(ntdll, #member)); \
23 HMODULE ntdll = ::GetModuleHandle(kNtdllName); local
  /external/chromium_org/tools/traceline/traceline/
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!LdrShutdownThread"
    [all...]
  /external/chromium_org/base/win/
sampling_profiler.cc 84 HMODULE ntdll = ::GetModuleHandle(L"ntdll.dll"); local
85 if (ntdll != NULL) {
87 ::GetProcAddress(ntdll, "ZwSetIntervalProfile"));
89 ::GetProcAddress(ntdll, "ZwQueryIntervalProfile"));
91 ::GetProcAddress(ntdll, "ZwCreateProfile"));
93 ::GetProcAddress(ntdll, "ZwStartProfile"));
95 ::GetProcAddress(ntdll, "ZwStopProfile"));
  /external/chromium_org/chrome/app/
hard_error_handler_win.cc 43 HMODULE ntdll = ::GetModuleHandleA("NTDLL.DLL");
48 ntdll,
  /external/chromium_org/sandbox/win/wow_helper/
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 620 milliseconds