Searched refs:rc (Results 1 - 25 of 1074) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/mdocml/
H A Dtest-sandbox_init.c7 int rc; local
9 rc = sandbox_init(kSBXProfileNoInternet, SANDBOX_NAMED, &ep);
10 if (-1 == rc)
12 return(-1 == rc);
/freebsd-11-stable/share/man/man8/
H A DMakefile13 rc.8 \
14 rc.sendmail.8 \
15 rc.subr.8 \
21 rc.8 rc.atm.8 \
22 rc.8 rc.d.8 \
23 rc.8 rc.firewall.8 \
24 rc
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/rangecoder/
H A Drange_encoder.h55 rc_reset(lzma_range_encoder *rc) argument
57 rc->low = 0;
58 rc->cache_size = 1;
59 rc->range = UINT32_MAX;
60 rc->cache = 0;
61 rc->count = 0;
62 rc->pos = 0;
67 rc_bit(lzma_range_encoder *rc, probability *prob, uint32_t bit) argument
69 rc->symbols[rc
76 rc_bittree(lzma_range_encoder *rc, probability *probs, uint32_t bit_count, uint32_t symbol) argument
90 rc_bittree_reverse(lzma_range_encoder *rc, probability *probs, uint32_t bit_count, uint32_t symbol) argument
105 rc_direct(lzma_range_encoder *rc, uint32_t value, uint32_t bit_count) argument
116 rc_flush(lzma_range_encoder *rc) argument
124 rc_shift_low(lzma_range_encoder *rc, uint8_t *out, size_t *out_pos, size_t out_size) argument
150 rc_encode(lzma_range_encoder *rc, uint8_t *out, size_t *out_pos, size_t out_size) argument
226 rc_pending(const lzma_range_encoder *rc) argument
[all...]
/freebsd-11-stable/tests/sys/kern/
H A Dpdeathsig.c52 int rc; local
56 rc = procctl(P_PID, 0, PROC_PDEATHSIG_CTL, &signum);
57 ATF_CHECK_EQ(-1, rc);
62 rc = procctl(8888, 0, PROC_PDEATHSIG_CTL, &signum);
63 ATF_CHECK_EQ(-1, rc);
68 rc = procctl(P_PID, (((getpid() + 1) % 10) + 100),
70 ATF_CHECK_EQ(-1, rc);
75 rc = procctl(P_PID, 0, PROC_PDEATHSIG_CTL, NULL);
76 ATF_CHECK_EQ(-1, rc);
81 rc
101 int rc; local
127 int rc; local
160 int rc; local
229 int rc; local
[all...]
/freebsd-11-stable/etc/periodic/daily/
H A D999.local17 rc=0
27 $script || rc=3
32 sh $script || rc=3
35 [ $rc -lt 2 ] && rc=2
39 [ $rc -lt 2 ] && rc=2;;
43 exit $rc
H A D150.clean-hoststat18 rc=2
22 rc=0
23 purgestat || rc=1
26 *) rc=0;;
29 exit $rc
H A D330.news23 rc=2
28 /etc/news.expire && rc=0 || rc=3
31 *) rc=0;;
34 exit $rc
H A D401.status-graid22 rc=3
24 rc=0
27 rc=2
31 *) rc=0;;
34 exit $rc
H A D406.status-gmirror22 rc=3
24 rc=0
27 rc=2
31 *) rc=0;;
34 exit $rc
H A D407.status-graid322 rc=3
24 rc=0
27 rc=2
31 *) rc=0;;
34 exit $rc
H A D408.status-gstripe22 rc=3
24 rc=0
27 rc=2
31 *) rc=0;;
34 exit $rc
H A D409.status-gconcat22 rc=3
24 rc=0
27 rc=2
31 *) rc=0;;
34 exit $rc
H A D430.status-uptime27 rc=$($prog | tee /dev/stderr | wc -l)
30 [ $rc -gt 1 ] && rc=1
32 rc=3
35 *) rc=0;;
38 exit $rc
H A D120.clean-preserve22 rc=2
27 rc=2
41 rc=$(find . ! -name . -mtime +$daily_clean_preserve_days \
43 [ -z "$print" ] && rc=0
44 [ $rc -gt 1 ] && rc=1
46 rc=3
50 *) rc=0;;
53 exit $rc
H A D140.clean-rwho22 rc=2
27 rc=2
41 rc=$(find . ! -name . -mtime +$daily_clean_rwho_days \
43 [ -z "$print" ] && rc=0
44 [ $rc -gt 1 ] && rc=1
46 rc=3
50 *) rc=0;;
53 exit $rc
/freebsd-11-stable/etc/periodic/weekly/
H A D999.local14 rc=0
24 $script || rc=3
29 sh $script || rc=3
32 [ $rc -lt 2 ] && rc=2
36 [ $rc -lt 2 ] && rc=2;;
40 exit $rc
/freebsd-11-stable/etc/periodic/monthly/
H A D999.local14 rc=0
24 $script || rc=3
29 sh $script || rc=3
32 [ $rc -lt 2 ] && rc=2
36 [ $rc -lt 2 ] && rc=2;;
40 exit $rc
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Drefcount.c63 refcount_create(refcount_t *rc) argument
65 mutex_init(&rc->rc_mtx, NULL, MUTEX_DEFAULT, NULL);
66 list_create(&rc->rc_list, sizeof (reference_t),
68 list_create(&rc->rc_removed, sizeof (reference_t),
70 rc->rc_count = 0;
71 rc->rc_removed_count = 0;
72 rc->rc_tracked = reference_tracking_enable;
76 refcount_create_tracked(refcount_t *rc) argument
78 refcount_create(rc);
79 rc
83 refcount_create_untracked(refcount_t *rc) argument
90 refcount_destroy_many(refcount_t *rc, uint64_t number) argument
111 refcount_destroy(refcount_t *rc) argument
117 refcount_is_zero(refcount_t *rc) argument
123 refcount_count(refcount_t *rc) argument
129 refcount_add_many(refcount_t *rc, uint64_t number, void *holder) argument
151 refcount_add(refcount_t *rc, void *holder) argument
157 refcount_remove_many(refcount_t *rc, uint64_t number, void *holder) argument
205 refcount_remove(refcount_t *rc, void *holder) argument
242 refcount_transfer_ownership(refcount_t *rc, void *current_holder, void *new_holder) argument
272 refcount_held(refcount_t *rc, void *holder) argument
300 refcount_not_held(refcount_t *rc, void *holder) argument
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Drefcount.h65 void refcount_create(refcount_t *rc);
66 void refcount_create_untracked(refcount_t *rc);
67 void refcount_create_tracked(refcount_t *rc);
68 void refcount_destroy(refcount_t *rc);
69 void refcount_destroy_many(refcount_t *rc, uint64_t number);
70 int refcount_is_zero(refcount_t *rc);
71 int64_t refcount_count(refcount_t *rc);
72 int64_t refcount_add(refcount_t *rc, void *holder_tag);
73 int64_t refcount_remove(refcount_t *rc, void *holder_tag);
74 int64_t refcount_add_many(refcount_t *rc, uint64_
[all...]
/freebsd-11-stable/etc/rc.d/
H A Dlocal11 . /etc/rc.subr
14 desc="Run /etc/rc.local and /etc/shutdown.local"
20 if [ -f /etc/rc.local ]; then
22 . /etc/rc.local
29 if [ -f /etc/rc.shutdown.local ]; then
31 . /etc/rc.shutdown.local
/freebsd-11-stable/sys/rpc/
H A Dclnt_rc.c81 struct rc_data *rc = NULL; /* private data */ local
89 rc = mem_alloc(sizeof (*rc));
90 mtx_init(&rc->rc_lock, "rc->rc_lock", NULL, MTX_DEF);
91 (void) memcpy(&rc->rc_addr, svcaddr, (size_t)svcaddr->sa_len);
92 rc->rc_nconf = nconf;
93 rc->rc_prog = program;
94 rc->rc_vers = version;
95 rc
123 struct rc_data *rc = (struct rc_data *)cl->cl_private; local
232 struct rc_data *rc = (struct rc_data *)cl->cl_private; local
338 struct rc_data *rc = (struct rc_data *)cl->cl_private; local
350 struct rc_data *rc = (struct rc_data *)cl->cl_private; local
368 struct rc_data *rc = (struct rc_data *)cl->cl_private; local
467 struct rc_data *rc = (struct rc_data *)cl->cl_private; local
492 struct rc_data *rc = (struct rc_data *)cl->cl_private; local
[all...]
/freebsd-11-stable/etc/
H A Dnetstart32 # obsoleted by /etc/rc.d/* and is provided here only for user
39 /etc/rc.d/devd ${_start}
40 /etc/rc.d/hostid ${_start}
41 /etc/rc.d/hostname ${_start}
42 /etc/rc.d/ipmon ${_start}
43 /etc/rc.d/ipfilter ${_start}
44 /etc/rc.d/ipnat ${_start}
45 /etc/rc.d/ipfs ${_start}
46 /etc/rc.d/sppp ${_start}
47 # /etc/rc
[all...]
/freebsd-11-stable/contrib/ncurses/panel/
H A Dp_hidden.c45 int rc = ERR; local
51 rc = (IS_LINKED(pan) ? FALSE : TRUE);
53 returnCode(rc);
/freebsd-11-stable/sys/modules/rc/
H A DMakefile1 # $FreeBSD: stable/11/sys/modules/rc/Makefile 319182 2017-05-30 04:11:12Z ngie $
3 .PATH: ${SRCTOP}/sys/dev/rc
5 KMOD= rc
6 SRCS= rc.c device_if.h bus_if.h isa_if.h
/freebsd-11-stable/release/tools/
H A Dvagrant-vmware.conf12 echo 'firstboot_pkgs_list="sudo rsync open-vm-tools-nox11"' >> ${DESTDIR}/etc/rc.conf
14 echo 'vmware_guest_vmblock_enable="YES"' >> ${DESTDIR}/etc/rc.conf
15 echo 'vmware_guest_vmhgfs_enable="YES"' >> ${DESTDIR}/etc/rc.conf
16 echo 'vmware_guest_vmmemctl_enable="YES"' >> ${DESTDIR}/etc/rc.conf
17 echo 'vmware_guest_vmxnet_enable="YES"' >> ${DESTDIR}/etc/rc.conf
18 echo 'vmware_guestd_enable="YES"' >> ${DESTDIR}/etc/rc.conf

Completed in 413 milliseconds

1234567891011>>