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

/illumos-gate/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...]
/illumos-gate/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...]
/illumos-gate/usr/src/cmd/svr4pkg/libinst/
H A Dsml.c125 static int _smlReadTag(SML_TAG **r_tag, char **a_str, char *parent);
127 static int _smlWriteSimpleTag(char **a_str,
130 static int _smlWriteParamValue(char **a_str, char *value);
1016 smlReadOneTag(SML_TAG **r_tag, char *a_str) argument
1023 assert(a_str != (char *)NULL);
1027 _smlLogMsg(LOG_MSG_DEBUG, DBG_SML_READ_ONE_TAG, a_str);
1035 r = _smlReadTag(r_tag, &a_str, NULL);
2391 _smlReadTag(SML_TAG **r_tag, char **a_str, char *parent) argument
2399 char *p = *a_str;
2404 assert(a_str !
3024 _smlWriteParamValue(char **a_str, char *value) argument
3062 _smlWriteSimpleTag(char **a_str, SML_TAG *tag) argument
[all...]
/illumos-gate/usr/src/cmd/svr4pkg/pkgcond/
H A Dmain.c222 static void removeLeadingWhitespace(char **a_str);
3538 * Arguments: a_str - [RO, *RW] - (char **)
3551 * NOTE: The input string a_str will be freed with 'free'
3561 removeLeadingWhitespace(char **a_str) argument
3567 assert(a_str != (char **)NULL);
3571 if (*a_str == NULL) {
3574 o_str = *a_str;
3580 free(*a_str);
3581 *a_str = NULL;
3601 free(*a_str);
[all...]
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_modapi.h102 MDB_TYPE_STRING, /* a_un.a_str is valid */
110 const char *a_str; member in union:mdb_arg::__anon100

Completed in 74 milliseconds