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

1234567891011>>

/freebsd-10.0-release/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-10.0-release/etc/periodic/daily/
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-disks19 df $daily_status_disks_df_flags && rc=1 || rc=3
28 dump W || rc=3
32 *) rc=0;;
35 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...]
H A D404.status-zfs34 rc=0
36 rc=1
41 rc=0
45 exit $rc
/freebsd-10.0-release/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 D340.noid19 rc=$(find -H ${weekly_noid_dirs:-/} \
23 [ $rc -gt 1 ] && rc=1
26 *) rc=0;;
29 exit $rc
H A D400.status-pkg19 rc=$(${pkg_version:-pkg_version} -v ${pkg_version_index} |
28 [ $rc -gt 1 ] && rc=1;;
30 *) rc=0;;
33 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
/freebsd-10.0-release/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-10.0-release/contrib/ofed/management/opensm/opensm/
H A Dosm_event_plugin.c70 osm_epi_plugin_t *rc = NULL; local
78 rc = malloc(sizeof(*rc));
79 if (!rc)
82 rc->handle = dlopen(lib_name, RTLD_LAZY);
83 if (!rc->handle) {
90 rc->impl =
91 (osm_event_plugin_t *) dlsym(rc->handle,
93 if (!rc->impl) {
101 old_impl = (struct old_if *) rc
[all...]
/freebsd-10.0-release/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...]
/freebsd-10.0-release/sys/rpc/
H A Dreplay.c55 replay_alloc(struct replay_cache *rc, struct rpc_msg *msg,
57 static void replay_free(struct replay_cache *rc,
59 static void replay_prune(struct replay_cache *rc);
76 struct replay_cache *rc; local
79 rc = malloc(sizeof(*rc), M_RPC, M_WAITOK|M_ZERO);
81 TAILQ_INIT(&rc->rc_cache[i]);
82 TAILQ_INIT(&rc->rc_all);
83 mtx_init(&rc->rc_lock, "rc_lock", NULL, MTX_DEF);
84 rc
90 replay_setsize(struct replay_cache *rc, size_t newmaxsize) argument
100 replay_freecache(struct replay_cache *rc) argument
111 replay_alloc(struct replay_cache *rc, struct rpc_msg *msg, struct sockaddr *addr, int h) argument
133 replay_free(struct replay_cache *rc, struct replay_cache_entry *rce) argument
149 replay_prune(struct replay_cache *rc) argument
174 replay_find(struct replay_cache *rc, struct rpc_msg *msg, struct sockaddr *addr, struct rpc_msg *repmsg, struct mbuf **mp) argument
228 replay_setreply(struct replay_cache *rc, struct rpc_msg *repmsg, struct sockaddr *addr, struct mbuf *m) argument
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Drefcount.c59 refcount_create(refcount_t *rc) argument
61 mutex_init(&rc->rc_mtx, NULL, MUTEX_DEFAULT, NULL);
62 list_create(&rc->rc_list, sizeof (reference_t),
64 list_create(&rc->rc_removed, sizeof (reference_t),
66 rc->rc_count = 0;
67 rc->rc_removed_count = 0;
68 rc->rc_tracked = reference_tracking_enable;
72 refcount_create_untracked(refcount_t *rc) argument
74 refcount_create(rc);
75 rc
79 refcount_destroy_many(refcount_t *rc, uint64_t number) argument
100 refcount_destroy(refcount_t *rc) argument
106 refcount_is_zero(refcount_t *rc) argument
112 refcount_count(refcount_t *rc) argument
118 refcount_add_many(refcount_t *rc, uint64_t number, void *holder) argument
140 refcount_add(refcount_t *rc, void *holder) argument
146 refcount_remove_many(refcount_t *rc, uint64_t number, void *holder) argument
194 refcount_remove(refcount_t *rc, void *holder) argument
[all...]
/freebsd-10.0-release/etc/periodic/security/
H A Dsecurity.functions43 rc=0
51 rc=0
68 rc=1
71 cp ${tmpf} ${LOG}/${label}.today || rc=3
75 [ $rc -lt 1 ] && rc=1
80 mv ${LOG}/${label}.today ${LOG}/${label}.yesterday || rc=3
81 mv ${tmpf} ${LOG}/${label}.today || rc=3
85 exit ${rc}
H A D300.chkuid041 rc=0
51 [ $n -gt 0 ] && rc=1 || rc=0
54 exit "$rc"
H A D400.passwdless40 rc=0
48 [ $n -gt 0 ] && rc=1 || rc=0
51 exit "$rc"
H A D410.logincheck40 rc=0
52 [ $n -gt 0 ] && rc=1 || rc=0
55 exit "$rc"
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dgdb_gcore.sh52 rc=0
70 rc=0
73 rc=1
80 exit $rc
/freebsd-10.0-release/etc/rc.d/
H A Dadjkerntz11 . /etc/rc.subr
H A Dbootparams11 . /etc/rc.subr
H A Dftp-proxy10 . /etc/rc.subr

Completed in 102 milliseconds

1234567891011>>