Lines Matching defs:std
79 using namespace std;
106 typedef std::pair<ino_t, dev_t> SrcId;
109 namespace std {
119 typedef std::unordered_map<SrcId, Inode> InodeMap;
128 std::mutex m;
146 std::mutex mutex;
153 std::string source;
160 std::string fuse_mount_options;
350 } catch (std::bad_alloc&) {
1166 std::cout << argv[0] << ": " << exc.what() << std::endl;
1173 static void string_split(std::string s, std::vector<std::string>& out, std::string delimiter) {
1175 std::string token;
1177 while ((pos_end = s.find(delimiter, pos_start)) != std::string::npos) {
1187 static std::string string_join(const std::vector<std::string>& elems, char delim)
1189 std::ostringstream out;
1202 std::vector<std::string> mount_options;
1228 std::cout << std::endl << "options:"
1233 std::cout << argv[0] << ": invalid number of arguments\n";
1251 fs.source = std::string {resolved_path};
1254 std::vector<std::string> flattened_mount_opts;
1268 std::cout << argv[0] << ": Unsupported mount option: " << opt << "\n";