Searched refs:READ (Results 1 - 25 of 39) sorted by relevance

12

/freebsd-11-stable/usr.bin/tip/tip/
H A Dvars.c50 { "beautify", BOOL, (READ|WRITE)<<PUBLIC,
52 { "baudrate", NUMBER|IREMOTE|INIT, (READ<<PUBLIC)|(WRITE<<ROOT),
54 { "dialtimeout",NUMBER, (READ<<PUBLIC)|(WRITE<<ROOT),
56 { "eofread", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
58 { "eofwrite", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
60 { "eol", STRING|IREMOTE|INIT, (READ|WRITE)<<PUBLIC,
62 { "escape", CHAR, (READ|WRITE)<<PUBLIC,
64 { "exceptions", STRING|INIT|IREMOTE, (READ|WRITE)<<PUBLIC,
66 { "force", CHAR, (READ|WRITE)<<PUBLIC,
68 { "framesize", NUMBER|IREMOTE|INIT, (READ|WRIT
[all...]
H A Dvalue.c152 if (vaccess(p->v_access, READ))
189 if ((p = vlookup(s)) && vaccess(p->v_access, READ)) {
H A Dtip.h117 #define READ 02 /* read access */ macro
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp37 enum PIPES { READ, WRITE }; // Constants 0 and 1 for READ and WRITE enumerator in enum:PIPES
79 m_fds[READ] = pipe_posix.ReleaseReadFileDescriptor();
110 m_fds[READ] = PipePosix::kInvalidDescriptor;
163 m_fds[READ] = fd;
209 int PipePosix::GetReadFileDescriptor() const { return m_fds[READ]; }
214 const int fd = m_fds[READ];
215 m_fds[READ] = PipePosix::kInvalidDescriptor;
235 return m_fds[READ] != PipePosix::kInvalidDescriptor;
244 close(m_fds[READ]);
[all...]
/freebsd-11-stable/contrib/libcxxrt/
H A Ddwarf_eh.h224 #define READ(dwarf, type) \ macro
232 READ(DW_EH_PE_udata2, uint16_t)
233 READ(DW_EH_PE_udata4, uint32_t)
234 READ(DW_EH_PE_udata8, uint64_t)
235 READ(DW_EH_PE_sdata2, int16_t)
236 READ(DW_EH_PE_sdata4, int32_t)
237 READ(DW_EH_PE_sdata8, int64_t)
238 READ(DW_EH_PE_absptr, intptr_t)
239 #undef READ macro
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddeflex.l51 "READ" { return READ;}
H A Ddefparse.y35 %token READ WRITE EXECUTE SHARED NONSHARED NONAME PRIVATE
113 READ { $$ = 1; }
/freebsd-11-stable/secure/usr.bin/bdes/
H A Dbdes.c112 #define READ(buf, n) fread(buf, sizeof(char), n, stdin) macro
498 for (bn = 0; (n = READ(msgbuf, 8)) == 8; bn++) {
528 for (bn = 1; (n = READ(msgbuf, 8)) == 8; bn++) {
563 for (bn = 1; (n = READ(msgbuf, 8)) == 8; bn++) {
596 for (bn = 0; (n = READ(msgbuf, 8)) == 8; bn++) {
637 while ((n = READ(msgbuf, 8)) == 8) {
686 for (bn = 1; (n = READ(ibuf, nbytes)) == nbytes; bn++) {
730 for (bn = 1; (n = READ(ibuf, nbytes)) == nbytes; bn++) {
776 for (bn = 1; (n = READ(ibuf, nbytes)) == nbytes; bn++) {
822 for (bn = 1; (n = READ(ibu
[all...]
/freebsd-11-stable/usr.bin/tcopy/
H A Dtcopy.c78 enum {READ, VERIFY, COPY, COPYVERIFY} op = READ; enumerator in enum:__anon13832
115 if (op != READ)
120 if (op != READ)
125 if (op == READ)
/freebsd-11-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_wdog.c55 #define READ(_sc, _r) bus_space_read_4((_sc)->bst, (_sc)->bsh, (_r) + (_sc)->regs_offset) macro
177 reg = READ(sc, BCM2835_RSTC_REG);
204 (READ(bcmwd_lsc, BCM2835_RSTC_REG) & BCM2835_RSTC_WRCFG_CLR) |
/freebsd-11-stable/sys/arm/allwinner/
H A Daw_ts.c49 #define READ(_sc, _r) bus_read_4((_sc)->res[0], (_r)) macro
131 val = READ(sc, TP_FIFOS);
134 sc->temp_data = (READ(sc, TEMP_DATA) * sc->temp_step - sc->temp_offset)
H A Daw_wdog.c51 #define READ(_sc, _r) bus_read_4((_sc)->res, (_r)) macro
/freebsd-11-stable/usr.bin/mail/
H A Dpopen.c43 #define READ 0 macro
108 (void)fcntl(p[READ], F_SETFD, 1);
111 myside = p[READ];
116 hisside = fd0 = p[READ];
121 (void)close(p[READ]);
/freebsd-11-stable/sys/dev/sound/midi/
H A Dmpu401.c71 #define READ(m) MPUFOI_READ(m, m->cookie, MPU_DATAPORT) macro
140 b[i] = READ(m);
230 if (READ(m) == MPU_ACK)
/freebsd-11-stable/contrib/jemalloc/src/
H A Dctl.c1069 #define READ(v, t) do { \ macro
1110 READ(oldval, t); \
1132 READ(oldval, t); \
1151 READ(oldval, t); \
1175 READ(oldval, t); \
1192 READ(oldval, t); \
1211 READ(oldval, t); \
1228 READ(oldval, t); \
1250 READ(ctl_epoch, uint64_t);
1323 READ(oldin
[all...]
/freebsd-11-stable/bin/ed/
H A Dcbc.c64 #define READ(buf, n, fp) fread(buf, sizeof(char), n, fp) macro
365 if ((n = READ(msgbuf, 8, fp)) == 8) {
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp415 enum PIPES { READ, WRITE }; // Indexes for the read and write fds enumerator in enum:PIPES
433 llvm::sys::Process::SafelyCloseFileDescriptor(fds[READ]);
444 ::FILE *commands_file = fdopen(fds[READ], "rb");
448 fds[READ], errno)
450 llvm::sys::Process::SafelyCloseFileDescriptor(fds[READ]);
/freebsd-11-stable/sys/dev/vkbd/
H A Dvkbd.c125 #define READ (1 << 4) /* read pending */ macro
311 if (state->ks_flags & READ) {
316 state->ks_flags |= READ;
342 state->ks_flags &= ~READ;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_report.cpp209 : (sig.write_flag == SignalContext::READ ? "READ" : "UNKNOWN");
H A Dsanitizer_linux.cpp1774 return err & PF_WRITE ? WRITE : READ;
1812 return SignalContext::READ;
1819 return SignalContext::READ;
1827 return fsr & FSR_WRITE ? WRITE : READ;
1832 return esr & ESR_ELx_WNR ? WRITE : READ;
1848 return (instr >> 21) & 1 ? WRITE: READ;
/freebsd-11-stable/contrib/binutils/bfd/
H A Delf64-alpha.c1354 #define READ(ptr, offset, count, size, type) \
1368 READ (line, cbLineOffset, cbLine, sizeof (unsigned char), unsigned char *);
1369 READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, PTR);
1370 READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, PTR);
1371 READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, PTR);
1372 READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, PTR);
1373 READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext),
1375 READ (ss, cbSsOffset, issMax, sizeof (char), char *);
1376 READ (ssext, cbSsExtOffset, issExtMax, sizeof (char), char *);
1377 READ (external_fd
1348 #define READ macro
1374 #undef READ macro
[all...]
H A Decoff.c3916 #define READ(ptr, offset, count, size, type) \
3940 READ (line, cbLineOffset, cbLine, sizeof (unsigned char),
3942 READ (external_dnr, cbDnOffset, idnMax, swap->external_dnr_size, void *); macro
3943 READ (external_pdr, cbPdOffset, ipdMax, swap->external_pdr_size, void *);
3944 READ (external_sym, cbSymOffset, isymMax, swap->external_sym_size, void *);
3945 READ (external_opt, cbOptOffset, ioptMax, swap->external_opt_size, void *);
3946 READ (external_aux, cbAuxOffset, iauxMax, sizeof (union aux_ext),
3948 READ (ss, cbSsOffset, issMax, sizeof (char), char *);
3949 READ (external_fdr, cbFdOffset, ifdMax, swap->external_fdr_size, void *);
3950 READ (external_rf
3906 #define READ macro
[all...]
/freebsd-11-stable/contrib/binutils/ld/
H A Ddeffilep.y109 %token READ WRITE EXECUTE SHARED NONAMEU NONAMEL DIRECTIVE
207 READ { $$ = 1;}
892 { "READ", READ },
/freebsd-11-stable/sys/kern/
H A Dsubr_acl_nfs4.c373 const int READ = 04; local
547 if (amode & READ)
588 if (extramode & READ) {
/freebsd-11-stable/sbin/bsdlabel/
H A Dbsdlabel.c134 UNSPEC, EDIT, READ, RESTORE, WRITE, WRITEBOOT enumerator in enum:__anon7009
238 op = READ;
253 case READ:

Completed in 214 milliseconds

12