Searched refs:Read (Results 276 - 300 of 528) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/shared/
H A DMemoryRingIO.cpp112 BMemoryRingIO::Read(void* _buffer, size_t size) function in class:BMemoryRingIO
203 Read(newBuffer, availableBytes);
H A DKeymap.cpp84 if (stream.Read(&fKeys, sizeof(fKeys)) < 1)
95 if (stream.Read(&fCharsSize, sizeof(uint32)) < 1)
107 if (stream.Read(fChars, fCharsSize) != (ssize_t)fCharsSize) {
/haiku/src/tests/kits/shared/
H A DJsonEndToEndTest.cpp47 while (inputData->Read(&c, 1) == 1) {
63 while (inputData->Read(&c, 1) == 1) {
/haiku/src/kits/midi/
H A DMidiStore.cpp573 if (fFile->Read(fourcc, 4) != 4)
592 if (fFile->Read(buf, 4) != 4)
617 if (fFile->Read(buf, 2) != 2)
640 if (fFile->Read(&buf, 1) != 1)
654 if (fFile->Read(&buf, 1) != 1)
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPETag.cpp219 nRetVal = m_spIO->Read((unsigned char *) &ID3Tag, sizeof(ID3_TAG), &nBytesRead);
253 nRetVal = m_spIO->Read((unsigned char *) &APETagFooter, APE_TAG_FOOTER_BYTES, &nBytesRead);
266 nRetVal = m_spIO->Read((unsigned char *) spRawTag.GetPtr(), nRawFieldBytes, &nBytesRead);
654 nRetVal = m_spIO->Read(cTagHeader, 3, &nBytesRead);
674 nRetVal = m_spIO->Read(&APETagFooter, APE_TAG_FOOTER_BYTES, &nBytesRead);
H A DAPESimple.cpp201 if ((pIO->Read(spHeadBuffer, nHeadBytes, &nBytesRead) != ERROR_SUCCESS) || (nHeadBytes != int(nBytesRead)))
210 if (pIO->Read(spBuffer, nBytesToRead, &nBytesRead) != ERROR_SUCCESS)
403 THROW_ON_ERROR(GET_IO(spAPEDecompress)->Read(&spTempBuffer[spAPEDecompress->GetInfo(APE_INFO_WAV_TERMINATING_BYTES)], nTagBytes, &nBytesRead))
/haiku/src/servers/media/
H A DDefaultManager.cpp101 if (file.Read(fBeginHeader, size) < size)
107 if (file.Read(&categoryCount, size) < size) {
117 if (file.Read(&msg_header, size) < size) {
122 if (file.Read(&default_type, size) < size) {
133 if (file.Read(fEndHeader,size) < size) {
/haiku/src/add-ons/translators/tiff/
H A DTIFFTranslator.cpp145 return tiff_get_pio(stream)->Read(buf, size);
530 read = inSource->Read(inBuffer, inBufferSize);
544 read = inSource->Read(inBuffer, min_c(inBufferSize, remaining));
566 read = inSource->Read(inBuffer, inBufferSize);
579 read = inSource->Read(inBuffer, min_c(inBufferSize, remaining));
/haiku/src/tests/kits/storage/
H A DFileTest.cpp27 suite->addTest( new TC("BFile::Read/Write Test", &FileTest::RWTest) );
353 CPPUNIT_ASSERT( file.Read(buffer, sizeof(buffer)) < 0 );
362 CPPUNIT_ASSERT( file.Read(buffer, sizeof(buffer)) < 0 );
373 CPPUNIT_ASSERT( file.Read(buffer, sizeof(buffer)) == 0 );
381 CPPUNIT_ASSERT( file.Read(buffer, sizeof(buffer)) == 0 );
400 CPPUNIT_ASSERT( file.Read(readBuffer, 42) == 42 );
402 CPPUNIT_ASSERT( file.Read(readBuffer + 42, 400) == 214 );
486 // same procedure, just using Seek() and Read()
493 CPPUNIT_ASSERT( file.Read(readBuffer, 90) == 90 );
/haiku/src/add-ons/translators/rtf/
H A Dconvert.cpp676 // Read STXT and TEXT headers
677 if (source->Read(&stxtheader, kstxtsize) != kstxtsize)
679 if (source->Read(&txtheader, ktxtsize) != ktxtsize
690 nread = source->Read(buffer, nreed);
697 nread = source->Read(buffer, nreed);
708 read = source->Read(buffer, sizeof(stylHeader));
729 source->Read(unflattened, stylHeader.header.data_size);
831 fileSource->Read((void*)sourceBuf, size);
/haiku/src/add-ons/translators/jpeg2000/
H A DJPEG2000Translator.cpp465 Read(jas_stream_obj_t* object, char* buffer, const int length) function
467 return (*(BPositionIO**)object)->Read(buffer, length);
493 Read,
564 B_TRANSLATE("Read greyscale images as RGB32"),
751 AddTab(new TranslatorReadView(B_TRANSLATE("Read"),
794 status_t err = inSource->Read(header, sizeof(TranslatorBitmap));
853 // Read until end of file or error
856 err = in->Read(buffer, to_read);
882 // Read info about bitmap
884 status_t err = in->Read(
[all...]
/haiku/src/add-ons/translators/psd/
H A DPSDWriter.cpp22 status_t err = stream->Read(&header, sizeof(TranslatorBitmap));
287 fStream->Read(rgba, sizeof(uint32));
301 fStream->Read(rgba, sizeof(uint32));
/haiku/src/kits/support/
H A DDataIO.cpp37 BDataIO::Read(void* buffer, size_t size) function in class:BDataIO
65 ssize_t bytesRead = Read(out, bytesRemaining);
186 BPositionIO::Read(void* buffer, size_t size) function in class:BPositionIO
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteHWInterface.cpp267 message.Read(width);
268 result = message.Read(height);
305 if (message.Read(token) == B_OK) {
/haiku/src/apps/mediaplayer/media_node_framework/audio/
H A DAudioFormatConverter.cpp190 AudioFormatConverter::Read(void* buffer, int64 pos, int64 frames) function in class:AudioFormatConverter
192 TRACE("AudioFormatConverter::Read(%p, %lld, %lld)\n", buffer, pos, frames);
195 TRACE("AudioFormatConverter::Read() done 1\n");
203 TRACE("AudioFormatConverter::Read() done 2\n");
204 return fSource->Read(buffer, pos, frames);
234 error = fSource->Read(inBuffer, pos, frames);
367 TRACE("AudioFormatConverter::Read() done\n");
/haiku/headers/private/kernel/boot/net/
H A DTCP.h72 status_t Read(void* buffer, size_t bufferSize, size_t* bytesRead, bigtime_t timeout = 0);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DNodeHandle.h49 status_t Read(off_t pos, void* buffer, size_t size,
/haiku/src/system/kernel/cache/
H A Dvnode_store.cpp46 VMVnodeCache::Read(off_t offset, const generic_io_vec* vecs, size_t count, function in class:VMVnodeCache
/haiku/src/tests/apps/fake_app_server/
H A DServerApp.cpp291 link.Read<int32>(&index);
/haiku/src/tests/kits/app/common/
H A DPipedAppRunner.cpp124 return fOutput.Read(buffer, size);
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DNode.cpp115 Node::Read(off_t pos, void* buffer, size_t size, size_t& _bytesRead) function in class:Node
H A DNode.h43 virtual status_t Read(off_t pos, void* buffer, size_t size,
/haiku/src/kits/debug/
H A DSymbolLookup.h105 template<typename Type> inline const Type &Read( function in class:BPrivate::Debug::RemoteMemoryAccessor
/haiku/src/add-ons/print/transports/lpr/
H A DLprTransport.cpp139 LprTransport::Read(void *, size_t) function in class:LprTransport
/haiku/src/add-ons/kernel/drivers/audio/ac97/sis7018/
H A DDriver.cpp159 return device->Read((uint8 *)buffer, numBytes);

Completed in 128 milliseconds

<<11121314151617181920>>