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

/illumos-gate/usr/src/lib/libfsmgt/common/
H A Dfs_shares.c164 char *next_str; local
165 next_str = strptr;
167 while (next_str != NULL) {
168 next_str = strstr(strptr, "sec=");
169 if (next_str != NULL) {
171 *(next_str - 1) = '\0';
173 strptr = next_str;
174 next_str = strstr(strptr + 4, "sec=");
175 if (next_str != NULL) {
176 *(next_str
[all...]
/illumos-gate/usr/src/cmd/sgs/mcs/common/
H A Dutils.c421 size_t next_str; local
436 next_str = 0;
444 pos = next_str;
447 (temp_string_size + (next_str - pos)) <= o_size) {
448 if (next_str >= str_size) {
457 strings[next_str++] = c;
460 if (next_str >= str_size) {
469 strings[next_str++] = NULL;
474 temp_string_size += (next_str - pos);
483 next_str
[all...]

Completed in 45 milliseconds