Searched refs:write (Results 51 - 75 of 1243) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libpcap/testprogs/
H A Dunix.h54 #define write _write macro
/freebsd-11-stable/crypto/heimdal/lib/wind/
H A Dgen-errorlist.py62 errorlist_h.file.write(
78 errorlist_c.file.write(
109 errorlist_c.file.write(" {0x%x, 0x%x, %s}, /* %s: %s */\n"
112 errorlist_c.file.write(
117 errorlist_c.file.write(
H A Dgen-punycode-examples.py87 examples_h.file.write(
105 examples_c.file.write(
115 examples_c.file.write(
122 examples_c.file.write(
127 examples_c.file.write(
/freebsd-11-stable/contrib/ntp/ntpd/
H A Drefclock_arbiter.c22 #undef write macro
23 #define write(fd, data, octets) async_write(fd, data, octets) macro
203 write(pp->io.fd, COMMAND_HALT_BCAST, 2);
288 write(pp->io.fd, "SR", 2);
295 write(pp->io.fd, "LA", 2);
297 write(pp->io.fd, COMMAND_START_BCAST, 2);
302 write(pp->io.fd, "LO", 2);
308 write(pp->io.fd, "LH", 2);
314 write(pp->io.fd, "DB", 2);
325 write(p
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dh_atexit.c82 write(STDERR_FILENO, __func__, strlen(__func__)); \
83 write(STDERR_FILENO, ": ", 2); \
84 write(STDERR_FILENO, __STRING(expr), \
86 write(STDERR_FILENO, "\n", 1); \
93 write(STDOUT_FILENO, __func__, strlen(__func__)); \
94 write(STDOUT_FILENO, "\n", 1); \
/freebsd-11-stable/contrib/netbsd-tests/lib/libpthread/
H A Dh_atexit.c73 write(STDERR_FILENO, __func__, strlen(__func__)); \
74 write(STDERR_FILENO, ": ", 2); \
75 write(STDERR_FILENO, __STRING(expr), \
77 write(STDERR_FILENO, "\n", 1); \
84 write(STDOUT_FILENO, __func__, strlen(__func__)); \
85 write(STDOUT_FILENO, "\n", 1); \
/freebsd-11-stable/tools/debugscripts/
H A Dkld_deb.py59 sys.stderr.write("No sys dir in kernel source path: %s\n" % sys.argv[1])
97 out.write("print linker_files.tqh_first[0]\n")
99 out.write("print *(struct linker_file *)%d\n" % nxad)
104 sys.stderr.write("got error: %s\n" % fn.group('error'))
132 sys.stderr.write("Can't find module: %s (addr: %d + header)\n" % (i[0], a))
143 sys.stderr.write('Bad file: %s, address: %d\n' % (i[0], i[1]))
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-converter.cpp96 // First write out the file header, in the correct endian-appropriate format
100 Writer.write(FH.Version);
101 Writer.write(FH.Type);
107 Writer.write(Bitfield);
108 Writer.write(FH.CycleFrequency);
112 Writer.write(Padding4B);
113 Writer.write(Padding4B);
114 Writer.write(Padding4B);
115 Writer.write(Padding4B);
117 // Then write ou
[all...]
/freebsd-11-stable/usr.bin/tip/libacu/
H A Dhayes.c110 write(FD, "ATv0\r", 5); /* tell modem to use short status codes */
113 write(FD, "ATTD", 4); /* send dial command */
117 write(FD, num, strlen(num));
119 write(FD, "\r", 1);
162 write(FD, "\r", 1); /* send anything to abort the call */
263 write(FD, "ATH0\r", 5); /* insurance */
279 write(FD, "ATv1\r", 5);
302 write(FD, "AT\r", 3);
H A Dbiz22.c83 write(FD, cbuf, strlen(cbuf));
125 write(FD, DISCONNECT_CMD, sizeof(DISCONNECT_CMD)-1);
133 write(FD, "\02", 1);
150 write(FD, s, strlen(s));
H A Ddf.c103 write(f, "\001", 1);
105 write(f, "\002", 1);
106 write(f, num, strlen(num));
121 write(FD, "\001", 1);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_write.c49 static const char *path = "write";
60 atf_tc_set_md_var(tc, "descr", "Checks errors from write(2)");
70 ATF_REQUIRE_ERRNO(EBADF, write(-1, wbuf, sizeof(wbuf)) == -1);
77 ATF_REQUIRE_ERRNO(0, write(fd, wbuf, 3) == 3);
80 ATF_REQUIRE_ERRNO(EINVAL, write(fd, wbuf, SIZE_MAX) == -1);
83 ATF_REQUIRE_ERRNO(EFAULT, write(fd, (void *)-1, 1) == -1);
86 * Check that the above bogus write(2)
106 atf_tc_set_md_var(tc, "descr", "Checks for EPIPE from write(2)");
116 ATF_REQUIRE(write(fds[1], "x", 1) != -1);
122 if (write(fd
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFMCCodeEmitter.cpp135 OSE.write<uint16_t>(0);
136 OSE.write<uint32_t>(Value & 0xffffFFFF);
140 OSE.write<uint8_t>(0);
141 OSE.write<uint8_t>(0);
142 OSE.write<uint16_t>(0);
143 OSE.write<uint32_t>(Imm >> 32);
152 OSE.write<uint16_t>((Value >> 32) & 0xffff);
153 OSE.write<uint32_t>(Value & 0xffffFFFF);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DWriter.h45 Error write(bool IsBigObj);
51 Error write();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DStringTableBuilder.h65 void write(raw_ostream &OS) const;
66 void write(uint8_t *Buf) const;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_globals_win.cpp18 #pragma section(".ASAN$GA", read, write)
19 #pragma section(".ASAN$GZ", read, write)
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drwinfo.d50 syscall::write:entry
60 syscall::write:return
72 printf(" write %5d %9d %d\n", i["write"].calls,
73 i["write"].maxbytes, i["write"].elapsed);
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dnew.cpp18 with groff; see the file COPYING. If not, write to the Free Software
33 write(2, s, strlen(s));
/freebsd-11-stable/crypto/openssh/
H A Datomicio.h40 #define vwrite (ssize_t (*)(int, void *, size_t))write
/freebsd-11-stable/usr.bin/mkimg/
H A Draw.c58 .write = raw_write,
/freebsd-11-stable/libexec/rtld-elf/
H A Ddebug.h58 #define msg(s) write(STDOUT_FILENO, s, strlen(s))
/freebsd-11-stable/contrib/file/src/
H A Ddprintf.c54 if (write(fd, buf, (size_t)len) != len)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_mutexset.cpp24 void MutexSet::Add(u64 id, bool write, u64 epoch) { argument
48 descs_[size_].write = write;
54 void MutexSet::Del(u64 id, bool write) { argument
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/gen/posix_spawn/
H A Dh_fileactions.c69 if (write(5, buf, BUFSIZE) <= 0) {
70 fprintf(stderr, "%s: could not write to filedesc 5\n",
75 if (write(6, buf, BUFSIZE) <= 0) {
76 fprintf(stderr, "%s: could not write to filedesc 6\n",
92 if (write(7, buf, strlen(buf)) <= 0) {
93 fprintf(stderr, "%s: could not write to filedesc 7\n",
/freebsd-11-stable/contrib/wpa/wpa_supplicant/utils/
H A Dlog2pcap.py13 pcap_file.write(
21 pcap_file.write(struct.pack('<IIII',
24 pcap_file.write(data)

Completed in 156 milliseconds

1234567891011>>