Searched refs:rc (Results 76 - 100 of 1210) sorted by relevance

1234567891011>>

/freebsd-13-stable/tests/etc/rc.d/
H A DMakefile3 TESTSDIR= ${TESTSBASE}/etc/rc.d
/freebsd-13-stable/contrib/ncurses/panel/
H A Dp_move.c46 int rc = ERR; local
58 rc = mvwin(pan->win, starty, startx);
60 returnCode(rc);
H A Dp_replace.c45 int rc = ERR; local
58 rc = OK;
60 returnCode(rc);
/freebsd-13-stable/usr.bin/mkuzip/
H A Dmkuz_zstd.c52 size_t rc; local
66 rc = ZSTD_CCtx_setParameter(cctx, ZSTD_c_compressionLevel,
68 if (ZSTD_isError(rc))
70 *comp_level, ZSTD_getErrorName(rc));
72 rc = ZSTD_CCtx_setParameter(cctx, ZSTD_c_checksumFlag, 1);
73 if (ZSTD_isError(rc))
75 ZSTD_getErrorName(rc));
84 size_t rc; local
88 rc = ZSTD_compress2(cctx, oblk->data, oblk->alen, iblk->data,
90 if (ZSTD_isError(rc))
[all...]
/freebsd-13-stable/tests/sys/kern/
H A Dpdeathsig_helper.c37 int rc; local
45 rc = procctl(P_PID, 0, PROC_PDEATHSIG_STATUS, &signum);
46 assert(rc == 0);
/freebsd-13-stable/contrib/bearssl/src/ssl/
H A Dssl_engine.c287 br_ssl_engine_fail(br_ssl_engine_context *rc, int err) argument
289 if (rc->iomode != BR_IO_FAILED) {
290 rc->iomode = BR_IO_FAILED;
291 rc->err = err;
299 make_ready_in(br_ssl_engine_context *rc) argument
301 rc->ixa = rc->ixb = 0;
302 rc->ixc = 5;
303 if (rc->iomode == BR_IO_IN) {
304 rc
312 make_ready_out(br_ssl_engine_context *rc) argument
332 br_ssl_engine_new_max_frag_len(br_ssl_engine_context *rc, unsigned max_frag_len) argument
345 br_ssl_engine_set_buffer(br_ssl_engine_context *rc, void *buf, size_t buf_len, int bidi) argument
395 br_ssl_engine_set_buffers_bidi(br_ssl_engine_context *rc, void *ibuf, size_t ibuf_len, void *obuf, size_t obuf_len) argument
458 engine_clearbuf(br_ssl_engine_context *rc) argument
566 recvrec_buf(const br_ssl_engine_context *rc, size_t *len) argument
603 recvrec_ack(br_ssl_engine_context *rc, size_t len) argument
763 br_ssl_engine_recvrec_finished(const br_ssl_engine_context *rc) argument
775 recvpld_buf(const br_ssl_engine_context *rc, size_t *len) argument
793 recvpld_ack(br_ssl_engine_context *rc, size_t len) argument
813 sendpld_buf(const br_ssl_engine_context *rc, size_t *len) argument
839 sendpld_flush(br_ssl_engine_context *rc, int force) argument
859 sendpld_ack(br_ssl_engine_context *rc, size_t len) argument
881 sendrec_buf(const br_ssl_engine_context *rc, size_t *len) argument
903 sendrec_ack(br_ssl_engine_context *rc, size_t len) argument
916 has_rec_tosend(const br_ssl_engine_context *rc) argument
[all...]
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Dbsd-flock.c46 int rc = 0; local
70 rc = fcntl(fd, op & LOCK_NB ? F_SETLK : F_SETLKW, &fl);
72 if (rc && (errno == EAGAIN))
75 rc = -1;
79 return rc;
/freebsd-13-stable/contrib/libxo/tests/core/
H A Dtest_07.c44 int rc; local
61 rc = xo_emit("���������� ������������ ���������������������� ������ {:v1/%s}, {:v2/%s}\n",
63 rc = xo_emit("{:columns/%d}\n", rc);
64 xo_emit("{:columns/%d}\n", rc);
66 rc = xo_emit("������������������ {:v1/%s} {:v2/%s}\n",
69 xo_emit("{:columns/%d}\n", rc);
72 rc = xo_emit("{T:First Name/%-25s}{T:Last Name/%-14s}"
74 xo_emit("{:columns/%d}\n", rc);
79 rc
[all...]
/freebsd-13-stable/contrib/capsicum-test/
H A Dmini-me.c19 int rc = (geteuid() == 0); local
20 fprintf(stderr,"[uid:%d] %s immediately returning (geteuid() == 0) = %d\n", geteuid(), argv[0], rc);
21 return rc;
26 int rc = 0; local
31 rc = 1;
33 fprintf(stderr,"[%d] %s --capmode returning %d\n", getpid(), argv[0], rc);
34 return rc;
H A Dwaittest.c22 int rc = pdfork(&procfd, 0); local
23 if (rc < 0) {
24 fprintf(stderr, "pdfork() failed rc=%d errno=%d %s\n", rc, errno, strerror(errno));
27 if (rc == 0) { // Child process
31 fprintf(stderr, "pdfork()ed child pid=%ld procfd=%d\n", (long)rc, procfd);
33 pid_t child = waitpid(-1, &rc, WNOHANG);
/freebsd-13-stable/usr.sbin/periodic/etc/daily/
H A D110.clean-tmps23 rc=2
45 rc=$(for dir in $daily_clean_tmps_dirs
52 [ -z "$print" ] && rc=0
53 [ $rc -gt 1 ] && rc=1
57 *) rc=0;;
60 exit $rc
H A D310.accounting20 rc=2
25 rc=2
31 rc=0
37 [ $m -ge $n ] && { rm $f || rc=3; }
44 [ -f acct.$n.gz ] && { mv -f acct.$n.gz acct.$m.gz || rc=3; }
45 [ -f acct.$n ] && { mv -f acct.$n acct.$m || rc=3; }
50 /etc/rc.d/accounting onerotate_log || rc=3
52 rm -f acct.merge && cp acct.0 acct.merge || rc=3
53 sa -s $daily_accounting_flags /var/account/acct.merge || rc
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dobsolete.c110 int rc = 0; local
113 rc = 1;
115 rc = 2;
117 rc = 3;
119 rc = 4;
121 rc = 5;
123 rc = 6;
125 if ((unsigned) rc > limit) { /* whatever it is, we cannot decode it */
126 rc = 0;
130 switch (rc) {
184 int rc = 0; local
[all...]
/freebsd-13-stable/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_file_os.c79 ssize_t rc;
84 rc = vfs_write(fp, (__force const char __user __user *)buf, count, off);
88 return (rc);
107 ssize_t rc; local
109 rc = zfs_file_write_impl(fp, buf, count, &off);
110 if (rc < 0)
111 return (-rc);
116 *resid = count - rc;
117 } else if (rc != count) {
139 ssize_t rc; local
188 ssize_t rc; local
220 ssize_t rc; local
247 loff_t rc; local
275 int rc; local
[all...]
/freebsd-13-stable/libexec/rc/
H A Drc.resume40 if [ -r /var/run/rc.suspend.pid ]; then
41 kill -9 `cat /var/run/rc.suspend.pid`
42 /bin/rm -f /var/run/rc.suspend.pid
43 echo 'rc.resume: killed rc.suspend that was still around'
58 . /etc/rc.subr
69 files=`rcorder ${rcorder_opts} /etc/rc.d/* ${local_rc} 2>/dev/null`
/freebsd-13-stable/contrib/ntp/libparse/
H A Dclk_sel240x.c95 unsigned long rc; local
106 rc = PARSE_INP_SKIP;
109 if( (rc = parse_addchar(parseio, ch)) == PARSE_INP_SKIP )
111 rc = parse_end( parseio );
115 rc = parse_addchar( parseio, ch );
118 return rc;
130 unsigned long rc = CVT_NONE; local
140 rc = CVT_FAIL | CVT_BADFMT;
163 rc = CVT_OK;
167 return rc;
[all...]
/freebsd-13-stable/usr.sbin/bhyve/
H A Dkernemu_dev.c84 int rc; local
86 rc = register_mem(&lapic_mmio);
87 if (rc != 0)
88 errc(4, rc, "register_mem: LAPIC (0x%08x)",
90 rc = register_mem(&ioapic_mmio);
91 if (rc != 0)
92 errc(4, rc, "register_mem: IOAPIC (0x%08x)",
94 rc = register_mem(&hpet_mmio);
95 if (rc != 0)
96 errc(4, rc, "register_me
[all...]
H A Drfb.c259 rfb_send_resize_update_msg(struct rfb_softc *rc, int cfd) argument
273 srect_hdr.width = htons(rc->width);
274 srect_hdr.height = htons(rc->height);
280 rfb_recv_set_pixfmt_msg(struct rfb_softc *rc, int cfd) argument
289 rfb_recv_set_encodings_msg(struct rfb_softc *rc, int cfd) argument
301 rc->enc_raw_ok = true;
304 if (!rc->enc_zlib_ok) {
305 deflateInit(&rc->zstream, Z_BEST_SPEED);
306 rc->enc_zlib_ok = true;
310 rc
338 rfb_send_update_header(struct rfb_softc *rc, int cfd, int numrects) argument
351 rfb_send_rect(struct rfb_softc *rc, int cfd, struct bhyvegc_image *gc, int x, int y, int w, int h) argument
432 rfb_send_all(struct rfb_softc *rc, int cfd, struct bhyvegc_image *gc) argument
509 rfb_send_screen(struct rfb_softc *rc, int cfd) argument
683 rfb_recv_update_msg(struct rfb_softc *rc, int cfd) argument
695 rfb_recv_key_msg(struct rfb_softc *rc, int cfd) argument
706 rfb_recv_ptr_msg(struct rfb_softc *rc, int cfd) argument
717 rfb_recv_cuttext_msg(struct rfb_softc *rc, int cfd) argument
744 struct rfb_softc *rc; local
794 rfb_handle(struct rfb_softc *rc, int cfd) argument
1016 struct rfb_softc *rc; local
1067 struct rfb_softc *rc; local
[all...]
/freebsd-13-stable/sys/dev/sfxge/common/
H A Def10_image.c76 efx_rc_t rc; local
79 rc = EINVAL;
86 rc = ENOENT;
92 rc = EINVAL;
107 rc = EINVAL;
112 rc = EINVAL;
117 rc = E2BIG;
130 rc = E2BIG;
149 EFSYS_PROBE1(fail1, efx_rc_t, rc);
151 return (rc);
160 efx_rc_t rc; local
205 efx_rc_t rc; local
249 efx_rc_t rc; local
282 efx_rc_t rc; local
339 efx_rc_t rc; local
465 efx_rc_t rc; local
537 efx_rc_t rc; local
618 efx_rc_t rc; local
[all...]
H A Dhunt_nic.c51 efx_rc_t rc; local
59 if ((rc = efx_mcdi_get_port_modes(enp, &port_modes,
71 if ((rc = efx_nic_calculate_pcie_link_bandwidth(8,
91 EFSYS_PROBE1(fail1, efx_rc_t, rc);
93 return (rc);
105 efx_rc_t rc; local
127 rc = efx_mcdi_set_workaround(enp, MC_CMD_WORKAROUND_BUG35388, B_TRUE,
129 if ((rc == 0) || (rc == EACCES))
131 else if ((rc
[all...]
H A Def10_nvram.c146 efx_rc_t rc; local
148 if ((rc = tlv_validate_state(cursor)) != 0)
154 rc = ENOENT;
161 if ((rc = tlv_validate_state(cursor)) != 0)
171 EFSYS_PROBE1(fail1, efx_rc_t, rc);
173 return (rc);
180 efx_rc_t rc; local
184 if ((rc = tlv_validate_state(cursor)) != 0)
190 EFSYS_PROBE1(fail1, efx_rc_t, rc);
192 return (rc);
200 efx_rc_t rc; local
216 efx_rc_t rc; local
307 efx_rc_t rc; local
330 efx_rc_t rc; local
410 efx_rc_t rc; local
461 efx_rc_t rc; local
511 efx_rc_t rc; local
613 efx_rc_t rc; local
672 efx_rc_t rc; local
785 efx_rc_t rc; local
871 efx_rc_t rc; local
917 efx_rc_t rc; local
1011 efx_rc_t rc; local
1056 efx_rc_t rc; local
1103 efx_rc_t rc; local
1140 efx_rc_t rc; local
1176 efx_rc_t rc; local
1205 efx_rc_t rc; local
1252 efx_rc_t rc; local
1380 efx_rc_t rc; local
1445 efx_rc_t rc; local
1519 efx_rc_t rc; local
1659 efx_rc_t rc; local
1774 efx_rc_t rc; local
1865 efx_rc_t rc; local
1969 efx_rc_t rc; local
1988 efx_rc_t rc; local
2011 efx_rc_t rc; local
2080 efx_rc_t rc; local
2128 efx_rc_t rc; local
2179 efx_rc_t rc; local
2204 efx_rc_t rc; local
2393 efx_rc_t rc; local
2439 efx_rc_t rc; local
2463 efx_rc_t rc; local
2495 efx_rc_t rc; local
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/xattrtest/
H A Dxattrtest.c134 int rc = 0; local
160 rc = 1;
195 rc = 1;
199 rc = 1;
204 if (rc != 0)
205 return (rc);
228 return (rc);
235 int fd, rc; local
243 rc = write(fd, "3", 1);
244 if ((rc
263 int rc, devnull_fd; local
297 int rc; local
354 int i, rc; local
429 ssize_t rc = read(rand, buf + bytes_read, bytes - bytes_read); local
443 int i, j, rnd_size = size, shift, rc = 0; local
517 int i, j, rnd_size, shift, rc = 0; local
621 int i, rc; local
672 int rc; local
[all...]
/freebsd-13-stable/usr.sbin/periodic/etc/security/
H A D700.kernelmsg45 rc=0
51 rc=$?
54 exit $rc
/freebsd-13-stable/sys/dev/cxgbe/cudbg/
H A Dcudbg_lib.c78 int rc = -1; local
81 rc = begin_synchronized_op(padap, NULL, SLEEP_OK | INTR_OK,
83 if (rc != 0)
85 rc = t4_sge_ctxt_rd(padap, padap->mbox, cid, ctype,
91 if (rc)
100 int rc = 0; local
106 rc = CUDBG_STATUS_BUFFER_SHORT;
124 rc = CUDBG_STATUS_BUFFER_SHORT;
144 return rc;
160 int rc local
218 int index, bit, i, rc = -1; local
558 int rc = 0; local
577 int rc = 0; local
613 int rc = 0; local
648 int rc = 0; local
682 int rc = 0; local
730 int rc = 0; local
762 int rc = 0; local
800 int rc = 0; local
843 int n, i, rc = 0; local
1098 int rc = 0; local
1133 int rc = 0; local
1176 int rc = 0; local
1210 int rc = 0; local
1276 int rc = 0; local
1319 int rc = 0; local
1354 int rc = 0; local
1386 int rc = 0; local
1424 int rc = 0; local
1458 int rc = 0; local
1491 int i, rc = 0; local
1533 int rc = 0; local
1564 int rc = 0; local
1593 int rc = 0; local
1620 int rc; local
1658 int vf, rc, vf_count; local
1695 int pf, rc; local
1859 int rc = 0; local
1971 int rc = 0, i; local
2038 int rc = 0, qid = 0; local
2049 int rc = 0, qid = 1; local
2060 int rc = 0, qid = 2; local
2071 int rc = 0, qid = 3; local
2082 int rc = 0, qid = 4; local
2093 int rc = 0, qid = 5; local
2104 int rc = 0, qid = 6; local
2115 int rc = 0, qid = 7; local
2129 int rc; local
2180 int rc = 0, qid = 0; local
2190 int rc = 0, qid = 1; local
2200 int rc = 0, qid = 2; local
2210 int rc = 0, qid = 3; local
2220 int rc = 0, qid = 4; local
2230 int rc, qid = 5; local
2243 int rc; local
2291 u32 rc = 0; local
2325 int rc; local
2389 int cim_num_obq, rc = 0; local
2476 int rc; local
2560 int rc; local
2725 int rc; local
2752 int rc; local
2783 int rc; local
2814 int rc; local
2844 int rc; local
2878 int rc = 0; local
2924 int rc; local
2969 int rc = 0; local
2990 int rc = 0; local
3018 int i, rc, n; local
3079 int i, k, rc; local
3145 int i, rc; local
3226 int i, rc, n; local
3303 int rc; local
3449 int rc; local
3518 int rc; local
3682 int i, rc, n; local
3779 int rc, size; local
3890 int i, rc, n; local
3966 int i, rc, n; local
4022 int i, rc, n; local
4096 int i, rc, n = 0; local
4215 int i, rc; local
4265 int rc; local
4373 int rc; local
[all...]
/freebsd-13-stable/sys/rpc/
H A Dreplay.h58 void replay_freecache(struct replay_cache *rc);
77 enum replay_state replay_find(struct replay_cache *rc,
84 void replay_setreply(struct replay_cache *rc,

Completed in 166 milliseconds

1234567891011>>