Home
last modified time | relevance | path

Searched refs:QueryObject (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/sandbox/win/src/
Dhandle_dispatcher.cc47 static NtQueryObject QueryObject = NULL; in DuplicateHandleProxy() local
48 if (!QueryObject) in DuplicateHandleProxy()
49 ResolveNTFunctionPtr("NtQueryObject", &QueryObject); in DuplicateHandleProxy()
68 QueryObject(handle.Get(), ObjectTypeInformation, type_info, size, &size); in DuplicateHandleProxy()
Dhandle_table.cc88 static NtQueryObject QueryObject = NULL; in UpdateInfo() local
89 if (!QueryObject) in UpdateInfo()
90 ResolveNTFunctionPtr("NtQueryObject", &QueryObject); in UpdateInfo()
105 result = QueryObject(reinterpret_cast<HANDLE>(handle_entry_->Handle), in UpdateInfo()
109 result = QueryObject(reinterpret_cast<HANDLE>(handle_entry_->Handle), in UpdateInfo()
128 result = QueryObject(reinterpret_cast<HANDLE>( in UpdateInfo()
Dhandle_closer_agent.cc19 static NtQueryObject QueryObject = NULL; in QueryObjectTypeInformation() local
20 if (!QueryObject) in QueryObjectTypeInformation()
21 ResolveNTFunctionPtr("NtQueryObject", &QueryObject); in QueryObjectTypeInformation()
25 status = QueryObject(handle, ObjectTypeInformation, buffer, *size, size); in QueryObjectTypeInformation()
Dhandle_closer.cc166 static NtQueryObject QueryObject = NULL; in GetHandleName() local
167 if (!QueryObject) in GetHandleName()
168 ResolveNTFunctionPtr("NtQueryObject", &QueryObject); in GetHandleName()
177 result = QueryObject(handle, ObjectNameInformation, name.get(), in GetHandleName()
Dsandbox_nt_types.h20 NtQueryObjectFunction QueryObject; member
Dpolicy_broker.cc61 INIT_GLOBAL_NT(QueryObject); in SetupNtdllImports()