/src/tests/lib/libc/rpc/ |
t_rpc.c | 135 SVCXPRT *svc; local in function:rawtest 144 svc = svc_raw_create(); 145 if (svc == NULL) 147 if (!svc_reg(svc, PROGNUM, VERSNUM, server, NULL)) 160 svc_destroy(svc); 312 atf_tc_set_md_var(tc, "descr", "Checks svc raw"); 324 atf_tc_set_md_var(tc, "descr", "Checks svc tcp (select)"); 336 atf_tc_set_md_var(tc, "descr", "Checks svc udp (select)"); 348 atf_tc_set_md_var(tc, "descr", "Checks svc tcp (poll)"); 360 atf_tc_set_md_var(tc, "descr", "Checks svc udp (poll)") [all...] |
/src/usr.sbin/services_mkdb/ |
services_mkdb.c | 78 StringList *sl, ***svc; local in function:main 128 svc = parseservices(fname, sl = sl_init()); 148 if (svc[port] == NULL) 153 if ((s = svc[port][proto]) == NULL) 158 free(svc[port]); 161 free(svc); 178 StringList ***svc, *s; local in function:parseservices 185 svc = ecalloc(PMASK + 1, sizeof(StringList **)); 234 if (svc[pnum] == NULL) 235 svc[pnum] = ecalloc(PROTOMAX, sizeof(StringList *)) [all...] |
/src/lib/libc/rpc/ |
rpc_soc.c | 229 SVCXPRT *svc; local in function:svc_com_create 245 "svc%s_create: could not open connection", netid); 260 "svc%s_create: listen(2) failed: %s", 270 svc = svc_tli_create(fd, nconf, NULL, sendsize, recvsize); 272 if (svc == NULL) 274 port = (((struct sockaddr_in *)svc->xp_ltaddr.buf)->sin_port); 275 svc->xp_port = ntohs(port); 276 return svc;
|
/src/sys/fs/nfs/common/ |
nfs_commonkrpc.c | 399 rpc_gss_service_t svc; local in function:nfs_getauth 411 svc = rpc_gss_svc_none; 413 svc = rpc_gss_svc_integrity; 415 svc = rpc_gss_svc_privacy; 419 srv_principal, mech_oid, svc); 423 svc, NULL, NULL, NULL);
|
/src/sys/dev/hpc/ |
hpcfb.c | 1070 struct hpcfb_vchar *svc = &vscn[row].col[srccol]; local in function:hpcfb_tv_copycols 1084 memcpy(dvc, svc, ncols*sizeof(struct hpcfb_vchar)); 1215 struct hpcfb_tvrow *svc = &vscn[src]; local in function:hpcfb_tv_copyrows 1231 if (svc > dvc) 1233 else if (svc < dvc) { 1234 svc += num-1; 1246 memcpy(&dvc->col[0], &svc->col[0], sizeof(struct hpcfb_vchar)*(svc->maxcol+1)); 1247 if (svc->maxcol < dvc->maxcol && dvc->spacecol < dvc->maxcol) 1249 dvc->maxcol = svc->maxcol 1266 struct hpcfb_vchar *svc; local in function:hpcfb_redraw [all...] |