Searched refs:_write (Results 1 - 25 of 58) sorted by relevance

123

/freebsd-current/lib/libc/gen/
H A Dpsignal.c52 (void)_write(STDERR_FILENO, s, strlen(s));
53 (void)_write(STDERR_FILENO, ": ", 2);
55 (void)_write(STDERR_FILENO, c, strlen(c));
56 (void)_write(STDERR_FILENO, "\n", 1);
H A Dsetjmperr.c48 (void)_write(STDERR_FILENO, ERRMSG, sizeof(ERRMSG) - 1);
H A Deventfd.c50 return (sizeof(value) == _write(fd, &value, sizeof(value)) ? 0 : -1);
H A Dfstab.c286 (void)_write(STDERR_FILENO, "fstab: ", 7);
287 (void)_write(STDERR_FILENO, path_fstab, strlen(path_fstab));
288 (void)_write(STDERR_FILENO, ":", 1);
290 (void)_write(STDERR_FILENO, num, strlen(num));
292 (void)_write(STDERR_FILENO, p, strlen(p));
293 (void)_write(STDERR_FILENO, "\n", 1);
H A Dreadpassphrase.c124 (void)_write(output, prompt, strlen(prompt));
143 (void)_write(output, "\n", 1);
H A Dexec.c200 (void)_write(STDERR_FILENO, execvPe_err_preamble,
202 (void)_write(STDERR_FILENO, p, lp);
203 (void)_write(STDERR_FILENO, execvPe_err_trailer,
/freebsd-current/contrib/libpcap/testprogs/
H A Dunix.h54 #define write _write
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Ddebugfs.h14 static ssize_t _iwl_dbgfs_##name##_write(struct file *file, \
25 return iwl_dbgfs_##name##_write(arg, buf, buf_size, ppos); \
31 .write = _iwl_dbgfs_##name##_write, \
40 .write = _iwl_dbgfs_##name##_write, \
/freebsd-current/lib/libc/stdlib/
H A Dset_constraint_handler_s.c88 (void) _write(STDERR_FILENO, ahs, sizeof(ahs) - 1);
89 (void) _write(STDERR_FILENO, msg, strlen(msg));
90 (void) _write(STDERR_FILENO, "\n", 1);
H A Dgetenv.c108 _write(STDERR_FILENO, _getprogname(), strlen(_getprogname()));
109 _write(STDERR_FILENO, progSep, sizeof(progSep) - 1);
110 _write(STDERR_FILENO, msg, strlen(msg));
111 _write(STDERR_FILENO, name, nameLen);
112 _write(STDERR_FILENO, nl, sizeof(nl) - 1);
/freebsd-current/tools/build/libc-bootstrap/
H A Dnamespace.h42 #define _write(a, b, c) write(a, b, c) macro
/freebsd-current/lib/libc/stdio/
H A Dfunopen.c68 fp->_write = writefn;
H A Dgets.c54 (void) _write(STDERR_FILENO, w, sizeof(w) - 1);
H A Dvdprintf.c61 f._write = __swrite;
H A Dstdio.c61 return (_write(fp->_file, buf, (size_t)n));
113 ret = (*fp->_write)(fp->_cookie, buf, n);
H A Dfopen.c79 fp->_write = __swrite;
H A Dfdopen.c97 fp->_write = __swrite;
/freebsd-current/crypto/heimdal/lib/roken/
H A Dnet_write.c80 count = _write (sock, cbuf, rem);
90 count = _write (sock, cbuf, rem);
/freebsd-current/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_iovar.h89 static bhnd_nvram_iop_write bhnd_nvram_ ## _n ## _write; \
98 .write = bhnd_nvram_ ## _n ## _write, \
/freebsd-current/lib/libc/gmon/
H A Dgmon.c56 #define ERR(s) _write(2, s, sizeof(s))
167 _write(log, buf, len);
176 _write(fd, (char *)hdr, sizeof *hdr);
177 _write(fd, p->kcount, p->kcountsize);
192 _write(log, buf, len);
197 _write(fd, &rawarc, sizeof rawarc);
/freebsd-current/contrib/ntp/sntp/libopts/compat/
H A Dwindows-config.h96 #define write _write
/freebsd-current/sys/arm/mv/
H A Dmvwin.h336 pre ## _ ## reg ## _write(int i, uint32_t val) \
343 pre ## _ ## reg ## _write(int i, int j, uint32_t val) \
350 pre ## _ ## reg ## _write(uint32_t base, int i, uint32_t val) \
357 pre ## _ ## reg ## _write(uint32_t base, int i, int j, uint32_t val) \
378 pre ## _ ## reg ## _write(uint32_t val) \
385 pre ## _ ## reg ## _write(uint32_t base, uint32_t val) \
/freebsd-current/libexec/rtld-elf/rtld-libc/
H A Drtld_libc.h83 #define _write(fd, buf, nbytes) __sys_write(fd, buf, nbytes) macro
/freebsd-current/crypto/openssl/ms/
H A Dapplink.c131 OPENSSL_ApplinkTable[APPLINK_WRITE] = _write;
/freebsd-current/lib/libc/net/
H A Drcmd.c207 _write(s, "", 1);
218 if (_write(s, num, strlen(num)+1) != strlen(num)+1) {
283 (void)_write(s, locuser, strlen(locuser)+1);
284 (void)_write(s, remuser, strlen(remuser)+1);
285 (void)_write(s, cmd, strlen(cmd)+1);
293 (void)_write(STDERR_FILENO, &c, 1);

Completed in 389 milliseconds

123