3 writes to _processHelper
Microsoft.TestPlatform.CrossPlatEngine (3)
DataCollection\DataCollectionLauncher.cs (1)
38
_processHelper
= processHelper;
DataCollection\DefaultDataCollectionLauncher.cs (1)
43
_processHelper
= processHelper;
DataCollection\DotnetDataCollectionLauncher.cs (1)
51
_processHelper
= processHelper;
8 references to _processHelper
Microsoft.TestPlatform.CrossPlatEngine (8)
DataCollection\DataCollectionLauncher.cs (1)
53
_processHelper
.TryGetExitCode(process, out int exitCode);
DataCollection\DefaultDataCollectionLauncher.cs (4)
58
var currentProcessPath =
_processHelper
.GetCurrentProcessFileName();
62
string dataCollectorProcessName =
_processHelper
.GetCurrentProcessArchitecture() == PlatformArchitecture.ARM64
71
var dataCollectorProcess =
_processHelper
.LaunchProcess(dataCollectorProcessPath, argumentsString, Directory.GetCurrentDirectory(), environmentVariables, ErrorReceivedCallback, ExitCallBack, null);
72
DataCollectorProcessId =
_processHelper
.GetProcessId(dataCollectorProcess);
DataCollection\DotnetDataCollectionLauncher.cs (3)
99
var currentProcessFileName =
_processHelper
.GetCurrentProcessFileName();
105
var dataCollectorProcess =
_processHelper
.LaunchProcess(currentProcessFileName, argumentsString, Directory.GetCurrentDirectory(), environmentVariables, ErrorReceivedCallback, ExitCallBack, null);
107
DataCollectorProcessId =
_processHelper
.GetProcessId(dataCollectorProcess);