Home | History | Annotate | Download | only in ewk

Lines Matching refs:directory

97  * Sets the current path to the directory WebKit will write Web
100 * @param path the new database directory path
116 * Returns directory path where web database is stored.
134 * Sets directory where to store icon database, opening or closing database.
136 * @param directory where to store icon database, must be
141 Eina_Bool ewk_settings_icon_database_path_set(const char *directory)
145 if (directory) {
148 if (stat(directory, &st)) {
149 ERR("could not stat(%s): %s", directory, strerror(errno));
154 ERR("not a directory: %s", directory);
158 if (access(directory, R_OK | W_OK)) {
159 ERR("could not access directory '%s' for read and write: %s",
160 directory, strerror(errno));
165 WebCore::iconDatabase().open(WTF::String::fromUTF8(directory), WebCore::IconDatabase::defaultDatabaseFilename());
167 _ewk_icon_database_path = eina_stringshare_add(directory);
169 eina_stringshare_replace(&_ewk_icon_database_path, directory);
182 * Returns directory path where icon database is stored.
385 * Sets cache directory.
410 * Return cache directory path.
416 * @return cache directory path.