/src/lib/libc/yp/ |
yp_maplist.c | 48 struct dom_binding *ysd; local in function:__weak_alias 57 if (_yp_dobind(indomain, &ysd) != 0) 62 r = clnt_call(ysd->dom_client, (rpcproc_t)YPPROC_MAPLIST, 67 clnt_perror(ysd->dom_client, "yp_maplist: clnt_call"); 71 ysd->dom_vers = -1; 76 __yp_unbind(ysd);
|
yp_all.c | 51 struct dom_binding *ysd; local in function:__weak_alias 65 if (_yp_dobind(indomain, &ysd) != 0) 69 clnt_sin = ysd->dom_server_addr; 85 __yp_unbind(ysd);
|
yp_master.c | 49 struct dom_binding *ysd; local in function:__weak_alias 65 if (_yp_dobind(indomain, &ysd) != 0) 73 r = clnt_call(ysd->dom_client, (rpcproc_t)YPPROC_MASTER, 78 clnt_perror(ysd->dom_client, "yp_master: clnt_call"); 82 ysd->dom_vers = -1; 90 __yp_unbind(ysd);
|
yp_order.c | 48 struct dom_binding *ysd; local in function:__weak_alias 62 if (_yp_dobind(indomain, &ysd) != 0) 70 r = clnt_call(ysd->dom_client, (rpcproc_t)YPPROC_ORDER, 76 clnt_perror(ysd->dom_client, "yp_order: clnt_call"); 85 ysd->dom_vers = -1; 92 __yp_unbind(ysd);
|
yp_first.c | 53 struct dom_binding *ysd; local in function:__weak_alias 68 if (_yp_dobind(indomain, &ysd) != 0) 75 r = clnt_call(ysd->dom_client, (rpcproc_t)YPPROC_FIRST, 80 clnt_perror(ysd->dom_client, "yp_first: clnt_call"); 84 ysd->dom_vers = -1; 106 __yp_unbind(ysd); 126 struct dom_binding *ysd; local in function:yp_next 143 if (_yp_dobind(indomain, &ysd) != 0) 152 r = clnt_call(ysd->dom_client, (rpcproc_t)YPPROC_NEXT, 157 clnt_perror(ysd->dom_client, "yp_next: clnt_call") [all...] |
yp_match.c | 168 struct dom_binding *ysd; local in function:yp_match 187 if (_yp_dobind(indomain, &ysd) != 0) 209 r = clnt_call(ysd->dom_client, (rpcproc_t)YPPROC_MATCH, 215 clnt_perror(ysd->dom_client, "yp_match: clnt_call"); 221 ysd->dom_vers = -1; 238 __yp_unbind(ysd);
|
yplib.c | 103 struct dom_binding *ysd, *ysd2; local in function:_yp_dobind 128 ysd = _ypbindlist; 129 while (ysd) { 130 if (ysd->dom_client) 131 clnt_destroy(ysd->dom_client); 132 ysd2 = ysd->dom_pnext; 133 free(ysd); 134 ysd = ysd2; 143 for (ysd = _ypbindlist; ysd; ysd = ysd->dom_pnext [all...] |