Home
last modified time | relevance | path

Searched refs:no_stat_dirs (Results 1 – 6 of 6) sorted by relevance

/dports/x11-toolkits/gtkextra/gtkextra-3.3.4/gtkextra/
H A Dgtkdirtree.c686 } no_stat_dirs[] = { in check_dir_extra() local
691 static const gint n_no_stat_dirs = sizeof(no_stat_dirs) / sizeof(no_stat_dirs[0]); in check_dir_extra()
701 if (stat (no_stat_dirs[i].name, &no_stat_dirs[i].statbuf) == 0) in check_dir_extra()
702 no_stat_dirs[i].present = TRUE; in check_dir_extra()
715 if (no_stat_dirs[i].present && in check_dir_extra()
716 (no_stat_dirs[i].statbuf.st_dev == result->st_dev) && in check_dir_extra()
717 (no_stat_dirs[i].statbuf.st_ino == result->st_ino)) in check_dir_extra()
/dports/science/chemtool/chemtool-1.6.14/
H A Dgtkfilesel.c2786 no_stat_dirs[] = in check_dir() local
2802 ( sizeof (no_stat_dirs) / sizeof (no_stat_dirs[0])); in check_dir()
2812 if (stat (no_stat_dirs[i].name, &no_stat_dirs[i].statbuf) == 0) in check_dir()
2813 no_stat_dirs[i].present = TRUE; in check_dir()
2826 if (no_stat_dirs[i].present && in check_dir()
2827 (no_stat_dirs[i].statbuf.st_dev == result->st_dev) && in check_dir()
2828 (no_stat_dirs[i].statbuf.st_ino == result->st_ino)) in check_dir()
/dports/science/chemtool-devel/chemtool-1.7alpha15/
H A Dgtkfilesel.c2786 no_stat_dirs[] = in check_dir() local
2802 ( sizeof (no_stat_dirs) / sizeof (no_stat_dirs[0])); in check_dir()
2812 if (stat (no_stat_dirs[i].name, &no_stat_dirs[i].statbuf) == 0) in check_dir()
2813 no_stat_dirs[i].present = TRUE; in check_dir()
2826 if (no_stat_dirs[i].present && in check_dir()
2827 (no_stat_dirs[i].statbuf.st_dev == result->st_dev) && in check_dir()
2828 (no_stat_dirs[i].statbuf.st_ino == result->st_ino)) in check_dir()
/dports/x11-toolkits/gtk20/gtk+-2.24.33/gtk/
H A Dgtkfilesel.c3117 } no_stat_dirs[] = { in check_dir() local
3122 static const gint n_no_stat_dirs = G_N_ELEMENTS (no_stat_dirs); in check_dir()
3132 if (g_stat (no_stat_dirs[i].name, &no_stat_dirs[i].statbuf) == 0) in check_dir()
3133 no_stat_dirs[i].present = TRUE; in check_dir()
3155 if (no_stat_dirs[i].present && in check_dir()
3156 (no_stat_dirs[i].statbuf.st_dev == result->st_dev) && in check_dir()
3157 (no_stat_dirs[i].statbuf.st_ino == result->st_ino)) in check_dir()
/dports/x11-toolkits/gtk20/gtk+-2.24.33/
H A DChangeLog.pre-2-104313 * gtk/gtkfilesel.c (no_stat_dirs): Avoid relocation.
H A DChangeLog.pre-1-22973 (check_dir): the no_stat_dirs struct must not be const, since we do