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

  /external/chromium_org/extensions/browser/api/system_cpu/
cpu_info_provider_win.cc 17 const char kNtQuerySystemInformationName[] = "NtQuerySystemInformation";
19 // See MSDN about NtQuerySystemInformation definition.
33 NtQuerySystemInformationPF NtQuerySystemInformation =
37 CHECK(NtQuerySystemInformation != NULL);
47 NtQuerySystemInformation(SystemProcessorPerformanceInformation,
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
handles.cc 14 NTQUERYSYSTEMINFORMATION NtQuerySystemInformation;
32 NtQuerySystemInformation = reinterpret_cast<NTQUERYSYSTEMINFORMATION>(
33 GetProcAddress(ntdll_handle, "NtQuerySystemInformation"));
35 if (!NtQueryObject || !NtQueryInformationFile || !NtQuerySystemInformation) {
44 NTSTATUS status = NtQuerySystemInformation(
56 status = NtQuerySystemInformation(SystemHandleInformation, system_handles,
  /external/netperf/
netcpu_ntperf.c 77 NT_QUERY_SYSTEM_INFORMATION NtQuerySystemInformation = NULL;
91 /* The NT performance data is accessed through the NtQuerySystemInformation
116 if (NtQuerySystemInformation == NULL) {
155 A direct call to NtQuerySystemInformation (an undocumented NT API)
185 NtQuerySystemInformation =
187 "NtQuerySystemInformation" );
189 if ( !(NtQuerySystemInformation) )
239 if ( (status = NtQuerySystemInformation( SystemProcessorPerformanceInformation,
455 NtQuerySystemInformation = NULL;
  /external/chromium_org/sandbox/win/src/
nt_internals.h 587 typedef NTSTATUS (WINAPI *NtQuerySystemInformation)(

Completed in 252 milliseconds