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

/osnet-11/usr/src/lib/libinstzones/common/
H A Dzones_lofs.c144 z_isPathWritable(const char *a_str) argument
155 (void) strlcpy(a_path, a_str, sizeof (a_path));
H A Dzones_str.c532 * Arguments: a_str - [RO, *RW] - (char **)
546 * NOTE: The input string a_str will be freed with 'free'
556 _z_strRemoveLeadingWhitespace(char **a_str) argument
562 assert(a_str != NULL);
566 if (*a_str == NULL) {
569 o_str = *a_str;
575 free(*a_str);
576 *a_str = NULL;
595 /* free string - *a_str is not reset to NULL by free */
596 free(*a_str);
[all...]
/osnet-11/usr/src/lib/libpkg/common/
H A Dpkgstr.c99 * Arguments: a_str - [RO, *RW] - (char **)
113 * NOTE: The input string a_str will be freed with 'free'
123 pkgstrRemoveLeadingWhitespace(char **a_str) argument
129 assert(a_str != (char **)NULL);
133 if (*a_str == (char *)NULL) {
136 o_str = *a_str;
142 free(*a_str);
143 *a_str = (char *)NULL;
162 /* free string - *a_str is reset to NULL by free */
163 free(*a_str);
[all...]

Completed in 18 milliseconds