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

/freebsd-13-stable/usr.bin/gprof/
H A Dprintlist.c68 struct stringlist *slp; local
70 slp = (struct stringlist *) malloc( sizeof(struct stringlist));
71 if ( slp == (struct stringlist *) 0 )
73 slp -> next = listp -> next;
74 slp -> string = funcname;
75 listp -> next = slp;
81 struct stringlist *slp; local
83 for ( slp = listp -> next ; slp ; slp
[all...]
/freebsd-13-stable/sys/nfsserver/
H A Dnfs.h168 struct nfssvc_sock *slp, struct mbuf **mreqp);
267 int nfsrv3_access(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
269 int nfsrv_commit(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
271 int nfsrv_create(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
279 int nfsrv_fsinfo(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
281 int nfsrv_getattr(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
283 int nfsrv_link(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
285 int nfsrv_lookup(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
287 int nfsrv_mkdir(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
289 int nfsrv_mknod(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
[all...]
/freebsd-13-stable/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-13-stable/usr.sbin/rpc.tlsservd/
H A Drpc.tlsservd.c423 struct ssl_entry *slp; local
427 slp = NULL;
430 LIST_FOREACH(slp, &rpctls_ssllist, next) {
431 if (slp->refno == argp->ssl)
436 if (slp != NULL) {
438 slp->s);
443 ret = SSL_read(slp->ssl, &junk, 0);
446 ret = SSL_get_shutdown(slp->ssl);
449 SSL_shutdown(slp->ssl);
466 struct ssl_entry *slp; local
524 struct ssl_entry *slp; local
[all...]
H A Drpc.tlscommon.c167 struct ssl_entry *slp; local
193 LIST_FOREACH(slp, &rpctls_ssllist, next) {
194 if (slp->cert != NULL) {
196 slp->cert);
206 X509_get_subject_name(slp->cert),
209 X509_get_issuer_name(slp->cert),
227 shutdown(slp->s, SHUT_WR);
228 slp->shutoff = true;
/freebsd-13-stable/usr.sbin/rpc.tlsclntd/
H A Drpc.tlsclntd.c360 struct ssl_entry *slp; local
364 slp = NULL;
367 LIST_FOREACH(slp, &rpctls_ssllist, next) {
368 if (slp->refno == argp->ssl)
373 if (slp != NULL) {
375 slp->s);
380 ret = SSL_read(slp->ssl, &junk, 0);
383 ret = SSL_get_shutdown(slp->ssl);
386 SSL_shutdown(slp->ssl);
403 struct ssl_entry *slp; local
[all...]
/freebsd-13-stable/lib/libc/resolv/
H A Dres_mkupdate.c981 struct valuelist *slp; local
989 slp = (struct valuelist *)malloc(sizeof(struct valuelist));
990 if (!slp)
992 slp->name = strdup(sp->s_name);
993 slp->proto = strdup(sp->s_proto);
994 if ((slp->name == NULL) || (slp->proto == NULL)) {
995 if (slp->name) free(slp->name);
996 if (slp
1013 struct valuelist *slp, *slp_next; local
1031 struct valuelist *slp; local
[all...]
/freebsd-13-stable/sys/dev/isp/
H A Disp_freebsd.c2213 int slp = 0, d; local
2234 slp = 0;
2248 slp = 0;
2250 slp = 1;
2252 slp = 5;
2254 slp = 10;
2256 slp = 20;
2258 slp = 30;
2261 if (slp == 0) {
2269 "Chan %d sleep for %d seconds", chan, slp);
[all...]
/freebsd-13-stable/sys/kern/
H A Dvfs_subr.c2555 sync_vnode(struct synclist *slp, struct bufobj **bo, struct thread *td) argument
2560 *bo = LIST_FIRST(slp);
2578 return (*bo == LIST_FIRST(slp));
2608 struct synclist *next, *slp; local
2647 * of interrupt race on slp queue.
2652 slp = &syncer_workitem_pending[syncer_delayno];
2669 } while (syncer_state != SYNCER_RUNNING && LIST_EMPTY(slp) &&
2682 while (!LIST_EMPTY(slp)) {
2683 error = sync_vnode(slp, &bo, td);

Completed in 190 milliseconds