Searched refs:ChannelState (Results 1 – 11 of 11) sorted by relevance
/external/chromium_org/net/websockets/ |
D | websocket_event_interface.h | 32 enum ChannelState { enum 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; 81 virtual ChannelState OnDropChannel(bool was_clean, 93 virtual ChannelState OnFailChannel(const std::string& message) 97 virtual ChannelState OnStartOpeningHandshake( 101 virtual ChannelState OnFinishOpeningHandshake( 125 virtual ChannelState OnSSLCertificateError(
|
D | websocket_channel.h | 165 typedef WebSocketEventInterface::ChannelState ChannelState; typedef 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, 277 ChannelState SendFrameFromIOBuffer(bool fin, 291 ChannelState FailChannel(const std::string& message, [all …]
|
D | websocket_channel.cc | 51 typedef WebSocketEventInterface::ChannelState ChannelState; typedef 52 const ChannelState CHANNEL_ALIVE = WebSocketEventInterface::CHANNEL_ALIVE; 53 const ChannelState CHANNEL_DELETED = WebSocketEventInterface::CHANNEL_DELETED; 89 void AllowUnused(ChannelState ALLOW_UNUSED unused) {} in AllowUnused() 206 ChannelState SendImmediately(WebSocketEventInterface* event_interface); 247 ChannelState WebSocketChannel::HandshakeNotificationSender::SendImmediately( in SendImmediately() 626 ChannelState WebSocketChannel::WriteFrames() { in WriteFrames() 646 ChannelState WebSocketChannel::OnWriteDone(bool synchronous, int result) { in OnWriteDone() 688 ChannelState WebSocketChannel::ReadFrames() { in ReadFrames() 708 ChannelState WebSocketChannel::OnReadDone(bool synchronous, int result) { in OnReadDone() [all …]
|
D | websocket_channel_test.cc | 137 typedef WebSocketEventInterface::ChannelState ChannelState; typedef 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&)); // NOLINT 165 ChannelState OnStartOpeningHandshake( in OnStartOpeningHandshake() [all …]
|
/external/chromium_org/content/browser/renderer_host/ |
D | websocket_host.cc | 30 typedef net::WebSocketEventInterface::ChannelState ChannelState; typedef 63 ChannelState StateCast(WebSocketDispatcherHost::WebSocketHostState host_state) { in StateCast() 73 COMPILE_ASSERT(static_cast<ChannelState>(WEBSOCKET_HOST_ALIVE) == in StateCast() 76 COMPILE_ASSERT(static_cast<ChannelState>(WEBSOCKET_HOST_DELETED) == in StateCast() 79 return static_cast<ChannelState>(host_state); in StateCast() 94 virtual ChannelState OnAddChannelResponse( 98 virtual ChannelState OnDataFrame(bool fin, 101 virtual ChannelState OnClosingHandshake() OVERRIDE; 102 virtual ChannelState OnFlowControl(int64 quota) OVERRIDE; 103 virtual ChannelState OnDropChannel(bool was_clean, [all …]
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
D | MainThreadWebSocketChannel.h | 196 enum ChannelState { enum 215 ChannelState m_state;
|
/external/chromium_org/sandbox/win/src/ |
D | sharedmem_ipc_client.h | 55 enum ChannelState { enum
|
D | sharedmem_ipc_client.cc | 34 DCHECK_NE(kFreeChannel, static_cast<ChannelState>(result)); in FreeBuffer()
|
/external/chromium_org/third_party/webrtc/voice_engine/ |
D | channel.h | 80 class ChannelState { 100 ChannelState() : lock_(CriticalSectionWrapper::CreateCriticalSection()) { in ChannelState() function 102 virtual ~ChannelState() {} in ~ChannelState() 516 ChannelState channel_state_;
|
D | channel.cc | 606 ChannelState::State state = channel_state_.Get(); in GetAudioFrame()
|
/external/chromium_org/components/invalidation/ |
D | gcm_network_channel_unittest.cc | 415 TEST_F(GCMNetworkChannelTest, ChannelState) { in TEST_F() argument
|