Searched refs:rc (Results 26 - 50 of 1074) sorted by relevance

1234567891011>>

/freebsd-11-stable/etc/periodic/daily/
H A D300.calendar24 calendar -a && rc=0 || rc=3;;
26 *) rc=0;;
29 exit $rc
H A D100.clean-disks22 rc=2
27 rc=2
44 rc=$(find / \( ! -fstype local -o -fstype rdonly \) -prune -o \
47 [ -z "$print" ] && rc=0
48 [ $rc -gt 1 ] && rc=1
52 *) rc=0;;
55 exit $rc
H A D130.clean-msgs22 rc=2
29 msgs -c $arg && rc=0 || rc=3
32 *) rc=0;;
35 exit $rc
H A D400.status-disks24 (df $daily_status_disks_df_flags | ${ignore}) && rc=1 || rc=3
33 dump W || rc=3
37 *) rc=0;;
40 exit $rc
H A D410.status-mfi21 rc=3
23 rc=0
26 rc=2
30 *) rc=0;;
33 exit $rc
H A D450.status-security25 rc=0
30 periodic security > $tempfile || rc=3
33 rc=3
39 periodic security || rc=3;;
42 periodic security || rc=3;;
44 *) rc=0;;
47 exit $rc
H A D480.status-ntpd14 rc=0
23 rc=1
28 exit $rc
H A D200.backup-passwd20 rc=2
25 rc=2
28 rc=0
35 rc=1
37 cp -p /etc/master.passwd $bak/master.passwd.bak || rc=3
42 [ $rc -lt 1 ] && rc=1
47 cp -p /etc/master.passwd $bak/master.passwd.bak || rc=3
52 [ $rc -lt 1 ] && rc
[all...]
/freebsd-11-stable/contrib/apr-util/ldap/
H A Dapr_ldap_option.c66 result->rc = ldap_get_option(ldap, option, outvalue);
69 if (result->rc != LDAP_SUCCESS) {
70 result->msg = ldap_err2string(result-> rc);
116 result->rc = -1;
121 result->rc = ldapssl_set_verify_mode(LDAPSSL_VERIFY_SERVER);
124 result->rc = ldapssl_set_verify_mode(LDAPSSL_VERIFY_NONE);
133 result->rc = ldap_set_option(NULL, LDAP_OPT_X_TLS_REQUIRE_CERT, &i);
137 result->rc = ldap_set_option(NULL, LDAP_OPT_X_TLS_REQUIRE_CERT, &i);
142 result->rc = -1;
148 if (result->rc !
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/uctf/
H A Derr.invalidtype.ksh33 rc=$?
35 exit $rc
H A Derr.invalidtype2.ksh34 rc=$?
36 exit $rc
/freebsd-11-stable/etc/periodic/weekly/
H A D310.locate21 touch $locdb && rc=0 || rc=3
22 chown nobody $locdb || rc=3
23 chmod 644 $locdb || rc=3
26 echo /usr/libexec/locate.updatedb | nice -n 5 su -fm nobody || rc=3
27 chmod 444 $locdb || rc=3;;
29 *) rc=0;;
32 exit $rc
H A D330.catman20 rc=2
31 rc=3
34 rc=0
38 su -fm man || rc=3
46 "$MANPATH" | LC_ALL=$i su -fm man || rc=3
51 rc=3
55 *) rc=0;;
58 exit $rc
H A D320.whatis25 rc=3
28 rc=0
32 /usr/libexec/makewhatis.local "${MANPATH}" || rc=3
40 -L "${MANPATH}" || rc=3
45 rc=3
48 *) rc=0;;
51 exit $rc
H A D450.status-security25 rc=0
30 periodic security > $tempfile || rc=3
33 rc=3
39 periodic security || rc=3;;
42 periodic security || rc=3;;
44 *) rc=0;;
47 exit $rc
/freebsd-11-stable/lib/libcompat/4.3/
H A Dre_comp.c58 int rc; local
72 rc = regcomp(&re_regexp, s, REG_EXTENDED);
73 if (rc == 0) {
78 regerror(rc, &re_regexp, re_errstr, sizeof(re_errstr));
86 int rc; local
90 rc = regexec(&re_regexp, s, 0, NULL, 0);
91 return (rc == 0 ? 1 : 0);
/freebsd-11-stable/contrib/ntp/libntp/
H A Dxsbprintf.c40 int rc = -1; local
43 rc = vsnprintf(pbuf, blen, pfmt, va);
44 if (rc > 0) {
45 if ((size_t)rc >= blen)
46 rc = 0;
47 pbuf += rc;
54 return rc;
67 int rc; local
70 rc = xvsbprintf(ppbuf, pend, pfmt, va);
72 return rc;
[all...]
/freebsd-11-stable/etc/periodic/monthly/
H A D200.accounting19 rc=0
26 zcat $W.0.gz > $W.0 || rc=1
30 bzcat $W.0.bz2 > $W.0 || rc=1
34 rc=2
37 if [ $rc -eq 0 ]
42 rc=$(ac -p -w $W.0 | sort -nr -k 2 | tee /dev/stderr | wc -l)
43 [ $rc -gt 0 ] && rc=1
47 *) rc=0;;
51 exit $rc
[all...]
H A D450.status-security25 rc=0
30 periodic security > $tempfile || rc=3
33 rc=3
39 periodic security || rc=3;;
42 periodic security || rc=3;;
44 *) rc=0;;
47 exit $rc
/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_event_plugin.c72 osm_epi_plugin_t *rc = NULL; local
80 rc = malloc(sizeof(*rc));
81 if (!rc)
84 rc->handle = dlopen(lib_name, RTLD_LAZY);
85 if (!rc->handle) {
92 rc->impl =
93 (osm_event_plugin_t *) dlsym(rc->handle,
95 if (!rc->impl) {
103 old_impl = (struct old_if *) rc
[all...]
/freebsd-11-stable/sys/rpc/
H A Dreplay.c56 replay_alloc(struct replay_cache *rc, struct rpc_msg *msg,
58 static void replay_free(struct replay_cache *rc,
60 static void replay_prune(struct replay_cache *rc);
77 struct replay_cache *rc; local
80 rc = malloc(sizeof(*rc), M_RPC, M_WAITOK|M_ZERO);
82 TAILQ_INIT(&rc->rc_cache[i]);
83 TAILQ_INIT(&rc->rc_all);
84 mtx_init(&rc->rc_lock, "rc_lock", NULL, MTX_DEF);
85 rc
91 replay_setsize(struct replay_cache *rc, size_t newmaxsize) argument
101 replay_freecache(struct replay_cache *rc) argument
112 replay_alloc(struct replay_cache *rc, struct rpc_msg *msg, struct sockaddr *addr, int h) argument
134 replay_free(struct replay_cache *rc, struct replay_cache_entry *rce) argument
150 replay_prune(struct replay_cache *rc) argument
175 replay_find(struct replay_cache *rc, struct rpc_msg *msg, struct sockaddr *addr, struct rpc_msg *repmsg, struct mbuf **mp) argument
229 replay_setreply(struct replay_cache *rc, struct rpc_msg *repmsg, struct sockaddr *addr, struct mbuf *m) argument
[all...]
/freebsd-11-stable/etc/periodic/security/
H A Dsecurity.functions43 rc=0
52 rc=0
69 rc=1
72 cp ${tmpf} ${LOG}/${label}.today || rc=3
76 [ $rc -lt 1 ] && rc=1
81 mv ${LOG}/${label}.today ${LOG}/${label}.yesterday || rc=3
82 mv ${tmpf} ${LOG}/${label}.today || rc=3
86 exit ${rc}
/freebsd-11-stable/release/tools/
H A Dvagrant-virtualbox.conf12 echo 'firstboot_pkgs_list="sudo rsync virtualbox-ose-additions-nox11"' >> ${DESTDIR}/etc/rc.conf
13 echo 'vboxguest_enable="YES"' >> ${DESTDIR}/etc/rc.conf
14 echo 'vboxservice_enable="YES"' >> ${DESTDIR}/etc/rc.conf
/freebsd-11-stable/sys/xen/
H A Dhypervisor.h36 int rc = HYPERVISOR_sched_op(SCHEDOP_yield, NULL); local
39 if (rc == -ENOXENSYS)
40 rc = HYPERVISOR_sched_op_compat(SCHEDOP_yield, 0);
42 return (rc);
49 int rc = HYPERVISOR_sched_op(SCHEDOP_block, NULL); local
52 if (rc == -ENOXENSYS)
53 rc = HYPERVISOR_sched_op_compat(SCHEDOP_block, 0);
55 return (rc);
86 int rc; local
93 rc
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/rangecoder/
H A Drange_decoder.h29 rc_read_init(lzma_range_decoder *rc, const uint8_t *restrict in, argument
32 while (rc->init_bytes_left > 0) {
39 if (rc->init_bytes_left == 5 && in[*in_pos] != 0x00)
42 rc->code = (rc->code << 8) | in[*in_pos];
44 --rc->init_bytes_left;
55 lzma_range_decoder rc = range_decoder; \
63 range_decoder = rc; \
77 /// When decoding has been properly finished, rc.code is always zero unless
89 if (rc
[all...]

Completed in 111 milliseconds

1234567891011>>