Lines Matching refs:outkey
767 yp_first(char *indomain, char *inmap, char **outkey, int *outkeylen, in yp_first() argument
782 *outkey = *outval = NULL; in yp_first()
815 *outkey = (char *)malloc(*outkeylen+1); in yp_first()
816 if (*outkey == NULL) { in yp_first()
823 bcopy(yprkv.key.keydat_val, *outkey, *outkeylen); in yp_first()
824 (*outkey)[*outkeylen] = '\0'; in yp_first()
828 free(*outkey); in yp_first()
846 char **outkey, int *outkeylen, char **outval, int *outvallen) in yp_next() argument
861 *outkey = *outval = NULL; in yp_next()
896 *outkey = (char *)malloc(*outkeylen+1); in yp_next()
897 if (*outkey == NULL) { in yp_next()
904 bcopy(yprkv.key.keydat_val, *outkey, *outkeylen); in yp_next()
905 (*outkey)[*outkeylen] = '\0'; in yp_next()
909 free(*outkey); in yp_next()