Lines Matching refs:bs
855 struct nis_sdata *bs, /* User buffer structure */ in nis_get_static_storage() argument
862 if (!bs) in nis_get_static_storage()
865 if (!bs->buf) { in nis_get_static_storage()
866 bs->buf = malloc(sz); in nis_get_static_storage()
867 if (!bs->buf) in nis_get_static_storage()
869 bs->size = sz; in nis_get_static_storage()
873 } else if (bs->size < sz) { in nis_get_static_storage()
876 free(bs->buf); in nis_get_static_storage()
877 size_delta = - (bs->size); in nis_get_static_storage()
878 bs->buf = malloc(sz); in nis_get_static_storage()
882 if (!bs->buf) in nis_get_static_storage()
884 bs->size = sz; in nis_get_static_storage()
891 (void) memset(bs->buf, 0, sz); /* SYSV version of bzero() */ in nis_get_static_storage()
892 return (bs->buf); in nis_get_static_storage()