/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_interceptors_ioctl_netbsd.inc | 427 _(KIOCTRANS, READ, sizeof(int)); 431 _(KIOCCMD, READ, sizeof(int)); 436 _(KIOCSLED, READ, sizeof(char)); 962 _(DIOCWDINFO, READ, 0); 972 _(DIOCLOCK, READ, sizeof(int)); 1025 _(FIONBIO, READ, sizeof(int)); 1051 _(TIOCSETN, READ, 0); 1234 _(TIOCSETAW, READ, 0); 1235 _(TIOCSETAF, READ, 0); 1249 _(TIOCPKT, READ, sizeof(int)); [all …]
|
H A D | sanitizer_common_interceptors_ioctl.inc | 24 READ, 51 _(FIOASYNC, READ, sizeof(int)); 54 _(FIONBIO, READ, sizeof(int)); 68 _(TIOCMBIC, READ, sizeof(int)); 69 _(TIOCMBIS, READ, sizeof(int)); 71 _(TIOCMSET, READ, sizeof(int)); 75 _(TIOCPKT, READ, sizeof(int)); 77 _(TIOCSETD, READ, sizeof(int)); 78 _(TIOCSPGRP, READ, pid_t_sz); 79 _(TIOCSTI, READ, sizeof(char)); [all …]
|
/openbsd/gnu/llvm/lldb/source/Host/posix/ |
H A D | PipePosix.cpp | 30 enum PIPES { READ, WRITE }; // Constants 0 and 1 for READ and WRITE enumerator 69 m_fds[READ] = pipe_posix.ReleaseReadFileDescriptor(); in operator =() 100 m_fds[READ] = PipePosix::kInvalidDescriptor; in CreateNew() 153 m_fds[READ] = fd; in OpenAsReader() 199 int PipePosix::GetReadFileDescriptor() const { return m_fds[READ]; } in GetReadFileDescriptor() 204 const int fd = m_fds[READ]; in ReleaseReadFileDescriptor() 205 m_fds[READ] = PipePosix::kInvalidDescriptor; in ReleaseReadFileDescriptor() 225 return m_fds[READ] != PipePosix::kInvalidDescriptor; in CanRead() 234 close(m_fds[READ]); in CloseReadFileDescriptor() 235 m_fds[READ] = PipePosix::kInvalidDescriptor; in CloseReadFileDescriptor()
|
/openbsd/gnu/usr.bin/perl/ext/IPC-Open3/t/ |
H A D | IPC-Open3.t | 49 like(scalar <READ>, qr/^hi kid\r?\n$/); 52 is(close(READ), 1) or diag($!); 65 like(scalar <READ>, qr/\A$desc\r?\n\z/); 67 like(scalar <READ>, qr/\A$desc \[again\]\r?\n\z/); 77 like(scalar <READ>, qr/\A$desc\r?\n\z/); 79 like(scalar <READ>, qr/\A$desc \[again\]\r?\n\z/); 88 like(scalar <READ>, qr/\Adup writer\r?\n\z/);
|
H A D | IPC-Open2.t | 38 like(<READ>, qr/^hi kid\r?\n$/); 40 ok(close(READ), "closing READ: $!");
|
/openbsd/gnu/usr.bin/perl/lib/Tie/ |
H A D | Handle.pm | 176 if($self->can('READ') != \&READ) { 178 $self->READ($buf,1); 186 sub READ { subroutine
|
H A D | StdHandle.pm | 59 sub READ { &CORE::read(shift, \shift, @_) } subroutine
|
/openbsd/gnu/usr.bin/perl/t/op/ |
H A D | tiehandle.t | 58 sub READ { 59 ::compare(READ => @_); 123 @expect = (READ => $ob, $buf, 3); 131 @expect = (READ => $ob, $buf, 3,3); 215 sub READ {
|
H A D | closure.t | 412 pipe READ, WRITE or die "Can't make pipe: $!"; 418 close READ; 431 $output = join '', <READ>; 433 close READ;
|
/openbsd/gnu/usr.bin/perl/ext/PerlIO-via/t/ |
H A D | via.t | 150 like($warn, qr/Invalid return from PerlIO::via::BadRead::READ = -1, expected undef or 0 to 10/, 156 like($warn, qr/Invalid return from PerlIO::via::BadRead::READ = 11, expected undef or 0 to 10/, 163 …like($warn, qr/Invalid return from PerlIO::via::BadRead::READ = 10, beyond end of the returned buf… 172 sub READ { subroutine
|
/openbsd/sys/dev/mii/ |
H A D | mii_bitbang.c | 54 #define READ ops->mbo_read(sc) macro 134 err = READ & MDI; in mii_bitbang_readreg() 143 if (err == 0 && (READ & MDI) != 0) in mii_bitbang_readreg()
|
/openbsd/usr.bin/mail/ |
H A D | popen.c | 40 #define READ 0 macro 108 (void)fcntl(p[READ], F_SETFD, FD_CLOEXEC); in Popen() 111 myside = p[READ]; in Popen() 115 hisside = fd0 = p[READ]; in Popen() 121 (void)close(p[READ]); in Popen()
|
/openbsd/gnu/usr.bin/perl/cpan/libnet/lib/Net/FTP/ |
H A D | A.pm | 34 READ: label 60 redo READ
|
/openbsd/sys/arch/sparc64/include/ |
H A D | loadfile_machdep.h | 46 #define READ(f, b, c) read((f), (void *)LOADADDR(b), (c)) macro 58 #define READ(f, b, c) read((f), (void *)LOADADDR(b), (c)) macro
|
/openbsd/sys/arch/hppa/include/ |
H A D | loadfile_machdep.h | 49 #define READ(f, b, c) pread((f), (void *)LOADADDR(b), (c)) macro 67 #define READ(f, b, c) read((f), (void *)LOADADDR(b), (c)) macro
|
/openbsd/gnu/usr.bin/binutils/binutils/ |
H A D | defparse.y | 34 %token READ WRITE EXECUTE SHARED NONSHARED NONAME PRIVATE 112 READ { $$ = 1; }
|
H A D | defparse.h | 25 # define READ 270 macro
|
/openbsd/gnu/usr.bin/binutils-2.17/binutils/ |
H A D | defparse.y | 34 %token READ WRITE EXECUTE SHARED NONSHARED NONAME PRIVATE 112 READ { $$ = 1; }
|
/openbsd/gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc/ |
H A D | ToMan.pm | 339 READ: { label 340 last READ unless $selector->can_read( 0.01 ); 348 next READ;
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Iterator/ |
H A D | Process.pm | 244 READ: label 264 redo READ;
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Harness/t/lib/Dev/ |
H A D | Null.pm | 14 sub READ { } subroutine
|
/openbsd/gnu/llvm/compiler-rt/lib/tsan/tests/rtl/ |
H A D | tsan_test_util_posix.cpp | 192 READ, enumerator 248 case Event::READ: in HandleEvent() 251 if (ev->type == Event::READ) { in HandleEvent() 414 Event event(is_write ? Event::WRITE : Event::READ, addr, size, in Access()
|
/openbsd/usr.sbin/vmd/ |
H A D | vionet.c | 86 #define READ 0 macro 292 close_fd(pipe_inject[READ]); in vionet_main() 308 close_fd(pipe_inject[READ]); in vionet_main() 548 else if (fd == pipe_inject[READ]) in vionet_rx_copy() 571 } else if (fd == pipe_inject[READ] && sz != sizeof(struct packet)) { in vionet_rx_copy() 578 if (fd == pipe_inject[READ]) { in vionet_rx_copy() 1174 event_set(&ev_inject, pipe_inject[READ], EV_READ | EV_PERSIST, in rx_run_loop() 1189 close_fd(pipe_inject[READ]); in rx_run_loop()
|
/openbsd/sys/arch/loongson/include/ |
H A D | loadfile_machdep.h | 41 #define READ(f, b, c) read((f), (void *)LOADADDR(b), (c)) macro
|
/openbsd/sys/arch/octeon/include/ |
H A D | loadfile_machdep.h | 41 #define READ(f, b, c) read((f), (void *)LOADADDR(b), (c)) macro
|