Lines Matching refs:path
56 // is UNC file path
136 const std::string path = WildcardIfDir(res);
138 granted_in_fs_.Insert(path);
141 granted_out_fs_.Insert(path);
178 const std::string path(s);
179 auto path_len = path.length();
186 auto node = current_node->NextNode(path, parent_node_prefix_len);
200 void FSPermission::RadixTree::Insert(const std::string& path) {
204 int path_len = path.length();
207 bool is_wildcard_node = path[i - 1] == '*';
211 std::string node_path = path.substr(parent_node_prefix_len, i);
223 per_process::Debug(DebugCategory::PERMISSION_MODEL, "Inserting %s\n", path);