Searched defs:av_v (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_tmpl.c374 * converted to a numeric form which is the reason for the av_v union.
385 } av_v; /* Container for the values */ member in struct:avalues
847 uu_free(av->av_v.av_unsigned);
850 uu_free(av->av_v.av_integer);
858 uu_free(av->av_v.av_string);
887 av->av_v.av_unsigned = uu_zalloc(count * sizeof (uint64_t));
888 if (av->av_v.av_unsigned == NULL)
892 av->av_v.av_integer = uu_zalloc(count * sizeof (int64_t));
893 if (av->av_v.av_integer == NULL)
897 av->av_v
[all...]

Completed in 64 milliseconds