HomeSort by relevance Sort by last modified time
    Searched full:was_clean (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/ppapi/utility/websocket/
websocket_api.cc 94 bool was_clean = GetCloseWasClean();
95 if (!was_clean)
97 api_->WebSocketDidClose(was_clean, GetCloseCode(), GetCloseReason());
  /external/chromium_org/content/browser/renderer_host/
websocket_host.cc 211 void WebSocketHost::OnDropChannel(bool was_clean,
215 << " routing_id=" << routing_id_ << " was_clean=" << was_clean
218 // TODO(yhirano): Handle |was_clean| appropriately.
websocket_host.h 58 void OnDropChannel(bool was_clean, uint16 code, const std::string& reason);
websocket_dispatcher_host.cc 148 bool was_clean = true; local
150 new WebSocketMsg_DropChannel(routing_id, was_clean, code, reason)) ==
  /external/chromium_org/content/child/
websocket_bridge.cc 175 void WebSocketBridge::DidClose(bool was_clean,
179 << was_clean << ", "
188 client->didClose(this, was_clean, code, reason_to_pass);
268 // This method is for closing handshake and hence |was_clean| shall be true.
websocket_bridge.h 57 void DidClose(bool was_clean, unsigned short code, const std::string& reason);
  /external/chromium_org/content/common/
websocket_messages.h 95 // DropChannel(was_clean = false, code = 1006, reason = "").
143 // If |was_clean| is false on a message from the browser, then the WebSocket
144 // connection was not closed cleanly. If |was_clean| is false on a message from
149 bool /* was_clean */,
  /external/chromium_org/content/renderer/pepper/
pepper_websocket_host.cc 148 bool was_clean = local
158 was_clean,
166 was_clean,
  /external/chromium_org/ppapi/proxy/
websocket_resource.cc 383 bool was_clean,
389 close_was_clean_ = PP_FromBool(was_clean);
477 bool was_clean,
480 OnPluginMsgCloseReply(params, buffered_amount, was_clean, code, reason);
websocket_resource.h 66 bool was_clean,
80 bool was_clean,
ppapi_messages.h     [all...]
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_task.cc 353 net::WebSocket* websocket, bool was_clean) {
361 DVLOG(1) << "WebSocket onclose was_clean=" << was_clean
365 if (next_state_ == STATE_WEBSOCKET_CLOSE_COMPLETE && was_clean)
368 // DRAFT75 doesn't report was_clean correctly.
websocket_experiment_task.h 163 virtual void OnClose(net::WebSocket* websocket, bool was_clean);
  /external/chromium_org/ppapi/tests/
test_websocket.cc 63 bool was_clean,
67 was_clean(was_clean),
72 bool was_clean; member in struct:__anon9979::WebSocketEvent
120 bool was_clean, uint16_t code, const pp::Var& reason) {
122 WebSocketEvent(WebSocketEvent::EVENT_CLOSE, was_clean, code, reason));
    [all...]
  /external/chromium/net/websockets/
websocket_unittest.cc 82 virtual void OnClose(net::WebSocket* socket, bool was_clean) {
85 std::string(), was_clean));
websocket.h 52 virtual void OnClose(WebSocket* socket, bool was_clean) = 0;

Completed in 649 milliseconds