Searched refs:Read (Results 76 - 100 of 528) sorted by relevance

1234567891011>>

/haiku/src/kits/app/
H A DServerLink.cpp66 fReceiver->Read(&region->fCount, sizeof(int32));
68 fReceiver->Read(&region->fBounds, sizeof(clipping_rect));
71 return fReceiver->Read(region->fData,
75 return fReceiver->Read(&region->fBounds, sizeof(clipping_rect));
97 fReceiver->Read(&opCount, sizeof(int32));
98 fReceiver->Read(&ptCount, sizeof(int32));
102 fReceiver->Read(opList, opCount * sizeof(uint32));
106 fReceiver->Read(ptList, ptCount * sizeof(BPoint));
H A DPropertyInfo.cpp274 flatData.Read(&tmpChar, sizeof(tmpChar));
277 flatData.Read(&fPropCount, sizeof(fPropCount));
280 flatData.Read(&flags, sizeof(flags));
301 flatData.Read(&fPropInfo[pi].extra_data,
308 flatData.Read(&tmpInt, sizeof(tmpInt));
314 flatData.Read(&tmpInt, sizeof(tmpInt));
317 flatData.Read(&tmpInt, sizeof(tmpInt));
323 flatData.Read(&tmpInt, sizeof(tmpInt));
329 flatData.Read(&tmpInt, sizeof(tmpInt));
335 flatData.Read(
[all...]
/haiku/src/bin/cddb_lookup/
H A Dcddb_server.h37 // Read command response.
63 status_t Read(const QueryResponseData& diskData,
66 status_t Read(const BString& category,
/haiku/src/add-ons/media/plugins/ape_reader/LibMonkeysAudio/
H A DPositionBridgeIO.cpp76 int TPositionBridgeIO::Read(void* oBuf, unsigned int oBytesToRead, unsigned int* oBytesRead) function in class:TPositionBridgeIO
80 *oBytesRead = mPositionIO->Read(oBuf, oBytesToRead);
/haiku/src/apps/haikudepot/util/
H A DDataIOUtils.h32 virtual ssize_t Read(void* buffer, size_t size);
49 virtual ssize_t Read(void* buffer, size_t size);
H A DDataIOUtils.cpp50 ConstraintedDataIO::Read(void* buffer, size_t size) function in class:ConstraintedDataIO
55 ssize_t actualRead = fDelegate->Read(buffer, size);
165 Base64DecodingDataIO::Read(void* buffer, size_t size) function in class:Base64DecodingDataIO
/haiku/src/kits/interface/
H A DWindowStack.cpp127 if (fLink->Read<int32>(&count) != B_OK)
169 if (fLink->Read<bool>(&hasWindow) != B_OK)
192 fLink->Read<port_id>(&port);
193 fLink->Read<int32>(&token);
194 status_t status = fLink->Read<team_id>(&team);
H A DPrivateScreen.cpp100 link.Read<int32>(&id);
232 link.Read<BRect>(&fFrame);
257 link.Read<int32>(&id);
348 link.Read<color_map>(fColorMap);
423 link.Read<rgb_color>(&color);
462 link.Read<display_mode>(target);
465 link.Read<bool>(&withinLimits);
487 if (link.Read<uint32>(&count) < B_OK)
496 if (link.Read(modeList, size) < B_OK) {
525 link.Read<display_mod
[all...]
H A DGradient.cpp565 stream->Read(&gradientType, sizeof(Type));
566 status_t status = stream->Read(&colorsCount, sizeof(int32));
577 if ((status = stream->Read(&stop, sizeof(ColorStop))) < B_OK)
586 stream->Read(&gradient->fData.linear.x1, sizeof(float));
587 stream->Read(&gradient->fData.linear.y1, sizeof(float));
588 stream->Read(&gradient->fData.linear.x2, sizeof(float));
589 if ((status = stream->Read(&gradient->fData.linear.y2, sizeof(float))) < B_OK)
593 stream->Read(&gradient->fData.radial.cx, sizeof(float));
594 stream->Read(&gradient->fData.radial.cy, sizeof(float));
595 if ((stream->Read(
[all...]
/haiku/src/kits/tracker/
H A DViewState.cpp110 stream->Read(&fOffset, sizeof(float));
111 stream->Read(&fWidth, sizeof(float));
112 stream->Read(&fAlignment, sizeof(alignment));
114 stream->Read(&fAttrHash, sizeof(uint32));
115 stream->Read(&fAttrType, sizeof(uint32));
116 stream->Read(&fStatField, sizeof(bool));
117 stream->Read(&fEditable, sizeof(bool));
213 if (stream->Read(&key, sizeof(uint32)) <= 0
214 || stream->Read(&version, sizeof(int32)) <=0)
337 stream->Read(
[all...]
/haiku/src/kits/debugger/dwarf/
H A DDwarfExpressionEvaluator.cpp201 uint8 opcode = fDataReader.Read<uint8>(0);
247 uint8 opcode = fDataReader.Read<uint8>(0);
284 uint8 opcode = fDataReader.Read<uint8>(0);
293 _Push(fDataReader.Read<uint8>(0));
297 _Push(fDataReader.Read<int8>(0));
301 _Push(fDataReader.Read<uint16>(0));
305 _Push(fDataReader.Read<int16>(0));
309 _Push(fDataReader.Read<uint32>(0));
313 _Push(fDataReader.Read<int32>(0));
317 _Push(fDataReader.Read<uint6
[all...]
/haiku/src/tests/apps/fake_app_server/
H A DAppServer.cpp218 if (msg.Read<port_id>(&replyPort) < B_OK)
222 msg.Read<int32>(&userID);
249 msg.Read<port_id>(&clientReplyPort);
250 msg.Read<port_id>(&clientLooperPort);
251 msg.Read<team_id>(&clientTeamID);
252 msg.Read<int32>(&clientToken);
301 if (msg.Read<thread_id>(&srvapp_id) < B_OK)
/haiku/headers/private/storage/
H A DFileDescriptorIO.h18 virtual ssize_t Read(void *buffer, size_t size);
/haiku/src/add-ons/accelerants/radeon_hd/
H A Dringqueue.h34 size_t Read(unsigned char* data, size_t bytes);
/haiku/src/add-ons/media/media-add-ons/firewire_dv/
H A DFireWireCard.h27 ssize_t Read(void** buffer);
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DI2CPort.h37 bool Read(int address, char * buffer, int length);
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamBufferedFilterInterface.h19 virtual ssize_t Read(void *buffer, size_t size);
/haiku/src/add-ons/print/drivers/postscript/
H A DFilterIO.h32 ssize_t Read(void* buffer, size_t size);
/haiku/src/add-ons/translators/raw/
H A DReadHelper.h78 fError = fStream.Read((void *)&data, sizeof(T));
93 fError = fStream.Read((void *)data, length);
107 fError = fStream.Read((void *)&value, sizeof(T));
163 fError = fStream.Read(data, length * 2);
/haiku/src/apps/mediaplayer/media_node_framework/audio/
H A DAudioReader.h22 virtual status_t Read(void* buffer, int64 pos, int64 frames) = 0;
H A DAudioResampler.h27 virtual status_t Read(void* buffer, int64 pos, int64 frames);
/haiku/src/bin/hid_decode/
H A Dhid_decode.cpp40 ssize_t read = file.Read(reportDescriptor, descriptorLength);
/haiku/src/libs/icon/flat_icon/
H A DPathCommandQueue.h33 bool Read(LittleEndianBuffer& buffer,
/haiku/src/preferences/appearance/
H A DSysCursorAPI.cpp50 link.Read<cursor_which>(&which);
/haiku/src/preferences/time/
H A DTimeSettings.cpp45 if (file.Read(&tmp, sizeof(BPoint)) == sizeof(BPoint))

Completed in 241 milliseconds

1234567891011>>