Searched refs:rc (Results 351 - 375 of 878) sorted by relevance

<<11121314151617181920>>

/freebsd-10.3-release/crypto/openssh/
H A Dkrl.c145 revoked_certs_free(struct revoked_certs *rc) argument
150 RB_FOREACH_SAFE(rs, revoked_serial_tree, &rc->revoked_serials, trs) {
151 RB_REMOVE(revoked_serial_tree, &rc->revoked_serials, rs);
154 RB_FOREACH_SAFE(rki, revoked_key_id_tree, &rc->revoked_key_ids, trki) {
155 RB_REMOVE(revoked_key_id_tree, &rc->revoked_key_ids, rki);
159 sshkey_free(rc->ca_key);
166 struct revoked_certs *rc, *trc; local
182 TAILQ_FOREACH_SAFE(rc, &krl->revoked_certs, entry, trc) {
183 TAILQ_REMOVE(&krl->revoked_certs, rc, entry);
184 revoked_certs_free(rc);
211 struct revoked_certs *rc; local
326 struct revoked_certs *rc; local
341 struct revoked_certs *rc; local
547 revoked_certs_generate(struct revoked_certs *rc, struct sshbuf *buf) argument
710 struct revoked_certs *rc; local
1163 is_cert_revoked(const struct sshkey *key, struct revoked_certs *rc) argument
1200 struct revoked_certs *rc; local
[all...]
/freebsd-10.3-release/sys/boot/zfs/
H A Dzfsimpl.c221 int rc; local
223 rc = 0;
253 rc = EIO;
263 return (rc);
408 int rc; local
420 rc = vdev->v_phys_read(vdev, vdev->v_read_priv, offset, buf, psize);
421 if (rc)
422 return (rc);
444 int rc; local
446 rc
513 int rc; local
894 int i, rc, is_newer; local
1224 int i, rc; local
1379 int rc; local
1454 int rc; local
1717 int rc; local
2084 int rc; local
[all...]
/freebsd-10.3-release/sys/dev/sfxge/
H A Dsfxge_tx.c283 int rc; local
295 rc = efx_tx_qdesc_post(txq->common, txq->pend_desc, txq->n_pend_desc,
297 KASSERT(rc == 0, ("efx_tx_qdesc_post() failed"));
352 int rc; local
363 rc = EINTR;
370 rc = bus_dmamap_load_mbuf_sg(txq->packet_dma_tag, stmp->map,
372 if (rc == EFBIG) {
380 rc = bus_dmamap_load_mbuf_sg(txq->packet_dma_tag,
384 if (rc != 0)
397 rc
464 int rc; local
639 int rc; local
800 int rc; local
914 int i, rc; local
1135 int rc; local
1521 int rc; local
1619 int rc; local
1712 int rc; local
1933 int rc; local
[all...]
/freebsd-10.3-release/contrib/libstdc++/include/ext/pb_ds/detail/rc_binomial_heap_/
H A Drc.hpp43 * @file rc.hpp
59 rc<Node, Allocator>
62 class rc class in namespace:pb_ds::detail
97 rc();
99 rc(const PB_DS_CLASS_C_DEC& other);
146 rc() : m_over_top(0) function in class:pb_ds::detail::PB_DS_CLASS_C_DEC
151 rc(const PB_DS_CLASS_C_DEC& other) : m_over_top(0) function in class:pb_ds::detail::PB_DS_CLASS_C_DEC
255 std::cout << "rc" << std::endl;
/freebsd-10.3-release/contrib/ntp/tests/sec-2853/
H A DMakefile.am58 BUILT_SOURCES += check-libntp check-libunity check-rc-cmdlength
59 CLEANFILES += check-libntp check-libunity check-rc-cmdlength
73 check-rc-cmdlength: ../../ntpd/rc_cmdlength.o
/freebsd-10.3-release/crypto/openssh/contrib/aix/
H A Dbuildbff.sh275 # otherwise add to rc.tcpip
276 if egrep "^\$oldstartcmd" /etc/rc.tcpip >/dev/null
278 if sed "s|^\$oldstartcmd|\$startupcmd|g" /etc/rc.tcpip >/etc/rc.tcpip.new
280 chmod 0755 /etc/rc.tcpip.new
281 mv /etc/rc.tcpip /etc/rc.tcpip.old && \
282 mv /etc/rc.tcpip.new /etc/rc.tcpip
284 echo "Updating /etc/rc
[all...]
/freebsd-10.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctfconvert.c93 int i, rc, fd; local
115 if ((rc = readers[i](td, elf, filename)) == 0)
118 assert(rc < 0 && errno == ENOENT);
137 rc = 0;
139 rc = 1;
145 return (rc);
H A Dfifo.c143 int rc; local
147 if ((rc = iter(fn->fn_data, arg)) < 0)
149 ret += rc;
/freebsd-10.3-release/contrib/apr-util/dbm/
H A Dapr_dbm_ndbm.c142 int rc; local
151 rc = dbm_store(dbm->file, kd, vd, DBM_REPLACE);
154 return set_error(dbm, ndbm2s(rc));
159 int rc; local
165 rc = dbm_delete(dbm->file, kd);
168 return set_error(dbm, ndbm2s(rc));
/freebsd-10.3-release/usr.bin/gzip/
H A Dznew129 rc=0
133 rc=$?
137 exit $rc
/freebsd-10.3-release/contrib/ntp/tests/bug-2803/
H A Dbug-2803.c84 int rc = do_test( timetv, tvlast ); local
85 if (rc < 0 && exit_on_err )
86 return rc;
/freebsd-10.3-release/contrib/nvi/ex/
H A Dex_source.c47 int rc; local
90 rc = ex_run_str(sp, np, wp, wlen - 1, 1, 0);
94 return (rc);
/freebsd-10.3-release/contrib/ofed/libibverbs/examples/
H A Ddevinfo.c160 int rc = 0; local
164 rc = ibv_query_gid(ctx, port_num, i, &gid);
165 if (rc) {
168 return rc;
182 return rc;
203 int rc = 0; local
210 rc = 1;
215 rc = 2;
283 rc = ibv_query_port(ctx, port, &port_attr);
284 if (rc) {
[all...]
/freebsd-10.3-release/contrib/ntp/libntp/
H A Dmsyslog.c126 int rc;
128 rc = strerror_r(err, buf, bufsiz);
129 if (rc < 0)
298 int rc; local
301 rc = mvfprintf(fp, fmt, ap);
304 return rc;
315 int rc; local
318 rc = mvfprintf(stdout, fmt, ap);
321 return rc;
334 int rc; local
[all...]
/freebsd-10.3-release/contrib/llvm/lib/Target/R600/
H A DR600RegisterInfo.cpp59 R600RegisterInfo::getISARegClass(const TargetRegisterClass * rc) const {
60 switch (rc->getID()) {
64 default: return rc;
/freebsd-10.3-release/contrib/openresolv/
H A Dconfigure146 if [ -e /etc/arch-release -a -d /etc/rc.d ]; then
147 RCDIR=/etc/rc.d
148 RESTARTCMD="[ -e /var/run/daemons/\1 ] \&\& /etc/rc.d/\1 restart"
157 if [ -x /sbin/rc-service ]; then
158 RESTARTCMD="if /sbin/rc-service -e \1; then /sbin/rc-service \1 -- -Ds restart; fi"
165 printf "Checking for invoke-rc.d ... "
166 if [ -x /usr/sbin/invoke-rc.d ]; then
168 RESTARTCMD="if /usr/sbin/invoke-rc.d --quiet \1 status >/dev/null 2>\&1; then /usr/sbin/invoke-rc
[all...]
/freebsd-10.3-release/share/man/man5/
H A DMakefile55 rc.conf.5 \
76 MLINKS+=rc.conf.5 rc.conf.local.5
/freebsd-10.3-release/tools/tools/net80211/w00t/libw00t/
H A Dw00t.c164 int rc; local
173 rc = writev(fd, iov, 2);
174 if (rc == -1)
175 return rc;
177 rc -= iov[0].iov_len; /* XXX could be negative */
178 return rc;
232 int rc; local
242 rc = inject(fd, buf, sizeof(buf));
243 return rc;
256 int s, rc; local
[all...]
/freebsd-10.3-release/usr.sbin/pw/
H A Dpwupd.c91 int rc, pfd, tfd; local
93 if ((rc = pwdb_check()) != 0)
94 return (rc);
/freebsd-10.3-release/contrib/ofed/management/opensm/scripts/
H A Dopensm.init.in51 if [[ -s /etc/rc.status ]]; then
52 . /etc/rc.status
/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/ttyio/
H A Dt_ttyio.c80 int m, s, rc; local
144 rc = 0;
147 rc = 1;
155 ATF_REQUIRE_EQ(rc, 0);
/freebsd-10.3-release/contrib/llvm/tools/lli/Unix/
H A DRemoteTargetExternal.inc62 int rc = execv(ChildName.c_str(), args);
63 if (rc != 0)
/freebsd-10.3-release/crypto/heimdal/lib/com_err/
H A DMakefile.am45 compile_et-version.rc \
46 libcom_err-version.rc \
/freebsd-10.3-release/crypto/openssh/contrib/hpux/
H A Dsshd.rc4 # sshd.rc: SSH daemon start-up and shutdown script
19 # stdout and stderr are redirected to the /etc/rc.log file
28 WHAT_CONFIG=/etc/rc.config.d/sshd
/freebsd-10.3-release/sys/boot/userboot/userboot/
H A Dhost.c116 int rc; local
118 rc = CALLBACK(readdir, f->f_fsdata, &fileno, &type, &namelen,
120 if (rc)
121 return (rc);

Completed in 246 milliseconds

<<11121314151617181920>>