Lines Matching defs:filepath
772 static bool isIccFile( gchar const *filepath )
776 if ( g_stat(filepath, &st) == 0 && (st.st_size > 128) ) {
779 int fd = g_open( filepath, O_RDONLY, S_IRWXU);
796 cmsHPROFILE prof = cmsOpenProfileFromFile( filepath, "r" );
827 gchar *filepath = g_build_filename(it->c_str(), file, NULL);
828 if ( g_file_test( filepath, G_FILE_TEST_IS_DIR ) ) {
829 sources.push_back( filepath );
831 if ( isIccFile( filepath ) ) {
832 files.push_back( filepath );
836 g_free(filepath);