Home | History | Annotate | Download | only in intl

Lines Matching refs:locale

50 _nl_find_domain (const char *dirname, char *locale,
65 /* LOCALE can consist of up to four recognized parts for the XPG syntax:
74 the full specified locale is not found, the less specific one are
86 /* If we have already tested for this locale entry there has to
89 strlen (dirname) + 1, 0, locale, NULL, NULL,
93 /* We know something about this locale. */
114 /* See whether the locale value is an alias. If yes its value
117 alias_value = _nl_expand_alias (locale);
121 locale = strdup (alias_value);
122 if (locale == NULL)
126 locale = (char *) malloc (len);
127 if (locale == NULL)
130 memcpy (locale, alias_value, len);
134 /* Now we determine the single parts of the locale name. First
137 mask = _nl_explode_name (locale, &language, &modifier, &territory,
141 /* Create all possible locale entries which might be interested in
167 free (locale);