Home
last modified time | relevance | path

Searched refs:nPathLen (Results 1 – 8 of 8) sorted by relevance

/AOO42X/main/package/source/package/zipapi/
H A DZipFile.cxx647 sal_Int16 nVersion, nFlag, nHow, nPathLen, nExtraLen; in readLOC() local
662 aGrabber >> nPathLen; in readLOC()
664 rEntry.nOffset = static_cast < sal_Int32 > (aGrabber.getPosition()) + nPathLen + nExtraLen; in readLOC()
667 uno::Sequence < sal_Int8 > aNameBuffer( nPathLen ); in readLOC()
668 sal_Int32 nRead = aGrabber.readBytes( aNameBuffer, nPathLen ); in readLOC()
676 if ( rEntry.nPathLen == -1 ) // the file was created in readLOC()
678 rEntry.nPathLen = nPathLen; in readLOC()
686 || rEntry.nPathLen != nPathLen in readLOC()
804 aMemGrabber >> aEntry.nPathLen; in readCEN()
813 if ( aEntry.nPathLen < 0 ) in readCEN()
[all …]
/AOO42X/main/sal/osl/os2/
H A Dprofile.c880 sal_uInt32 nPathLen = 0;
966 nPathLen = strHome->length;
973 if (nLen + nPathLen >= _MAX_PATH)
976 strcpy(Path + nPathLen, pPath);
977 nPathLen += nLen;
998 nPathLen = strConfig->length;
1005 if (nLen + nPathLen >= _MAX_PATH)
1008 strcpy(Path + nPathLen, pPath);
1009 nPathLen += nLen;
1018 … if (((nPathLen = GetWindowsDirectoryW(Path, _MAX_PATH)) == 0) || (nPathLen >= _MAX_PATH))
[all …]
/AOO42X/main/sal/osl/w32/
H A Dprofile.cxx891 sal_uInt32 nPathLen = 0; in osl_getProfileName() local
977 nPathLen = strHome->length; in osl_getProfileName()
984 if (nLen + nPathLen >= aPath.getBufSizeInSymbols()) in osl_getProfileName()
987 copy_ustr_n(aPath + nPathLen, pPath, nLen+1); in osl_getProfileName()
988 nPathLen += nLen; in osl_getProfileName()
1009 nPathLen = strConfig->length; in osl_getProfileName()
1016 if (nLen + nPathLen >= aPath.getBufSizeInSymbols()) in osl_getProfileName()
1019 copy_ustr_n(aPath + nPathLen, pPath, nLen+1); in osl_getProfileName()
1020 nPathLen += nLen; in osl_getProfileName()
1029 …if (((nPathLen = GetWindowsDirectoryW(::osl::mingw_reinterpret_cast<LPWSTR>(aPath), aPath.getBufSi… in osl_getProfileName()
[all …]
/AOO42X/main/oox/source/core/
H A Drelationshandler.cxx51 sal_Int32 nPathLen = ::std::max< sal_Int32 >( rFragmentPath.lastIndexOf( '/' ) + 1, 0 ); in lclGetRelationsPath() local
53 OUStringBuffer( rFragmentPath.copy( 0, nPathLen ) ). // file path including slash in lclGetRelationsPath()
55 append( rFragmentPath.copy( nPathLen ) ). // file name after path in lclGetRelationsPath()
/AOO42X/main/comphelper/source/misc/
H A Dstoragehelper.cxx524 const sal_Int32 nPathLen = aPath.getLength(); in PathHasSegment() local
527 if ( nSegLen && nPathLen >= nSegLen ) in PathHasSegment()
540 if ( nPathLen == nSegLen || aPath.getStr()[nSegLen] == (sal_Unicode)'/' ) in PathHasSegment()
544 …if ( !bResult && nPathLen > nSegLen && aPath.copy( nPathLen - nSegLen - 1, nSegLen + 1 ).equals( a… in PathHasSegment()
/AOO42X/main/package/source/package/zippackage/
H A DZipPackageFolder.cxx181 rDest.nPathLen = rSource.nPathLen; in copyZipEntry()
353 …pTempEntry->nPathLen = (sal_Int16)( ::rtl::OUStringToOString( pTempEntry->sPath, RTL_TEXTENCODING_… in saveChild()
694 …pTempEntry->nPathLen = (sal_Int16)( ::rtl::OUStringToOString( rPath, RTL_TEXTENCODING_UTF8 ).getLe… in saveContents()
H A DZipPackageStream.cxx100 aEntry.nPathLen = -1; in ZipPackageStream()
123 aEntry.nPathLen = rInEntry.nPathLen; in setZipEntryOnLoading()
/AOO42X/main/package/inc/
H A DZipEntry.hxx38 sal_Int16 nPathLen; member