OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PatchNtdll
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/sandbox/win/src/
service_resolver_unittest.cc
150
NTSTATUS
PatchNtdll
(const char* function, bool relaxed) {
159
NTSTATUS ret =
PatchNtdll
("NtClose", false);
162
ret =
PatchNtdll
("NtCreateFile", false);
166
ret =
PatchNtdll
("NtCreateMutant", false);
170
ret =
PatchNtdll
("NtMapViewOfSection", false);
177
EXPECT_NE(STATUS_SUCCESS,
PatchNtdll
("RtlUlongByteSwap", false));
180
EXPECT_NE(STATUS_SUCCESS,
PatchNtdll
("LdrLoadDll", false));
186
NTSTATUS ret =
PatchNtdll
("NtClose", true);
189
ret =
PatchNtdll
("NtCreateFile", true);
193
ret =
PatchNtdll
("NtCreateMutant", true)
[
all
...]
interception.h
198
bool
PatchNtdll
(bool hot_patch_needed);
interception.cc
133
if (!
PatchNtdll
(hot_patch_needed))
365
bool InterceptionManager::
PatchNtdll
(bool hot_patch_needed) {
/external/chromium_org/sandbox/win/wow_helper/
wow_helper.cc
23
int
PatchNtdll
(HANDLE child, void* thunk, size_t thunk_bytes) {
85
return sandbox::
PatchNtdll
(child, thunk, kPageSize);
Completed in 153 milliseconds