Lines Matching refs:outval
645 char **outval, int *outvallen) in yp_match() argument
653 *outval = NULL; in yp_match()
681 *outval = (char *)malloc(*outvallen+1); in yp_match()
682 if (*outval == NULL) { in yp_match()
688 bcopy(yprv.val.valdat_val, *outval, *outvallen); in yp_match()
689 (*outval)[*outvallen] = '\0'; in yp_match()
724 *outval = (char *)malloc(*outvallen+1); in yp_match()
725 if (*outval == NULL) { in yp_match()
732 bcopy(yprv.val.valdat_val, *outval, *outvallen); in yp_match()
733 (*outval)[*outvallen] = '\0'; in yp_match()
768 char **outval, int *outvallen) in yp_first() argument
782 *outkey = *outval = NULL; in yp_first()
826 *outval = (char *)malloc(*outvallen+1); in yp_first()
827 if (*outval == NULL) { in yp_first()
835 bcopy(yprkv.val.valdat_val, *outval, *outvallen); in yp_first()
836 (*outval)[*outvallen] = '\0'; in yp_first()
846 char **outkey, int *outkeylen, char **outval, int *outvallen) in yp_next() argument
861 *outkey = *outval = NULL; in yp_next()
907 *outval = (char *)malloc(*outvallen+1); in yp_next()
908 if (*outval == NULL) { in yp_next()
916 bcopy(yprkv.val.valdat_val, *outval, *outvallen); in yp_next()
917 (*outval)[*outvallen] = '\0'; in yp_next()