Lines Matching refs:dent
432 uv_dirent_t dent;
445 while (uv_fs_scandir_next(&req, &dent) != UV_EOF) {
447 if (strcmp(dent.name, ".") == 0 || strcmp(dent.name, "..") == 0) {
450 if (!(static_cast<uint32_t>(dent.type) & UV_DIRENT_FILE)) {
453 string fileName = dent.name;
473 uv_dirent_t dent;
505 while (uv_fs_scandir_next(&req, &dent) != UV_EOF) {
507 if (strcmp(dent.name, ".") == 0 || strcmp(dent.name, "..") == 0) {
510 if (!(static_cast<uint32_t>(dent.type) & UV_DIRENT_FILE)) {
511 WRITE_LOG(LOG_DEBUG, "subdir dent.name fileName = %s", dent.name);
512 GetSubFilesRecursively(path + Base::GetPathSep() + dent.name,
513 currentDirname + Base::GetPathSep() + dent.name, out);
516 string fileName = dent.name;