Home
last modified time | relevance | path

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

/hardware/interfaces/automotive/can/1.0/default/
DCanController.cpp77 std::error_code fsStatus; in getIfaceName() local
79 fs::recursive_directory_iterator fsItr(serialPath.parent_path(), kOpts, fsStatus); in getIfaceName()
80 if (fsStatus != fsErrors::ok) { in getIfaceName()
85 for (; fsStatus == fsErrors::ok && fsItr != fs::recursive_directory_iterator(); in getIfaceName()
86 fsItr.increment(fsStatus)) { in getIfaceName()
89 bool isDir = fsItr->is_directory(fsStatus); in getIfaceName()
90 if (fsStatus != fsErrors::ok || !isDir) continue; in getIfaceName()
99 fs::directory_iterator netItr(fsItr->path(), kOpts, fsStatus); in getIfaceName()
100 if (fsStatus != fsErrors::ok) { in getIfaceName()
109 netItr.increment(fsStatus); in getIfaceName()
[all …]