Home
last modified time | relevance | path

Searched refs:bytesRead (Results 1 – 16 of 16) sorted by relevance

/aoo4110/main/javaunohelper/com/sun/star/lib/uno/adapter/
H A DXInputStreamToInputStreamAdapter.java81 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 DInputStreamToXInputStreamAdapter.java83 long bytesRead=0; in readBytes() local
85 bytesRead = iIn.read(b[0], 0, iIn.available()); in readBytes()
88 bytesRead = iIn.read(b[0], 0, len); in readBytes()
94 if (bytesRead <= 0) { in readBytes()
97 return ((int)bytesRead); in readBytes()
110 long bytesRead=0; in readSomeBytes() local
112 bytesRead = iIn.read(b[0], 0, iIn.available()); in readSomeBytes()
115 bytesRead = iIn.read(b[0], 0, len); in readSomeBytes()
121 if (bytesRead <= 0) { in readSomeBytes()
124 return ((int)bytesRead); in readSomeBytes()
/aoo4110/test/testcommon/source/org/openoffice/test/common/
H A DFileUtil.java567 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()
/aoo4110/main/scripting/java/com/sun/star/script/framework/io/
H A DXInputStreamImpl.java46 int bytesRead = 0; in readBytes() local
47 …while ( ( bytesRead = is.read( aData[ 0 ], totalBytesRead, nBytesToRead ) ) > 0 && ( totalBytesRea… in readBytes()
49 totalBytesRead += bytesRead; in readBytes()
50 nBytesToRead -= bytesRead; in readBytes()
/aoo4110/main/extensions/source/macosx/spotlight/
H A DOOoSpotlightImporter.m178 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]];
/aoo4110/main/writerfilter/unocomponent/debugservices/rtftok/
H A DXMLScanner.cxx187 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 DScannerTestService.cxx297 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()
/aoo4110/main/qadevOOo/tests/java/mod/_simplereg.uno/
H A DSimpleRegistry.java83 int bytesRead = 0 ; in copyFile() local
84 while ((bytesRead = fIn.read(buf)) > 0) in copyFile()
85 fOut.write(buf, 0, bytesRead) ; in copyFile()
/aoo4110/main/qadevOOo/tests/java/mod/_simreg/
H A DSimpleRegistry.java86 int bytesRead = 0 ; in copyFile() local
87 while ((bytesRead = fIn.read(buf)) > 0) in copyFile()
88 fOut.write(buf, 0, bytesRead) ; in copyFile()
/aoo4110/main/qadevOOo/tests/java/mod/_nestedreg.uno/
H A DNestedRegistry.java100 int bytesRead = 0 ; in copyFile() local
101 while ((bytesRead = fIn.read(buf)) > 0) in copyFile()
102 fOut.write(buf, 0, bytesRead) ; in copyFile()
/aoo4110/main/qadevOOo/tests/java/mod/_defreg/
H A DNestedRegistry.java103 int bytesRead = 0 ; in copyFile() local
104 while ((bytesRead = fIn.read(buf)) > 0) in copyFile()
105 fOut.write(buf, 0, bytesRead) ; in copyFile()
/aoo4110/main/connectivity/source/drivers/hsqldb/
H A Daccesslog.hxx111 void write( const sal_Int8* buffer, sal_Int32 bytesRead ) in write() argument
113 fwrite( buffer, sizeof(sal_Int8), bytesRead, getLogFile() ); in write()
/aoo4110/main/xmlhelp/source/cxxhelp/inc/util/
H A DDecompressor.hxx108 sal_Int32 bytesRead() in bytesRead() function in xmlsearch::util::ByteArrayDecompressor
/aoo4110/test/testassistant/lib/
H A Dtestcommon.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/openoffice/ org/openoffice/test/ org/openoffice/test/common/ ...
/aoo4110/main/l10ntools/source/help/
H A DHelpIndexerTool.java364 int bytesRead = fis.read( wholeFile, 0, fileLength ); in addToZipRecursively() local
/aoo4110/main/graphite/
H A Dgraphite-2.3.1.patch174 size_t bytesRead = fread(pTable, 1, lSize, m_pfile);
175 - isValid = bytesRead == lSize;
177 + isTableValid = bytesRead == lSize;

Completed in 75 milliseconds