Lines Matching refs:sCmdLine
848 TCHAR *sCmdLine = new TCHAR[ nCmdLineLength ]; in LaunchInstaller() local
850 if ( FAILED( StringCchCopy( sCmdLine, nCmdLineLength, sMsiPath ) ) || in LaunchInstaller()
851 FAILED( StringCchCat( sCmdLine, nCmdLineLength, TEXT( " " ) ) ) || in LaunchInstaller()
852 FAILED( StringCchCat( sCmdLine, nCmdLineLength, pParam ) ) ) in LaunchInstaller()
854 delete [] sCmdLine; in LaunchInstaller()
859 if ( !WIN::CreateProcess( NULL, sCmdLine, NULL, NULL, FALSE, in LaunchInstaller()
863 Log( TEXT( "ERROR: Could not create process %s.\r\n" ), sCmdLine ); in LaunchInstaller()
865 delete [] sCmdLine; in LaunchInstaller()
874 Log( TEXT( "ERROR: While waiting for %s.\r\n" ), sCmdLine ); in LaunchInstaller()
895 delete [] sCmdLine; in LaunchInstaller()
1922 TCHAR *sCmdLine = new TCHAR[ nCmdLineLength ]; in InstallRuntimes() local
1924 if ( FAILED( StringCchCopy( sCmdLine, nCmdLineLength, sRuntimePath ) ) || in InstallRuntimes()
1925 FAILED( StringCchCat( sCmdLine, nCmdLineLength, PARAM_SILENTINSTALL ) ) ) in InstallRuntimes()
1927 delete [] sCmdLine; in InstallRuntimes()
1932 if ( !WIN::CreateProcess( NULL, sCmdLine, NULL, NULL, FALSE, in InstallRuntimes()
1936 Log( TEXT( "ERROR: Could not create process %s.\r\n" ), sCmdLine ); in InstallRuntimes()
1938 delete [] sCmdLine; in InstallRuntimes()
1947 Log( TEXT( "ERROR: While waiting for %s.\r\n" ), sCmdLine ); in InstallRuntimes()
1968 delete [] sCmdLine; in InstallRuntimes()