HomeSort by relevance Sort by last modified time
    Searched refs:ChannelState (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/net/websockets/
websocket_event_interface.h 32 enum ChannelState {
43 virtual ChannelState OnAddChannelResponse(
50 virtual ChannelState OnDataFrame(
58 virtual ChannelState OnFlowControl(int64 quota) WARN_UNUSED_RESULT = 0;
64 virtual ChannelState OnClosingHandshake() WARN_UNUSED_RESULT = 0;
79 // This method returns a ChannelState for consistency, but all implementations
81 virtual ChannelState OnDropChannel(bool was_clean,
91 // This method returns a ChannelState for consistency, but all implementations
93 virtual ChannelState OnFailChannel(const std::string& message)
97 virtual ChannelState OnStartOpeningHandshake
    [all...]
websocket_channel.h 162 // Methods which return a value of type ChannelState may delete |this|. If the
165 typedef WebSocketEventInterface::ChannelState ChannelState;
227 ChannelState WriteFrames() WARN_UNUSED_RESULT;
234 ChannelState OnWriteDone(bool synchronous, int result) WARN_UNUSED_RESULT;
238 ChannelState ReadFrames() WARN_UNUSED_RESULT;
244 ChannelState OnReadDone(bool synchronous, int result) WARN_UNUSED_RESULT;
253 ChannelState HandleFrame(
258 ChannelState HandleFrameByState(
267 ChannelState HandleDataFrame(WebSocketFrameHeader::OpCode opcode
    [all...]
websocket_channel.cc 51 typedef WebSocketEventInterface::ChannelState ChannelState;
52 const ChannelState CHANNEL_ALIVE = WebSocketEventInterface::CHANNEL_ALIVE;
53 const ChannelState CHANNEL_DELETED = WebSocketEventInterface::CHANNEL_DELETED;
89 void AllowUnused(ChannelState ALLOW_UNUSED unused) {}
206 ChannelState SendImmediately(WebSocketEventInterface* event_interface);
247 ChannelState WebSocketChannel::HandshakeNotificationSender::SendImmediately(
628 ChannelState WebSocketChannel::WriteFrames() {
648 ChannelState WebSocketChannel::OnWriteDone(bool synchronous, int result) {
690 ChannelState WebSocketChannel::ReadFrames()
    [all...]
websocket_channel_test.cc 137 typedef WebSocketEventInterface::ChannelState ChannelState;
138 const ChannelState CHANNEL_ALIVE = WebSocketEventInterface::CHANNEL_ALIVE;
139 const ChannelState CHANNEL_DELETED = WebSocketEventInterface::CHANNEL_DELETED;
151 ChannelState(bool,
155 ChannelState(bool,
158 MOCK_METHOD1(OnFlowControl, ChannelState(int64)); // NOLINT
159 MOCK_METHOD0(OnClosingHandshake, ChannelState(void)); // NOLINT
160 MOCK_METHOD1(OnFailChannel, ChannelState(const std::string&)); // NOLINT
162 ChannelState(bool, uint16, const std::string&)); // NOLIN
    [all...]
  /external/chromium_org/mojo/services/network/
web_socket_impl.cc 61 typedef net::WebSocketEventInterface::ChannelState ChannelState;
72 virtual ChannelState OnAddChannelResponse(
76 virtual ChannelState OnDataFrame(bool fin,
79 virtual ChannelState OnClosingHandshake() OVERRIDE;
80 virtual ChannelState OnFlowControl(int64 quota) OVERRIDE;
81 virtual ChannelState OnDropChannel(bool was_clean,
84 virtual ChannelState OnFailChannel(const std::string& message) OVERRIDE;
85 virtual ChannelState OnStartOpeningHandshake(
87 virtual ChannelState OnFinishOpeningHandshake
    [all...]
  /external/chromium_org/content/browser/renderer_host/
websocket_host.cc 31 typedef net::WebSocketEventInterface::ChannelState ChannelState;
64 ChannelState StateCast(WebSocketDispatcherHost::WebSocketHostState host_state) {
74 COMPILE_ASSERT(static_cast<ChannelState>(WEBSOCKET_HOST_ALIVE) ==
77 COMPILE_ASSERT(static_cast<ChannelState>(WEBSOCKET_HOST_DELETED) ==
80 return static_cast<ChannelState>(host_state);
95 virtual ChannelState OnAddChannelResponse(
99 virtual ChannelState OnDataFrame(bool fin,
102 virtual ChannelState OnClosingHandshake() OVERRIDE;
103 virtual ChannelState OnFlowControl(int64 quota) OVERRIDE
    [all...]
  /external/chromium_org/sandbox/win/src/
sharedmem_ipc_client.h 55 enum ChannelState {
76 // maintains the state from the ChannelState enumeration
sharedmem_ipc_client.cc 34 DCHECK_NE(kFreeChannel, static_cast<ChannelState>(result));
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
MainThreadWebSocketChannel.h 198 enum ChannelState {
217 ChannelState m_state;
  /external/chromium_org/third_party/webrtc/voice_engine/
channel.h 82 class ChannelState {
102 ChannelState() : lock_(CriticalSectionWrapper::CreateCriticalSection()) {
104 virtual ~ChannelState() {}
517 ChannelState channel_state_;
channel.cc 605 ChannelState::State state = channel_state_.Get();
    [all...]
  /external/chromium_org/components/invalidation/
gcm_network_channel_unittest.cc 415 TEST_F(GCMNetworkChannelTest, ChannelState) {

Completed in 1107 milliseconds