OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BytesRead
(Results
1 - 12
of
12
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Support/
RandomNumberGenerator.cpp
72
ssize_t
BytesRead
= read(Fd, Buffer, Size);
73
if (
BytesRead
== -1)
75
else if (
BytesRead
!= static_cast<ssize_t>(Size))
Path.cpp
990
int
BytesRead
= 0, BytesWritten = 0;
992
BytesRead
= read(ReadFD, Buf, BufSize);
993
if (
BytesRead
<= 0)
995
while (
BytesRead
) {
996
BytesWritten = write(WriteFD, Buf,
BytesRead
);
999
BytesRead
-= BytesWritten;
1006
if (
BytesRead
< 0 || BytesWritten < 0)
1048
int
BytesRead
= 0;
1050
BytesRead
= read(FD, Buf.data(), BufSize);
1051
if (
BytesRead
<= 0
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_x86_64.cc
35
ssize_t
BytesRead
;
37
while (BytesToRead && (
BytesRead
= read(Fd, Begin, BytesToRead))) {
38
if (
BytesRead
== -1) {
45
TotalBytesRead +=
BytesRead
;
46
BytesToRead -=
BytesRead
;
47
Begin +=
BytesRead
;
59
ssize_t
BytesRead
;
61
std::tie(
BytesRead
, Success) = retryingReadSome(Fd, Line, Line + BufSize);
/src/sys/external/bsd/acpica/dist/common/
acgetline.c
145
*
BytesRead
- Where the actual byte count is returned
160
UINT32 *
BytesRead
)
273
if (
BytesRead
)
275
*
BytesRead
= EndOfLine;
/src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/
BitstreamReader.h
172
unsigned
BytesRead
;
174
BytesRead
= sizeof(word_t);
180
BytesRead
= BitcodeBytes.size() - NextChar;
182
for (unsigned B = 0; B !=
BytesRead
; ++B)
185
NextChar +=
BytesRead
;
186
BitsInCurWord =
BytesRead
* 8;
BitstreamWriter.h
173
ssize_t
BytesRead
= FS->read(Bytes, BytesFromDisk);
174
(void)
BytesRead
; // silence warning
175
assert(
BytesRead
>= 0 && static_cast<size_t>(
BytesRead
) == BytesFromDisk);
/src/sys/dev/acpi/acpica/
OsdMisc.c
164
AcpiOsGetLine(char *Buffer, UINT32 BufferLength, UINT32 *
BytesRead
)
/src/sys/external/bsd/acpica/dist/os_specific/service_layers/
osunixxf.c
93
UINT32 *
BytesRead
);
531
*
BytesRead
- Where the actual byte count is returned
545
UINT32 *
BytesRead
)
579
if (
BytesRead
)
581
*
BytesRead
= EndOfLine;
oswinxf.c
534
*
BytesRead
- Where the actual byte count is returned
546
UINT32 *
BytesRead
)
578
if (
BytesRead
)
580
*
BytesRead
= i;
oszephyr.c
151
*
BytesRead
- Where the actual byte count is returned
163
UINT32 *
BytesRead
)
/src/sys/external/bsd/acpica/dist/include/
acpiosxf.h
501
UINT32 *
BytesRead
);
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
winioctl.d
424
LARGE_INTEGER
BytesRead
;
Completed in 48 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026