Home
last modified time | relevance | path

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

/drivers/peripheral/input/udriver/src/
Dinput_device_manager.cpp72 struct dirent *dEnt = nullptr; in GetFiles() local
81 while ((dEnt = readdir(dir)) != nullptr) { in GetFiles()
82 if ((string(dEnt->d_name) != sDot) && in GetFiles()
83 (string(dEnt->d_name) != sDotDot)) { in GetFiles()
84 if (dEnt->d_type != DT_DIR) { in GetFiles()
85 string d_name(dEnt->d_name); in GetFiles()
86 fileList.push_back(string(dEnt->d_name)); in GetFiles()