Lines Matching refs:pValue

339                 LPTSTR pValue = 0;  in ReadProfile()  local
341 pCurLine += GetNameValue( pCurLine, &pName, &pValue ); in ReadProfile()
345 m_pDatabase = pValue; in ReadProfile()
346 Log( TEXT( " Database = %s\r\n" ), pValue ); in ReadProfile()
350 m_pReqVersion = pValue; in ReadProfile()
351 Log( TEXT( " msiversion = %s\r\n" ), pValue ); in ReadProfile()
355 m_pProductName = pValue; in ReadProfile()
356 Log( TEXT( " productname = %s\r\n" ), pValue ); in ReadProfile()
361 m_pUpgradeKey = pValue; in ReadProfile()
362 Log( TEXT( " upgradekey = %s\r\n" ), pValue ); in ReadProfile()
366 m_pProductVersion = pValue; in ReadProfile()
367 Log( TEXT( " productversion = %s\r\n" ), pValue ); in ReadProfile()
371 delete [] pValue; in ReadProfile()
376 delete [] pValue; in ReadProfile()
394 LPTSTR pValue = 0; in ReadProfile() local
400 nNext = GetNameValue( pCurLine, &pName, &pValue ); in ReadProfile()
403 Log( TEXT( " Languages = %s\r\n" ), pValue ); in ReadProfile()
404 m_nLanguageCount = _tcstol( pValue, &pLastChar, 10 ); in ReadProfile()
406 delete [] pValue; in ReadProfile()
419 pCurLine += GetNameValue( pCurLine, &pName, &pValue ); in ReadProfile()
420 m_ppLanguageList[ i ] = new LanguageDataX( pValue ); in ReadProfile()
421 Log( TEXT( " Language = %s\r\n" ), pValue ); in ReadProfile()
426 delete [] pValue; in ReadProfile()
572 int SetupAppX::GetNameValue( TCHAR* pLine, TCHAR** pName, TCHAR** pValue ) in GetNameValue() argument
575 *pValue = 0; in GetNameValue()
607 *pValue = new TCHAR[ nValueLen ]; in GetNameValue()
609 if ( *pValue ) in GetNameValue()
610 StringCchCopy( *pValue, nValueLen, pChar ); in GetNameValue()