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

/illumos-gate/usr/src/lib/libcurses/screen/
H A Dring.c51 char **str_array = (char **) cur_strs; local
56 _PUTS(str_array[offsets[bf]] ? str_array[offsets[bf]] :
57 str_array[offsets[1 - bf]], 0);
H A Dinit_costs.c85 char **str_array = (char **) cur_strs; local
104 *costptr++ = _cost_fn(str_array[offsets[i++]], 1);
107 *costptr++ = _cost_fn(tparm_p1(str_array[offsets[i++]], 10), 1);
H A Dsetupterm.c237 char *lcp, *ccp, **on_sequences, **str_array; local
688 str_array = (char **)cur_strs;
703 if ((on_sequences[n] = str_array[offsets[n]]) != 0)
745 if ((!(off_sequences[n] = str_array[offsets[n]])) ||
/illumos-gate/usr/src/lib/libdiskmgt/common/
H A Devents.c386 char **str_array; local
398 (void) nvpair_value_string_array(nvp, &str_array, &cnt);
401 (void) fprintf(stderr, "%s %s\n", prefix, str_array[i]);
/illumos-gate/usr/src/lib/udapl/libdat/common/
H A Dudat_sr_parser.c387 static char *str_array[] = { "string", "eor", "eof" }; local
393 return (str_array[type]);
/illumos-gate/usr/src/lib/hal/libhal/common/
H A Dlibhal.c108 * @str_array: the array to be freed
113 libhal_free_string_array (char **str_array) argument
115 if (str_array != NULL) {
118 for (i = 0; str_array[i] != NULL; i++) {
119 free (str_array[i]);
120 str_array[i] = NULL;
122 free (str_array);
123 str_array = NULL;
3465 * @str_array: array of strings to consider
3472 libhal_string_array_length (char **str_array) argument
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Ddriver_lyr.c952 char **str_array, *strptr; local
971 str_array = (char **)i_ldi_prop_op_alloc(pack_size);
974 strptr = (char *)&(str_array[nelem + 1]);
979 str_array[i] = strptr;
982 str_array[nelem] = NULL;
985 *str_arrayp = str_array;
2428 char **str_array; local
2436 &str_array, &nelem) == 0) {
2438 *data = str_array;

Completed in 103 milliseconds