Home | History | Annotate | Download | only in support

Lines Matching defs:File

45 static const fs::path File          = TestFileList[0];
162 std::string create_fifo(std::string file) {
163 file = sanitize_path(std::move(file));
164 fs_helper_run(fs_make_cmd("create_fifo", file));
165 return file;
171 std::string create_socket(std::string file) {
172 file = sanitize_path(std::move(file));
173 fs_helper_run(fs_make_cmd("create_socket", file));
174 return file;