Lines Matching refs:path
109 void OnHttpGet(const std::string& host, const std::string& path) override {
110 process(kInspectorHandshakeHttpGet, path);
113 void OnSocketUpgrade(const std::string& host, const std::string& path,
116 process(kInspectorHandshakeUpgraded, path);
177 const std::string& path, bool* cont) {
178 *cont = path.empty() || path != "/close";
181 void process(inspector_handshake_event event, const std::string& path);
201 static const char HANDSHAKE_REQ[] = "GET /ws/path HTTP/1.1\r\n"
209 const std::string& path) {
212 if (path.empty()) {
215 last_path = path;
219 handshake_delegate_(event, path, &should_continue);
585 const std::string& path, bool* cont) {
591 expected_path = "/some/path";
608 EXPECT_EQ(expected_path, path);
615 const char GET_REQ[] = "GET /some/path HTTP/1.1\r\n"
645 const std::string& path, bool* cont) {
649 EXPECT_EQ("/ws/path", path);
670 const std::string& path, bool* cont) {
672 std::string expected_path = "/ws/path";
686 EXPECT_EQ(expected_path, path);
825 const std::string& path, bool* cont) {
845 const char UPGRADE_REQUEST[] = "GET /ws/path HTTP/1.1\r\n"