/aoo41x/main/javaunohelper/com/sun/star/lib/uno/adapter/ |
H A D | XInputStreamToInputStreamAdapter.java | 81 if (bytesRead <= 0) { in read() 99 int bytesRead; in read() local 103 if (bytesRead <= 0) { in read() 105 } else if (bytesRead < b.length) { in read() 114 return (bytesRead); in read() 121 long bytesRead=0; in read() local 124 bytesRead = xin.readBytes(tmp, av); in read() 127 bytesRead = xin.readBytes(tmp,len); in read() 133 if (bytesRead <= 0) { in read() 135 } else if (bytesRead < len) { in read() [all …]
|
H A D | InputStreamToXInputStreamAdapter.java | 83 long bytesRead=0; in readBytes() local 92 while ((len > 0) && ((bytesRead = iIn.read(b[0], totalBytesRead, len)) > 0)) { in readBytes() 93 totalBytesRead += (int)bytesRead; in readBytes() 94 len -= (int)bytesRead; in readBytes() 114 long bytesRead=0; in readSomeBytes() local 119 bytesRead = iIn.read(b[0], 0, iIn.available()); in readSomeBytes() 122 bytesRead = iIn.read(b[0], 0, len); in readSomeBytes() 128 if (bytesRead < b[0].length) { in readSomeBytes() 129 int outSize = bytesRead > 0 ? (int)bytesRead : 0; in readSomeBytes() 134 if (bytesRead <= 0) { in readSomeBytes() [all …]
|
/aoo41x/test/testcommon/source/org/openoffice/test/common/ |
H A D | FileUtil.java | 567 int bytesRead; in copyFile() local 568 while ((bytesRead = from.read(buffer)) != -1) in copyFile() 569 to.write(buffer, 0, bytesRead); in copyFile() 605 int bytesRead; in writeToFile() local 606 while ((bytesRead = from.read(buffer)) != -1) in writeToFile() 607 to.write(buffer, 0, bytesRead); in writeToFile() 637 int bytesRead; in pump() local 638 while ((bytesRead = from.read(buffer)) != -1) in pump() 639 to.write(buffer, 0, bytesRead); in pump()
|
/aoo41x/main/scripting/java/com/sun/star/script/framework/io/ |
H A D | XInputStreamImpl.java | 46 int bytesRead = 0; in readBytes() local 47 …while ( ( nBytesToRead > 0 ) && ( bytesRead = is.read( aData[ 0 ], totalBytesRead, nBytesToRead ) … in readBytes() 49 totalBytesRead += bytesRead; in readBytes() 50 nBytesToRead -= bytesRead; in readBytes()
|
/aoo41x/main/extensions/source/macosx/spotlight/ |
H A D | OOoSpotlightImporter.m | 178 int bytesRead = 0; 179 while ((bytesRead = unzReadCurrentFile(unzipFile, buffer, sizeof(buffer))) > 0) { 181 [data appendData:[NSData dataWithBytes:(const void *)buffer length:bytesRead]]; 215 int bytesRead = 0; 216 while ((bytesRead = unzReadCurrentFile(unzipFile, buffer, sizeof(buffer))) > 0) { 218 [data appendData:[NSData dataWithBytes:(const void *)buffer length:bytesRead]];
|
/aoo41x/main/writerfilter/unocomponent/debugservices/rtftok/ |
H A D | XMLScanner.cxx | 187 sal_Int64 bytesRead; member in writerfilter::rtftok::RtfInputSourceImpl 192 bytesRead(0) in RtfInputSourceImpl() 213 bytesRead+=len; in read() 218 xStatusIndicator->setValue((int)(bytesRead*100/bytesTotal)); in read() 223 sprintf(buf1, "Converted %" SAL_PRIdINT64 " KB", bytesRead/1024); in read()
|
H A D | ScannerTestService.cxx | 297 sal_Int64 bytesRead; member in writerfilter::rtftok::RtfInputSourceImpl 302 bytesRead(0) in RtfInputSourceImpl() 323 bytesRead+=len; in read() 328 xStatusIndicator->setValue((int)(bytesRead*100/bytesTotal)); in read() 333 sprintf(buf1, "Converted %" SAL_PRIdINT64 " KB", bytesRead/1024); in read()
|
/aoo41x/main/qadevOOo/tests/java/mod/_simplereg.uno/ |
H A D | SimpleRegistry.java | 83 int bytesRead = 0 ; in copyFile() local 84 while ((bytesRead = fIn.read(buf)) > 0) in copyFile() 85 fOut.write(buf, 0, bytesRead) ; in copyFile()
|
/aoo41x/main/qadevOOo/tests/java/mod/_simreg/ |
H A D | SimpleRegistry.java | 86 int bytesRead = 0 ; in copyFile() local 87 while ((bytesRead = fIn.read(buf)) > 0) in copyFile() 88 fOut.write(buf, 0, bytesRead) ; in copyFile()
|
/aoo41x/main/qadevOOo/tests/java/mod/_nestedreg.uno/ |
H A D | NestedRegistry.java | 100 int bytesRead = 0 ; in copyFile() local 101 while ((bytesRead = fIn.read(buf)) > 0) in copyFile() 102 fOut.write(buf, 0, bytesRead) ; in copyFile()
|
/aoo41x/main/qadevOOo/tests/java/mod/_defreg/ |
H A D | NestedRegistry.java | 103 int bytesRead = 0 ; in copyFile() local 104 while ((bytesRead = fIn.read(buf)) > 0) in copyFile() 105 fOut.write(buf, 0, bytesRead) ; in copyFile()
|
/aoo41x/main/connectivity/source/drivers/hsqldb/ |
H A D | accesslog.hxx | 111 void write( const sal_Int8* buffer, sal_Int32 bytesRead ) in write() argument 113 fwrite( buffer, sizeof(sal_Int8), bytesRead, getLogFile() ); in write()
|
/aoo41x/main/xmlhelp/source/cxxhelp/inc/util/ |
H A D | Decompressor.hxx | 108 sal_Int32 bytesRead() in bytesRead() function in xmlsearch::util::ByteArrayDecompressor
|
/aoo41x/test/testassistant/lib/ |
H A D | testcommon.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/openoffice/
org/openoffice/test/
org/openoffice/test/common/
... |
/aoo41x/main/l10ntools/source/help/ |
H A D | HelpIndexerTool.java | 364 int bytesRead = fis.read( wholeFile, 0, fileLength ); in addToZipRecursively() local
|
/aoo41x/main/graphite/ |
H A D | graphite-2.3.1.patch | 174 size_t bytesRead = fread(pTable, 1, lSize, m_pfile); 175 - isValid = bytesRead == lSize; 177 + isTableValid = bytesRead == lSize;
|