Lines Matching defs:path
78 lws_dir_via_stat(char *combo, size_t l, const char *path, struct lws_dir_entry *lde)
82 lws_strncpy(combo + l, path, COMBO_SIZEOF - l);
220 char path[384];
229 lws_snprintf(path, sizeof(path), "%s%c%s", dirpath, csep,
231 filter->cb(filter->user, path);
240 char path[384];
245 lws_snprintf(path, sizeof(path), "%s%c%s", dirpath, csep, lde->name);
262 if (readlink(path, dummy, sizeof(dummy)) < 0)
264 lws_dir(path, NULL, lws_dir_rm_rf_cb);
266 if (rmdir(path))
267 lwsl_warn("%s: rmdir %s failed %d\n", __func__, path, errno);
269 if (unlink(path)) {
271 SetFileAttributesA(path, FILE_ATTRIBUTE_NORMAL);
272 if (unlink(path))
274 if (rmdir(path))
277 __func__, path, errno, lde->type);
301 char path[256], base[64], *q = base;
330 lws_snprintf(path, sizeof(path) - 1, "%s/%s", dirpath, lde->name);
332 pl = lws_plat_dlopen(pa->pplugin, path, base, pa->_class,
361 * Check LD_LIBRARY_PATH override path first if present