Lines Matching refs:sCmdLine
794 TCHAR *sCmdLine = new TCHAR[ nCmdLineLength ]; in LaunchInstaller() local
796 if ( FAILED( StringCchCopy( sCmdLine, nCmdLineLength, sMsiPath ) ) || in LaunchInstaller()
797 FAILED( StringCchCat( sCmdLine, nCmdLineLength, TEXT( " " ) ) ) || in LaunchInstaller()
798 FAILED( StringCchCat( sCmdLine, nCmdLineLength, pParam ) ) ) in LaunchInstaller()
800 delete [] sCmdLine; in LaunchInstaller()
805 if ( !WIN::CreateProcess( NULL, sCmdLine, NULL, NULL, FALSE, in LaunchInstaller()
809 Log( TEXT( "ERROR: Could not create process %s.\r\n" ), sCmdLine ); in LaunchInstaller()
811 delete [] sCmdLine; in LaunchInstaller()
820 Log( TEXT( "ERROR: While waiting for %s.\r\n" ), sCmdLine ); in LaunchInstaller()
841 delete [] sCmdLine; in LaunchInstaller()
1850 TCHAR *sCmdLine = new TCHAR[ nCmdLineLength ]; in InstallRuntimes() local
1852 if ( FAILED( StringCchCopy( sCmdLine, nCmdLineLength, sRuntimePath ) ) || in InstallRuntimes()
1853 FAILED( StringCchCat( sCmdLine, nCmdLineLength, PARAM_SILENTINSTALL ) ) ) in InstallRuntimes()
1855 delete [] sCmdLine; in InstallRuntimes()
1860 if ( !WIN::CreateProcess( NULL, sCmdLine, NULL, NULL, FALSE, in InstallRuntimes()
1864 Log( TEXT( "ERROR: Could not create process %s.\r\n" ), sCmdLine ); in InstallRuntimes()
1866 delete [] sCmdLine; in InstallRuntimes()
1875 Log( TEXT( "ERROR: While waiting for %s.\r\n" ), sCmdLine ); in InstallRuntimes()
1896 delete [] sCmdLine; in InstallRuntimes()