Lines Matching +defs:val +defs:to
4 * The contents of this file are subject to the terms of the
230 /* read timezones to match continents, and get countries */
316 /* Read country list, match country codes to process entry */
346 /* Skip to country description */
353 lp += len; /* lp points to country desc. */
393 * First copy list to a static array for qsort() to use.
394 * Use the cnt_next field to point back to original structure.
404 /* Next, call qsort() using strcoll() to order */
408 /* Rearrange the country list according to qsort order */
409 head = cp2->ctry_next; /* ctry_next is pointer to orig struct */
781 /* Avoid alphabetic ranges (eg, a-z) due to effect of LC_COLLATE */
814 * isvalid_tz() behaves according to the behavior of Solaris Install
1003 scf_value_t *val = NULL;
1013 (val = scf_value_create(h)) == NULL ||
1014 scf_value_set_astring(val, tz) != 0 ||
1028 scf_entry_add_value(ent, val) != 0) {
1042 scf_value_destroy(val);
1093 * Generate temporary file name to use. We make sure it's in the same
1094 * directory as the db we're processing so that we can use rename to
1231 * Function to traverse a symlink path to find the real file at the end of
1277 *path = '\0'; /* set path to null str */
1303 /* Figure out which format to use */
1395 * skipline() also checks if the line read is too long to
1421 strip_quotes(char *from, char *to)
1428 strip_ptr = to;
1434 *to = *from;
1435 to++;
1443 *to = '\0';