Searched refs:readBytes (Results 1 - 14 of 14) sorted by relevance

/haiku/headers/os/kernel/
H A Dfs_attr.h24 off_t pos, void *buffer, size_t readBytes);
26 off_t pos, const void *buffer, size_t readBytes);
/haiku/headers/private/fs_shell/
H A Dfssh_fs_attr.h25 fssh_size_t readBytes);
28 fssh_size_t readBytes);
/haiku/headers/build/os/kernel/
H A Dfs_attr.h25 off_t pos, void *buffer, size_t readBytes);
27 off_t pos, const void *buffer, size_t readBytes);
/haiku/src/apps/musiccollection/
H A DMusicCollectionWindow.cpp68 ssize_t readBytes; local
69 readBytes = node.ReadAttr("Audio:Artist", B_STRING_TYPE, 0, buffer,
71 if (readBytes < 0)
72 readBytes = 0;
73 if (readBytes >= bufferSize)
74 readBytes = bufferSize - 1;
75 buffer[readBytes] = '\0';
80 readBytes = node.ReadAttr("Audio:Album", B_STRING_TYPE, 0, buffer,
82 if (readBytes < 0)
83 readBytes
[all...]
/haiku/src/system/boot/loader/net/
H A DTCP.cpp329 size_t readBytes = packet->DataSize() - packetOffset; local
330 if (readBytes > bufferSize)
331 readBytes = bufferSize;
333 memcpy(buffer, (uint8*)packet->Data() + packetOffset, readBytes);
334 *bytesRead = readBytes;
335 if (!packet->ProvidesSequenceNumber(fNextSequence + readBytes)) {
340 fNextSequence += readBytes;
345 buffer = (uint8*)buffer + readBytes;
346 bufferSize -= readBytes;
351 readBytes
[all...]
/haiku/src/system/libroot/os/
H A Dfs_attr.cpp50 void* buffer, size_t readBytes)
52 ssize_t bytes = _kern_read_attr(fd, attribute, pos, buffer, readBytes);
49 fs_read_attr(int fd, const char* attribute, uint32 , off_t pos, void* buffer, size_t readBytes) argument
/haiku/src/build/libroot/
H A Dremapped_functions.h52 off_t pos, void *buffer, size_t readBytes);
54 off_t pos, const void *buffer, size_t readBytes);
H A Dfs_attr_haiku.cpp140 void *buffer, size_t readBytes)
153 pos, buffer, readBytes);
157 pos, buffer, readBytes);
139 _haiku_build_fs_read_attr(int fd, const char* attribute, uint32 type, off_t pos, void *buffer, size_t readBytes) argument
H A Dfs_attr_untyped.cpp454 void *buffer, size_t readBytes)
457 if (pos < 0 || pos + readBytes > kMaxAttributeLength
509 if ((size_t)bytesRead > readBytes)
510 bytesRead = readBytes;
453 fs_read_attr(int fd, const char *_attribute, uint32 type, off_t pos, void *buffer, size_t readBytes) argument
H A Dfunction_remapper.cpp352 void *buffer, size_t readBytes)
357 readBytes);
351 fs_read_attr(int fd, const char* attribute, uint32 type, off_t pos, void *buffer, size_t readBytes) argument
H A Dfs_attr_generic.cpp543 void *buffer, size_t readBytes)
551 ssize_t bytesRead = read_pos(attrFD, pos, buffer, readBytes);
568 const void *buffer, size_t readBytes)
580 return readBytes;
586 ssize_t bytesWritten = write_pos(attrFD, pos, buffer, readBytes);
542 fs_read_attr(int fd, const char *attribute, uint32 type, off_t pos, void *buffer, size_t readBytes) argument
567 fs_write_attr(int fd, const char *attribute, uint32 type, off_t pos, const void *buffer, size_t readBytes) argument
/haiku/headers/private/kernel/
H A Dvfs.h219 void *buffer, size_t readBytes);
221 off_t pos, const void *buffer, size_t readBytes);
/haiku/headers/private/system/
H A Dsyscalls.h308 void *buffer, size_t readBytes);
310 off_t pos, const void *buffer, size_t readBytes);
/haiku/src/system/kernel/fs/
H A Dvfs.cpp8053 void *buffer, size_t readBytes)
8059 ssize_t bytesRead = _kern_read(attrFD, pos, buffer, readBytes);
9719 size_t readBytes)
9735 ssize_t bytes = _user_read(attr, pos, userBuffer, readBytes);
8052 fs_read_attr(int fd, const char *attribute, uint32 type, off_t pos, void *buffer, size_t readBytes) argument
9718 _user_read_attr(int fd, const char* userAttribute, off_t pos, void* userBuffer, size_t readBytes) argument

Completed in 204 milliseconds