Searched refs:outkeylen (Results 1 – 4 of 4) sorted by relevance
/freebsd/usr.sbin/ypserv/common/ |
H A D | yplib_host.c | 175 int *outkeylen, char **outval, int *outvallen) in yp_first_host() argument 183 *outkeylen = *outvallen = 0; in yp_first_host() 198 *outkeylen = yprkv.key.keydat_len; in yp_first_host() 199 *outkey = malloc(*outkeylen+1); in yp_first_host() 200 memcpy(*outkey, yprkv.key.keydat_val, *outkeylen); in yp_first_host() 201 (*outkey)[*outkeylen] = '\0'; in yp_first_host() 214 int inkeylen, char **outkey, int *outkeylen, char **outval, int *outvallen) in yp_next_host() argument 222 *outkeylen = *outvallen = 0; in yp_next_host() 239 *outkeylen = yprkv.key.keydat_len; in yp_next_host() 240 *outkey = malloc(*outkeylen+1); in yp_next_host() [all …]
|
H A D | yplib_host.h | 35 char **outkey, int *outkeylen, char **outval, int *outvallen); 37 int inkeylen, char **outkey, int *outkeylen, char **outval,
|
/freebsd/lib/libc/yp/ |
H A D | yplib.c | 767 yp_first(char *indomain, char *inmap, char **outkey, int *outkeylen, in yp_first() argument 783 *outkeylen = *outvallen = 0; in yp_first() 814 *outkeylen = yprkv.key.keydat_len; in yp_first() 815 *outkey = (char *)malloc(*outkeylen+1); in yp_first() 818 *outkeylen = 0; in yp_first() 823 bcopy(yprkv.key.keydat_val, *outkey, *outkeylen); in yp_first() 824 (*outkey)[*outkeylen] = '\0'; in yp_first() 830 *outkeylen = *outvallen = 0; in yp_first() 846 char **outkey, int *outkeylen, char **outval, int *outvallen) in yp_next() argument 862 *outkeylen = *outvallen = 0; in yp_next() [all …]
|
/freebsd/include/rpcsvc/ |
H A D | ypclnt.h | 79 int yp_first(char *indomain, char *inmap, char **outkey, int *outkeylen, 82 char **outkey, int *outkeylen, char **outval, int *outvallen);
|