Searched refs:slp (Results 1 - 10 of 10) sorted by relevance

/freebsd-current/usr.bin/gprof/
H A Dprintlist.c60 struct stringlist *slp; local
62 slp = (struct stringlist *) malloc( sizeof(struct stringlist));
63 if ( slp == (struct stringlist *) 0 )
65 slp -> next = listp -> next;
66 slp -> string = funcname;
67 listp -> next = slp;
73 struct stringlist *slp; local
75 for ( slp = listp -> next ; slp ; slp
[all...]
/freebsd-current/sys/nfsserver/
H A Dnfs.h165 struct nfssvc_sock *slp, struct mbuf **mreqp);
264 int nfsrv3_access(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
266 int nfsrv_commit(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
268 int nfsrv_create(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
276 int nfsrv_fsinfo(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
278 int nfsrv_getattr(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
280 int nfsrv_link(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
282 int nfsrv_lookup(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
284 int nfsrv_mkdir(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
286 int nfsrv_mknod(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Dt-memstat.c45 int r, r2, i, l, slp, sz; local
50 sz = slp = 0;
75 slp = strtol(optarg, NULL, 0);
91 if (slp > 0 && i + 1 < l && 0 == r)
96 sleep(slp);
/freebsd-current/usr.sbin/rpc.tlsclntd/
H A Drpc.tlsclntd.c369 struct ssl_entry *slp; local
373 slp = NULL;
376 LIST_FOREACH(slp, &rpctls_ssllist, next) {
377 if (slp->refno == argp->ssl)
382 if (slp != NULL) {
384 slp->s);
389 ret = SSL_read(slp->ssl, &junk, 0);
392 ret = SSL_get_shutdown(slp->ssl);
395 SSL_shutdown(slp->ssl);
412 struct ssl_entry *slp; local
[all...]
/freebsd-current/lib/libc/resolv/
H A Dres_mkupdate.c975 struct valuelist *slp; local
983 slp = (struct valuelist *)malloc(sizeof(struct valuelist));
984 if (!slp)
986 slp->name = strdup(sp->s_name);
987 slp->proto = strdup(sp->s_proto);
988 if ((slp->name == NULL) || (slp->proto == NULL)) {
989 if (slp->name) free(slp->name);
990 if (slp
1007 struct valuelist *slp, *slp_next; local
1025 struct valuelist *slp; local
[all...]
/freebsd-current/usr.sbin/rpc.tlsservd/
H A Drpc.tlscommon.c165 struct ssl_entry *slp; local
191 LIST_FOREACH(slp, &rpctls_ssllist, next) {
192 if (slp->cert != NULL) {
194 slp->cert);
204 X509_get_subject_name(slp->cert),
207 X509_get_issuer_name(slp->cert),
225 shutdown(slp->s, SHUT_WR);
226 slp->shutoff = true;
H A Drpc.tlsservd.c496 struct ssl_entry *slp; local
500 slp = NULL;
503 LIST_FOREACH(slp, &rpctls_ssllist, next) {
504 if (slp->refno == argp->ssl)
509 if (slp != NULL) {
511 slp->s);
516 ret = SSL_read(slp->ssl, &junk, 0);
519 ret = SSL_get_shutdown(slp->ssl);
522 SSL_shutdown(slp->ssl);
539 struct ssl_entry *slp; local
600 struct ssl_entry *slp; local
[all...]
/freebsd-current/contrib/sendmail/makemap/
H A Dmakemap.c389 int slp = 0; local
494 slp = atoi(optarg);
815 if (slp > 0)
816 sleep(slp);
/freebsd-current/sys/dev/isp/
H A Disp_freebsd.c2220 int slp = 0, d; local
2241 slp = 0;
2255 slp = 0;
2257 slp = 1;
2259 slp = 5;
2261 slp = 10;
2263 slp = 20;
2265 slp = 30;
2268 if (slp == 0) {
2276 "Chan %d sleep for %d seconds", chan, slp);
[all...]
/freebsd-current/sys/kern/
H A Dvfs_subr.c2939 sync_vnode(struct synclist *slp, struct bufobj **bo, struct thread *td) argument
2944 *bo = LIST_FIRST(slp);
2962 return (*bo == LIST_FIRST(slp));
2995 struct synclist *next, *slp; local
3034 * of interrupt race on slp queue.
3039 slp = &syncer_workitem_pending[syncer_delayno];
3056 } while (syncer_state != SYNCER_RUNNING && LIST_EMPTY(slp) &&
3069 while (!LIST_EMPTY(slp)) {
3070 error = sync_vnode(slp, &bo, td);

Completed in 167 milliseconds