Searched refs:st (Results 1 – 7 of 7) sorted by relevance
/locale/ |
A D | loadlocale.c | 169 struct __stat64_t64 st; in _nl_load_locale() local 182 if (__glibc_unlikely (__fstat64_time64 (fd, &st) < 0)) in _nl_load_locale() 188 if (__glibc_unlikely (S_ISDIR (st.st_mode))) in _nl_load_locale() 208 if (__glibc_unlikely (__fstat64_time64 (fd, &st) < 0)) in _nl_load_locale() 223 filedata = __mmap ((caddr_t) 0, st.st_size, in _nl_load_locale() 233 filedata = malloc (st.st_size); in _nl_load_locale() 236 off_t to_read = st.st_size; in _nl_load_locale() 266 newdata = _nl_intern_locale_data (category, filedata, st.st_size); in _nl_load_locale() 272 __munmap ((caddr_t) filedata, st.st_size); in _nl_load_locale()
|
A D | loadarchive.c | 399 struct __stat64_t64 st; in _nl_load_locale_from_archive() local 408 if (__fstat64_time64 (fd, &st) < 0 in _nl_load_locale_from_archive() 409 || st.st_size != archive_stat.st_size in _nl_load_locale_from_archive() 410 || st.st_mtime != archive_stat.st_mtime in _nl_load_locale_from_archive() 411 || st.st_dev != archive_stat.st_dev in _nl_load_locale_from_archive() 412 || st.st_ino != archive_stat.st_ino) in _nl_load_locale_from_archive()
|
A D | iso-639.def | 448 DEFINE_LANGUAGE_CODE ("Sotho, Southern", st, sot, sot)
|
A D | C-translit.h.in | 841 "\xfb06" "st" # <UFB06> LATIN SMALL LIGATURE ST
|
/locale/programs/ |
A D | locale.c | 323 struct stat64 st; in select_dirs() local 330 if (stat64 (buf, &st) == 0) in select_dirs() 331 mode = st.st_mode; in select_dirs() 455 struct stat64 st; in write_locales() local 463 if (stat64 (buf, &st) == 0 && S_ISREG (st.st_mode)) in write_locales() 488 munmap (mapped, st.st_size); in write_locales() 496 if (fd != -1 && fstat64 (fd, &st) >= 0 in write_locales() 503 munmap (mapped, st.st_size); in write_locales() 638 struct stat64 st; in write_archive_locales() local 651 if (fstat64 (fd, &st) < 0 || st.st_size < sizeof (*head)) in write_archive_locales() [all …]
|
A D | locarchive.c | 294 struct stat64 st; in file_data_available_p() local 298 if (st.st_size > ah->reserved) in file_data_available_p() 311 ah->mmaped = st.st_size; in file_data_available_p() 334 struct stat64 st; in enlarge_archive() local 356 if (st.st_size < ah->reserved) in enlarge_archive() 374 ah->mmaped = st.st_size; in enlarge_archive() 559 struct stat64 st; in open_archive() local 638 || st.st_dev != st2.st_dev in open_archive() 639 || st.st_ino != st2.st_ino) in open_archive() 665 ah->mmaped = st.st_size; in open_archive() [all …]
|
A D | locfile.c | 757 struct stat64 st; in write_locale_data() local 759 if (stat64 (fname, &st) < 0) in write_locale_data() 767 else if (!S_ISREG (st.st_mode)) in write_locale_data()
|
Completed in 20 milliseconds