Symbol: read_write
headers/private/drivers/scsi_periph.h
110
status_t (*read_write)(scsi_periph_device_info *device, scsi_ccb *request,
headers/private/kernel/platform/efi/protocol/simple-network.h
117
bool read_write, size_t offset, size_t buf_size, void* buf) EFIAPI;
src/add-ons/kernel/drivers/disk/scsi/scsi_cd/scsi_cd.cpp
146
status_t status = sSCSIPeripheral->read_write(info->scsi_periph_device,
src/add-ons/kernel/generic/scsi_periph/io.cpp
523
return read_write(device, request, NULL, offset, numBlocks, vecs, vecCount,
src/add-ons/kernel/generic/scsi_periph/io.cpp
541
status_t status = read_write(device, request, operation,
src/libs/stdc++/legacy/filebuf.cc
109
posix_mode |= O_APPEND, read_write |= _IO_IS_APPENDING;
src/libs/stdc++/legacy/filebuf.cc
116
read_write, 0))
src/libs/stdc++/legacy/filebuf.cc
130
xsetflags(read_write, _IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
src/libs/stdc++/legacy/filebuf.cc
85
int read_write;
src/libs/stdc++/legacy/filebuf.cc
90
read_write = 0;
src/libs/stdc++/legacy/filebuf.cc
93
posix_mode = O_WRONLY, read_write = _IO_NO_READS;
src/libs/stdc++/legacy/filebuf.cc
95
posix_mode = O_RDONLY, read_write = _IO_NO_WRITES;
src/libs/stdc++/legacy/filebuf.cc
97
posix_mode = 0, read_write = _IO_NO_READS+_IO_NO_WRITES;
src/system/libroot/posix/glibc/libio/fileops.c
215
_IO_file_open (fp, filename, posix_mode, prot, read_write, is32not64)
src/system/libroot/posix/glibc/libio/fileops.c
220
int read_write;
src/system/libroot/posix/glibc/libio/fileops.c
236
_IO_mask_flags (fp, read_write,_IO_NO_READS+_IO_NO_WRITES+_IO_IS_APPENDING);
src/system/libroot/posix/glibc/libio/fileops.c
239
if ((read_write & (_IO_IS_APPENDING | _IO_NO_READS))
src/system/libroot/posix/glibc/libio/fileops.c
262
int read_write;
src/system/libroot/posix/glibc/libio/fileops.c
279
read_write = _IO_NO_WRITES;
src/system/libroot/posix/glibc/libio/fileops.c
284
read_write = _IO_NO_READS;
src/system/libroot/posix/glibc/libio/fileops.c
289
read_write = _IO_NO_READS|_IO_IS_APPENDING;
src/system/libroot/posix/glibc/libio/fileops.c
308
read_write &= _IO_IS_APPENDING;
src/system/libroot/posix/glibc/libio/fileops.c
349
result = _IO_file_open (fp, filename, omode|oflags, oprot, read_write,
src/system/libroot/posix/glibc/libio/iofdopen.c
108
if (((fd_flags & O_ACCMODE) == O_RDONLY && !(read_write & _IO_NO_WRITES))
src/system/libroot/posix/glibc/libio/iofdopen.c
109
|| ((fd_flags & O_ACCMODE) == O_WRONLY && !(read_write & _IO_NO_READS)))
src/system/libroot/posix/glibc/libio/iofdopen.c
149
(use_mmap && (read_write & _IO_NO_WRITES))
src/system/libroot/posix/glibc/libio/iofdopen.c
155
(use_mmap && (read_write & _IO_NO_WRITES)) ? &_IO_file_jumps_maybe_mmap :
src/system/libroot/posix/glibc/libio/iofdopen.c
170
_IO_mask_flags (&new_f->fp.file, read_write,
src/system/libroot/posix/glibc/libio/iofdopen.c
176
if (do_seek && ((read_write & (_IO_IS_APPENDING | _IO_NO_READS))
src/system/libroot/posix/glibc/libio/iofdopen.c
45
int read_write;
src/system/libroot/posix/glibc/libio/iofdopen.c
67
read_write = _IO_NO_WRITES;
src/system/libroot/posix/glibc/libio/iofdopen.c
70
read_write = _IO_NO_READS;
src/system/libroot/posix/glibc/libio/iofdopen.c
74
read_write = _IO_NO_READS|_IO_IS_APPENDING;
src/system/libroot/posix/glibc/libio/iofdopen.c
87
read_write &= _IO_IS_APPENDING;
src/system/libroot/posix/glibc/libio/iofopncook.c
145
_IO_cookie_init (struct _IO_cookie_file *cfile, int read_write,
src/system/libroot/posix/glibc/libio/iofopncook.c
156
_IO_mask_flags (&cfile->__fp.file, read_write,
src/system/libroot/posix/glibc/libio/iofopncook.c
172
int read_write;
src/system/libroot/posix/glibc/libio/iofopncook.c
184
read_write = _IO_NO_WRITES;
src/system/libroot/posix/glibc/libio/iofopncook.c
187
read_write = _IO_NO_READS;
src/system/libroot/posix/glibc/libio/iofopncook.c
190
read_write = _IO_NO_READS|_IO_IS_APPENDING;
src/system/libroot/posix/glibc/libio/iofopncook.c
196
read_write &= _IO_IS_APPENDING;
src/system/libroot/posix/glibc/libio/iofopncook.c
205
_IO_cookie_init (&new_f->cfile, read_write, cookie, io_functions);