HomeSort by relevance Sort by last modified time
    Searched defs:NtQueryObject (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
handles.cc 12 NTQUERYOBJECT NtQueryObject;
28 NtQueryObject = reinterpret_cast<NTQUERYOBJECT>(
29 GetProcAddress(ntdll_handle, "NtQueryObject"));
35 if (!NtQueryObject || !NtQueryInformationFile || !NtQuerySystemInformation) {
73 status = NtQueryObject(reinterpret_cast<HANDLE>(h),
84 status = NtQueryObject(reinterpret_cast<HANDLE>(h),
95 status = NtQueryObject(reinterpret_cast<HANDLE>(h),
106 status = NtQueryObject(reinterpret_cast<HANDLE>(h)
    [all...]
  /external/chromium_org/sandbox/win/src/
registry_policy.cc 34 NtQueryObjectFunction NtQueryObject = NULL;
35 ResolveNTFunctionPtr("NtQueryObject", &NtQueryObject);
44 status = NtQueryObject(handle, ObjectBasicInformation, &info, sizeof(info),
win_utils.cc 241 NtQueryObjectFunction NtQueryObject = NULL;
242 ResolveNTFunctionPtr("NtQueryObject", &NtQueryObject);
248 NTSTATUS status = NtQueryObject(handle, ObjectNameInformation, name, size,
258 status = NtQueryObject(handle, ObjectNameInformation, name, size, &size);
nt_internals.h 593 typedef NTSTATUS (WINAPI *NtQueryObject)(

Completed in 62 milliseconds