21 references to ProcessManager
System (21)
services\monitoring\system\diagnosticts\Process.cs (14)
425
mainWindowHandle =
ProcessManager
.GetMainWindowHandle(processId);
557
ModuleInfo[] moduleInfos =
ProcessManager
.GetModuleInfos(processId);
872
if (processName.Length == 15 &&
ProcessManager
.IsNt &&
ProcessManager
.IsOSOlderThanXP && !isRemoteMachine) {
1357
SetProcessId(
ProcessManager
.GetProcessIdFromHandle(m_processHandle));
1378
processInfo =
ProcessManager
.GetProcessInfo(processId, machineName);
1452
if (
ProcessManager
.IsNt) {
1499
if (
ProcessManager
.IsNt) {
1513
if (!
ProcessManager
.IsProcessRunning(processId, machineName)) {
1517
return new Process(machineName,
ProcessManager
.IsRemoteMachine(machineName), processId, null);
1594
bool isRemoteMachine =
ProcessManager
.IsRemoteMachine(machineName);
1595
ProcessInfo[] processInfos =
ProcessManager
.GetProcessInfos(machineName);
1686
handle =
ProcessManager
.OpenProcess(processId, access, throwIfExited);
2042
if (
ProcessManager
.IsNt) {
services\monitoring\system\diagnosticts\ProcessManager.cs (6)
158
ProcessInfo[] processInfos =
ProcessManager
.GetProcessInfosCore(machineName, isRemoteMachine);
510
if(
ProcessManager
.IsOSOlderThanXP) {
579
processHandle =
ProcessManager
.OpenProcess(processId, NativeMethods.PROCESS_QUERY_INFORMATION | NativeMethods.PROCESS_VM_READ, true);
610
if (!
ProcessManager
.IsOSOlderThanXP) {
613
hCurProcess =
ProcessManager
.OpenProcess(NativeMethods.GetCurrentProcessId(), NativeMethods.PROCESS_QUERY_INFORMATION, true);
1187
if (
ProcessManager
.IsOSOlderThanXP && (processName.Length == 15)) {
services\monitoring\system\diagnosticts\ProcessThread.cs (1)
332
return
ProcessManager
.OpenThread(threadInfo.threadId, access);