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