Searched refs:bufsize (Results 1 – 10 of 10) sorted by relevance
/aoo41x/main/extensions/source/oooimprovement/ |
H A D | soapsender.cxx | 127 const sal_Int32 bufsize = 1024; in send() local 129 Sequence<sal_Int8> buf(bufsize); in send() 130 char buf2[bufsize]; in send() 133 bytes_read = temp_stream->readBytes(buf, bufsize); in send() 141 } while(bytes_read == bufsize); in send() 146 const sal_Int32 bufsize = 1024; in send() local 147 char buf[bufsize]; in send() 148 sal_Int32 bytes_read = socket->read(buf, bufsize); in send()
|
H A D | logpacker.cxx | 93 const sal_Int32 bufsize = 1024; in pack() local 96 Sequence<sal_Int8> buf(bufsize); in pack() 99 read_bytes = unzipped_stream->readBytes(buf, bufsize); in pack() 103 } while(read_bytes == bufsize); in pack()
|
H A D | soaprequest.cxx | 118 const sal_Int32 bufsize = 3; in writeFile() local 120 Sequence<sal_Int8> buf(bufsize); in writeFile() 123 bytes_read = file->readBytes(buf, bufsize); in writeFile() 126 } while(bytes_read == bufsize); in writeFile()
|
/aoo41x/main/sal/qa/sal/ |
H A D | test_types.cxx | 39 std::size_t const bufsize = 1000; in testPrintf() local 40 char buf[bufsize]; in testPrintf() 41 int n = snprintf(buf, bufsize, format, argument); in testPrintf() 42 CPPUNIT_ASSERT(n >= 0 && sal::static_int_cast< unsigned int >(n) < bufsize); in testPrintf()
|
/aoo41x/main/tools/source/fsys/ |
H A D | unx.cxx | 103 int bufsize; in GetMountEntry() local 104 if (mntctl (MCTL_QUERY, sizeof bufsize, (char*) &bufsize)) in GetMountEntry() 107 char* buffer = (char *)malloc( bufsize * sizeof(char) ); in GetMountEntry() 108 if (mntctl (MCTL_QUERY, bufsize, buffer) != -1) in GetMountEntry() 110 vmt < buffer + bufsize; in GetMountEntry()
|
/aoo41x/main/toolkit/src2xml/source/ |
H A D | srclexer.py | 115 self.bufsize = len(self.chars) 449 if i < self.bufsize - 1 and self.chars[i+1] == '/': 453 while i < self.bufsize: 460 elif i < self.bufsize - 1 and self.chars[i+1] == '*': 463 while i < self.bufsize: 490 while i < self.bufsize:
|
/aoo41x/main/rsc/source/rscpp/ |
H A D | cpp6.c | 525 getfile(int bufsize, char* name) in getfile() argument 534 file = (FILEINFO *) getmem(sizeof (FILEINFO) + bufsize + size); in getfile()
|
H A D | cpp.h | 393 FILEINFO *getfile( int bufsize, char *name);
|
H A D | cpp3.c | 89 extern FILEINFO *getfile( int bufsize, char *filename ); /* BP */ in addfile()
|
/aoo41x/main/libtextcat/ |
H A D | libtextcat-2.2.patch | 794 - tmp = prepbuffer( buffer, bufsize ); 795 + tmp = prepbuffer( buffer, bufsize );
|
Completed in 57 milliseconds