Searched refs:ChannelState (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/net/websockets/
H A Dwebsocket_event_interface.h32 enum ChannelState { enum in class:net::WebSocketEventInterface
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 OnStartOpeningHandshak
[all...]
H A Dwebsocket_channel.h162 // Methods which return a value of type ChannelState may delete |this|. If the
165 typedef WebSocketEventInterface::ChannelState ChannelState; typedef in class:net::WebSocketChannel
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 HandleDataFram
[all...]
H A Dwebsocket_channel.cc51 typedef WebSocketEventInterface::ChannelState ChannelState; typedef in namespace:net::__anon9819
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 WebSocketChanne
[all...]
H A Dwebsocket_channel_test.cc137 typedef WebSocketEventInterface::ChannelState ChannelState; typedef in namespace:net::__anon9820
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(boo
[all...]
/external/chromium_org/mojo/services/network/
H A Dweb_socket_impl.cc61 typedef net::WebSocketEventInterface::ChannelState ChannelState; typedef in namespace:mojo::__anon8817
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 OnFinishOpeningHandshak
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Dwebsocket_host.cc31 typedef net::WebSocketEventInterface::ChannelState ChannelState; typedef in namespace:content::__anon7385
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 OnFlowContro
[all...]
/external/chromium_org/sandbox/win/src/
H A Dsharedmem_ipc_client.h55 enum ChannelState { enum in namespace:sandbox
76 // maintains the state from the ChannelState enumeration
H A Dsharedmem_ipc_client.cc34 DCHECK_NE(kFreeChannel, static_cast<ChannelState>(result));
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DMainThreadWebSocketChannel.h198 enum ChannelState { enum in class:blink::FINAL
217 ChannelState m_state;
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel.h82 class ChannelState { class in namespace:webrtc::voe
102 ChannelState() : lock_(CriticalSectionWrapper::CreateCriticalSection()) { function in class:webrtc::voe::ChannelState
104 virtual ~ChannelState() {}
517 ChannelState channel_state_;
H A Dchannel.cc605 ChannelState::State state = channel_state_.Get();
/external/chromium_org/components/invalidation/
H A Dgcm_network_channel_unittest.cc415 TEST_F(GCMNetworkChannelTest, ChannelState) {

Completed in 1399 milliseconds