Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Dtransfer.cpp369 uv_dirent_t dent; in GetSubFiles() local
382 while (uv_fs_scandir_next(&req, &dent) != UV_EOF) { in GetSubFiles()
384 if (strcmp(dent.name, ".") == 0 || strcmp(dent.name, "..") == 0) { in GetSubFiles()
387 if (!(static_cast<uint32_t>(dent.type) & UV_DIRENT_FILE)) { in GetSubFiles()
390 string fileName = dent.name; in GetSubFiles()
410 uv_dirent_t dent; in GetSubFilesRecursively() local
442 while (uv_fs_scandir_next(&req, &dent) != UV_EOF) { in GetSubFilesRecursively()
444 if (strcmp(dent.name, ".") == 0 || strcmp(dent.name, "..") == 0) { in GetSubFilesRecursively()
447 if (!(static_cast<uint32_t>(dent.type) & UV_DIRENT_FILE)) { in GetSubFilesRecursively()
448 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