Lines Matching refs:_pKeyName
402 … void lcl_writeConfigString( FILETYPE _pFile, const sal_Char* _pKeyName, const sal_Char* _pValue ) in lcl_writeConfigString() argument
404 FilePrintF( _pFile, "%s=%s%s", _pKeyName, _pValue, FILE_LINEEND ); in lcl_writeConfigString()
407 void lcl_writeConfigBoolean( FILETYPE _pFile, const sal_Char* _pKeyName, bool _bValue ) in lcl_writeConfigBoolean() argument
409 lcl_writeConfigString( _pFile, _pKeyName, _bValue ? "1" : "0" ); in lcl_writeConfigBoolean()
412 …void lcl_writeConfigFlag( FILETYPE _pFile, const sal_Char* _pKeyName, sal_uIntPtr _nAllFlags, sal_… in lcl_writeConfigFlag() argument
414 lcl_writeConfigBoolean( _pFile, _pKeyName, ( _nAllFlags & _nCheckFlag ) != 0 ); in lcl_writeConfigFlag()
417 … void lcl_writeConfigOutChannel( FILETYPE _pFile, const sal_Char* _pKeyName, sal_uIntPtr _nValue ) in lcl_writeConfigOutChannel() argument
423 lcl_writeConfigString( _pFile, _pKeyName, names[ _nValue ] ); in lcl_writeConfigOutChannel()
425 void lcl_writeHexByte( FILETYPE _pFile, const sal_Char* _pKeyName, sal_uInt8 _nValue ) in lcl_writeHexByte() argument
431 lcl_writeConfigString( _pFile, _pKeyName, stringData->buffer ); in lcl_writeHexByte()
444 bool lcl_isConfigKey( const sal_Char* _pLine, size_t _nLineLen, const sal_Char* _pKeyName ) in lcl_isConfigKey() argument
446 size_t nKeyLength = strlen( _pKeyName ); in lcl_isConfigKey()
450 if ( ( strncmp( _pLine, _pKeyName, nKeyLength ) == 0 ) && ( _pLine[ nKeyLength ] == '=' ) ) in lcl_isConfigKey()
454 …ConfigString( const sal_Char* _pLine, size_t _nLineLen, const sal_Char* _pKeyName, sal_Char* _pVal… in lcl_tryReadConfigString() argument
456 if ( !lcl_isConfigKey( _pLine, _nLineLen, _pKeyName ) ) in lcl_tryReadConfigString()
458 size_t nValuePos = strlen( _pKeyName ) + 1; in lcl_tryReadConfigString()
465 …onfigBoolean( const sal_Char* _pLine, size_t _nLineLen, const sal_Char* _pKeyName, sal_uIntPtr* _o… in lcl_tryReadConfigBoolean() argument
468 … size_t nValueLen = lcl_tryReadConfigString( _pLine, _nLineLen, _pKeyName, aBuf, sizeof( aBuf ) ); in lcl_tryReadConfigBoolean()
489 …utputChannel( const sal_Char* _pLine, size_t _nLineLen, const sal_Char* _pKeyName, sal_uIntPtr* _o… in lcl_tryReadOutputChannel() argument
492 … size_t nValueLen = lcl_tryReadConfigString( _pLine, _nLineLen, _pKeyName, aBuf, sizeof( aBuf ) ); in lcl_tryReadOutputChannel()
496 …void lcl_tryReadConfigFlag( const sal_Char* _pLine, size_t _nLineLen, const sal_Char* _pKeyName, s… in lcl_tryReadConfigFlag() argument
499 … size_t nValueLen = lcl_tryReadConfigString( _pLine, _nLineLen, _pKeyName, aBuf, sizeof( aBuf ) ); in lcl_tryReadConfigFlag()
506 …void lcl_tryReadHexByte( const sal_Char* _pLine, size_t _nLineLen, const sal_Char* _pKeyName, sal_… in lcl_tryReadHexByte() argument
509 … size_t nValueLen = lcl_tryReadConfigString( _pLine, _nLineLen, _pKeyName, aBuf, sizeof( aBuf ) ); in lcl_tryReadHexByte()