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

  /external/chromium_org/chrome_elf/
ntdll_cache.h 14 // Caches the addresses of all functions exported by ntdll in |g_ntdll_lookup|.
17 extern FunctionLookupTable g_ntdll_lookup;
ntdll_cache_unittest.cc 27 g_ntdll_lookup["A_SHAFinal"]); local
29 g_ntdll_lookup["ZwTraceControl"]); local
ntdll_cache.cc 18 FunctionLookupTable g_ntdll_lookup; variable
39 g_ntdll_lookup[std::string(name)] = function_addr;
  /external/chromium_org/chrome_elf/create_file/
chrome_create_file.cc 209 if (!g_ntdll_lookup["RtlInitUnicodeString"])
219 } else if (g_ntdll_lookup["NtCreateFile"]) {
221 reinterpret_cast<NtCreateFileFunction>(g_ntdll_lookup["NtCreateFile"]);
228 g_ntdll_lookup["RtlInitUnicodeString"]);
chrome_create_file_unittest.cc 108 reinterpret_cast<NtCreateFileFunction>(g_ntdll_lookup["NtCreateFile"]);
120 g_ntdll_lookup["NtCreateFile"] = reinterpret_cast<void(*)()>(
125 g_ntdll_lookup["NtCreateFile"] = reinterpret_cast<void*>(old_func_ptr_);

Completed in 55 milliseconds