Lines Matching refs:outval
137 int inkeylen, char **outval, int *outvallen) in yp_match_host() argument
144 *outval = NULL; in yp_match_host()
164 *outval = malloc(*outvallen + 1); in yp_match_host()
165 memcpy(*outval, yprv.val.valdat_val, *outvallen); in yp_match_host()
166 (*outval)[*outvallen] = '\0'; in yp_match_host()
175 int *outkeylen, char **outval, int *outvallen) in yp_first_host() argument
182 *outkey = *outval = NULL; in yp_first_host()
203 *outval = malloc(*outvallen+1); in yp_first_host()
204 memcpy(*outval, yprkv.val.valdat_val, *outvallen); in yp_first_host()
205 (*outval)[*outvallen] = '\0'; in yp_first_host()
214 int inkeylen, char **outkey, int *outkeylen, char **outval, int *outvallen) in yp_next_host() argument
221 *outkey = *outval = NULL; in yp_next_host()
244 *outval = malloc(*outvallen+1); in yp_next_host()
245 memcpy(*outval, yprkv.val.valdat_val, *outvallen); in yp_next_host()
246 (*outval)[*outvallen] = '\0'; in yp_next_host()