Searched refs:BMemoryIO (Results 1 - 25 of 49) sorted by relevance

12

/haiku/headers/os/support/
H A DDataIO.h93 class BMemoryIO : public BPositionIO { class in inherits:BPositionIO
95 BMemoryIO(void* data, size_t length);
96 BMemoryIO(const void* data, size_t length);
97 virtual ~BMemoryIO();
110 BMemoryIO(const BMemoryIO&);
111 BMemoryIO& operator=(const BMemoryIO&);
/haiku/src/kits/support/
H A DDataIO.cpp321 BMemoryIO::BMemoryIO(void* buffer, size_t length) function in class:BMemoryIO
332 BMemoryIO::BMemoryIO(const void* buffer, size_t length) function in class:BMemoryIO
343 BMemoryIO::~BMemoryIO()
349 BMemoryIO::ReadAt(off_t pos, void* buffer, size_t size)
365 BMemoryIO::WriteAt(off_t pos, const void* buffer, size_t size)
393 BMemoryIO::Seek(off_t position, uint32 seek_mode)
414 BMemoryIO
437 BMemoryIO::BMemoryIO(const BMemoryIO &) function in class:BMemoryIO
[all...]
/haiku/src/tests/apps/haikudepot/
H A DDataIOUtilsTest.cpp34 BMemoryIO memoryIo(jwtToken, strlen(jwtToken));
63 BMemoryIO memoryIo(jwtToken, strlen(jwtToken));
92 BMemoryIO memoryIo(jwtToken, strlen(jwtToken));
H A DDumpExportRepositoryJsonListenerTest.cpp154 BDataIO* inputData = new BMemoryIO(BULK_CONTAINER_REPOSITORY_WITH_RUBBISH,
190 BDataIO* inputData = new BMemoryIO(SINGLE_REPOSITORY_WITH_RUBBISH,
H A DStandardMetaDataJsonEventListenerTest.cpp67 BDataIO* inputData = new BMemoryIO(input, strlen(input));
/haiku/src/tests/kits/support/bmemoryio/
H A DConstTest.cpp23 BMemoryIO mem(buf, 10);
52 return(new ConstTestCaller("BMemoryIO::Const Test", &ConstTest::PerformTest));
H A DSeekTest.cpp22 BMemoryIO mem(buf, 10);
52 return(new SeekTestCaller("BMemoryIO::Seek Test", &SeekTest::PerformTest));
H A DWriteTest.cpp25 BMemoryIO mem(buf, 10);
62 BMemoryIO read_only_mem(const_cast<const char*>(buf), 10);
75 return(new WriteTestCaller("BMemoryIO::Write Test", &WriteTest::PerformTest));
H A DReadTest.cpp27 BMemoryIO mem(buf, 20);
58 return(new ReadTestCaller("BMemoryIO::Read Test", &ReadTest::PerformTest));
H A DSetSizeTest.cpp27 BMemoryIO mem(buf, 10);
59 return(new SetSizeTestCaller("BMemoryIO::SetSize Test", &SetSizeTest::PerformTest));
/haiku/src/apps/haikudepot/server/
H A DJwtTokenHelper.cpp58 BMemoryIO memoryIo(&(token.String())[firstDot + 1], (secondDot - firstDot) - 1);
/haiku/src/kits/mail/
H A Db_mail_message.cpp43 BMemoryIO io(text,length);
58 BMemoryIO io(text,length);
/haiku/src/kits/package/hpkg/
H A DDataReader.cpp45 BMemoryIO output(buffer, size);
/haiku/src/tests/add-ons/translators/exif/
H A Ddump_exif.cpp27 BMemoryIO source(data + 8, length - 8);
/haiku/src/apps/resedit/
H A DResourceRoster.cpp93 BMemoryIO memio(data, length);
H A DImageEditor.cpp24 BMemoryIO memio(data->GetData(), data->GetLength());
H A DResFields.cpp81 BMemoryIO memio(data, length);
/haiku/src/kits/network/libnetservices/
H A DGeolocation.cpp130 BMemoryIO* io = new BMemoryIO(query.String(), query.Length());
/haiku/src/tests/kits/shared/
H A DJsonEndToEndTest.cpp104 BDataIO* inputData = new BMemoryIO(input, strlen(input));
214 BDataIO* inputData = new BMemoryIO(input, strlen(input));
H A DJsonErrorHandlingTest.cpp229 BDataIO *inputData = new BMemoryIO(input, strlen(input));
/haiku/src/kits/shared/
H A DJson.cpp278 BMemoryIO* input = new BMemoryIO(JSON, length);
279 ObjectDeleter<BMemoryIO> inputDeleter(input);
/haiku/src/apps/haiku3d/mesh/
H A DStaticMesh.cpp142 BMemoryIO memoryIO(data, size);
/haiku/src/kits/locale/
H A DDefaultCatalog.cpp229 BMemoryIO memIO(buf, sz);
261 BMemoryIO memIO(buf, sz);
/haiku/src/apps/haikudepot/ui_generic/
H A DSharedBitmap.cpp240 BMemoryIO stream(buffer, size);
/haiku/src/kits/tracker/
H A DBitmaps.cpp248 BMemoryIO stream(data, len);

Completed in 131 milliseconds

12