Home
last modified time | relevance | path

Searched refs:dent (Results 1 – 2 of 2) sorted by relevance

/developtools/hdc/src/common/
Dtransfer.cpp373 uv_dirent_t dent; in GetSubFiles() local
386 while (uv_fs_scandir_next(&req, &dent) != UV_EOF) { in GetSubFiles()
388 if (strcmp(dent.name, ".") == 0 || strcmp(dent.name, "..") == 0) { in GetSubFiles()
391 if (!(static_cast<uint32_t>(dent.type) & UV_DIRENT_FILE)) { in GetSubFiles()
394 string fileName = dent.name; in GetSubFiles()
414 uv_dirent_t dent; in GetSubFilesRecursively() local
448 while (uv_fs_scandir_next(&req, &dent) != UV_EOF) { in GetSubFilesRecursively()
450 if (strcmp(dent.name, ".") == 0 || strcmp(dent.name, "..") == 0) { in GetSubFilesRecursively()
453 if (!(static_cast<uint32_t>(dent.type) & UV_DIRENT_FILE)) { in GetSubFilesRecursively()
454 WRITE_LOG(LOG_DEBUG, "subdir dent.name fileName = %s", dent.name); in GetSubFilesRecursively()
[all …]
/developtools/profiler/hiebpf/include/
Dvmlinux.h157479 struct proc_dir_entry *dent; member