HomeSort by relevance Sort by last modified time
    Searched refs:channel_id (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
audiotrackrenderer.cc 39 void AudioTrackRenderer::AddChannel(int channel_id) {
40 ASSERT(channel_id_ == -1 || channel_id_ == channel_id);
41 channel_id_ = channel_id;
44 void AudioTrackRenderer::RemoveChannel(int channel_id) {
45 ASSERT(channel_id_ == -1 || channel_id_ == channel_id);
audiotrackrenderer.h 50 virtual void AddChannel(int channel_id) OVERRIDE;
51 virtual void RemoveChannel(int channel_id) OVERRIDE;
  /external/chromium_org/content/renderer/
in_process_renderer_thread.cc 13 InProcessRendererThread::InProcessRendererThread(const std::string& channel_id)
14 : Thread("Chrome_InProcRendererThread"), channel_id_(channel_id) {
41 base::Thread* CreateInProcessRendererThread(const std::string& channel_id) {
42 return new InProcessRendererThread(channel_id);
in_process_renderer_thread.h 20 explicit InProcessRendererThread(const std::string& channel_id);
35 const std::string& channel_id);
  /external/chromium_org/third_party/webrtc/video_engine/
vie_channel_manager.h 52 // Creates a new channel. 'channel_id' will be the id of the created channel.
53 int CreateChannel(int* channel_id,
59 int CreateChannel(int* channel_id, int original_channel, bool sender);
62 int DeleteChannel(int channel_id);
68 int ConnectVoiceChannel(int channel_id, int audio_channel_id);
71 int DisconnectVoiceChannel(int channel_id);
76 bool SetRembStatus(int channel_id, bool sender, bool receiver);
78 bool SetReservedTransmitBitrate(int channel_id,
83 void UpdateSsrcs(int channel_id, const std::list<unsigned int>& ssrcs);
86 bool SetBandwidthEstimationConfig(int channel_id,
    [all...]
vie_channel_manager.cc 77 int ViEChannelManager::CreateChannel(int* channel_id,
126 *channel_id = new_channel_id;
127 group->AddChannel(*channel_id);
135 int ViEChannelManager::CreateChannel(int* channel_id,
200 *channel_id = new_channel_id;
201 channel_group->AddChannel(*channel_id);
208 int ViEChannelManager::DeleteChannel(int channel_id) {
219 ChannelMap::iterator c_it = channel_map_.find(channel_id);
227 ReturnChannelId(channel_id);
230 EncoderMap::iterator e_it = vie_encoder_map_.find(channel_id);
    [all...]
vie_channel_group.h 38 void AddChannel(int channel_id);
39 void RemoveChannel(int channel_id, unsigned int ssrc);
40 bool HasChannel(int channel_id);
43 bool SetChannelRembStatus(int channel_id, bool sender, bool receiver,
  /external/chromium_org/content/gpu/
in_process_gpu_thread.cc 12 InProcessGpuThread::InProcessGpuThread(const std::string& channel_id)
14 channel_id_(channel_id),
34 base::Thread* CreateInProcessGpuThread(const std::string& channel_id) {
35 return new InProcessGpuThread(channel_id);
in_process_gpu_thread.h 19 explicit InProcessGpuThread(const std::string& channel_id);
35 const std::string& channel_id);
  /external/chromium_org/chrome/browser/net/
quota_policy_channel_id_store.cc 55 const net::DefaultChannelIDStore::ChannelID& channel_id) {
56 server_identifiers_.insert(channel_id.server_identifier());
57 persistent_store_->AddChannelID(channel_id);
61 const net::DefaultChannelIDStore::ChannelID& channel_id) {
62 server_identifiers_.erase(channel_id.server_identifier());
63 persistent_store_->DeleteChannelID(channel_id);
73 for (ChannelIDVector::const_iterator channel_id = channel_ids->begin();
74 channel_id != channel_ids->end();
75 ++channel_id) {
76 server_identifiers_.insert((*channel_id)->server_identifier())
    [all...]
  /external/chromium_org/chrome/browser/media/
cast_transport_host_filter.h 31 int32 channel_id,
34 int32 channel_id,
37 void SendRtt(int32 channel_id, uint32 ssrc, base::TimeDelta rtt);
38 void SendCastMessage(int32 channel_id,
47 int32 channel_id,
50 int32 channel_id,
53 int32 channel_id,
57 int32 channel_id,
61 void OnCancelSendingFrames(int32 channel_id, uint32 ssrc,
63 void OnResendFrameForKickstart(int32 channel_id, uint32 ssrc
    [all...]
cast_transport_host_filter.cc 47 int32 channel_id,
49 Send(new CastMsg_NotifyStatusChange(channel_id, status));
53 int32 channel_id,
57 Send(new CastMsg_RawEvents(channel_id,
62 void CastTransportHostFilter::SendRtt(int32 channel_id,
65 Send(new CastMsg_Rtt(channel_id, ssrc, rtt));
69 int32 channel_id,
72 Send(new CastMsg_RtcpCastMessage(channel_id, ssrc, cast_message));
76 int32 channel_id,
87 if (id_map_.Lookup(channel_id)) {
    [all...]
  /external/chromium_org/extensions/browser/api/cast_channel/
logger.h 47 void LogSocketEvent(int channel_id, proto::EventType event_type);
48 void LogSocketEventWithDetails(int channel_id,
53 void LogSocketEventWithRv(int channel_id,
58 void LogSocketReadyState(int channel_id, proto::ReadyState new_state);
59 void LogSocketConnectState(int channel_id, proto::ConnectionState new_state);
60 void LogSocketReadState(int channel_id, proto::ReadState new_state);
61 void LogSocketWriteState(int channel_id, proto::WriteState new_state);
62 void LogSocketErrorState(int channel_id, proto::ErrorState new_state);
65 void LogSocketChallengeReplyEvent(int channel_id,
68 void LogSocketEventForMessage(int channel_id,
    [all...]
logger.cc 125 int channel_id = cast_socket.id(); local
128 LogSocketEvent(channel_id, event);
138 void Logger::LogSocketEvent(int channel_id, EventType event_type) {
141 LogSocketEventWithDetails(channel_id, event_type, std::string());
144 void Logger::LogSocketEventWithDetails(int channel_id,
153 LogSocketEvent(channel_id, event);
156 void Logger::LogSocketEventWithRv(int channel_id,
165 LogSocketEvent(channel_id, event);
179 void Logger::LogSocketReadyState(int channel_id, proto::ReadyState new_state) {
185 LogSocketEvent(channel_id, event)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
audiorenderer.h 62 virtual void AddChannel(int channel_id) {}
68 virtual void RemoveChannel(int channel_id) {}
  /external/chromium_org/content/utility/
in_process_utility_thread.cc 16 InProcessUtilityThread::InProcessUtilityThread(const std::string& channel_id)
17 : Thread("Chrome_InProcUtilityThread"), channel_id_(channel_id) {
47 base::Thread* CreateInProcessUtilityThread(const std::string& channel_id) {
48 return new InProcessUtilityThread(channel_id);
in_process_utility_thread.h 19 InProcessUtilityThread(const std::string& channel_id);
36 const std::string& channel_id);
  /external/chromium_org/content/child/
websocket_dispatcher.h 32 void RemoveBridge(int channel_id);
38 WebSocketBridge* GetBridge(int channel_id, uint32 type);
websocket_dispatcher.cc 28 void WebSocketDispatcher::RemoveBridge(int channel_id) {
29 std::map<int, WebSocketBridge*>::iterator iter = bridges_.find(channel_id);
31 DVLOG(1) << "Remove a non-existent bridge(" << channel_id << ")";
58 WebSocketBridge* WebSocketDispatcher::GetBridge(int channel_id, uint32 type) {
59 std::map<int, WebSocketBridge*>::iterator iter = bridges_.find(channel_id);
61 DVLOG(1) << "No bridge for channel_id=" << channel_id
  /external/chromium_org/chrome/renderer/media/
cast_ipc_dispatcher.h 28 void RemoveSender(int32 channel_id);
41 int32 channel_id,
44 int32 channel_id,
49 void OnRawEvents(int32 channel_id,
52 void OnRtt(int32 channel_id, uint32 ssrc, base::TimeDelta rtt);
53 void OnRtcpCastMessage(int32 channel_id,
cast_ipc_dispatcher.cc 43 void CastIPCDispatcher::RemoveSender(int32 channel_id) {
44 return id_map_.Remove(channel_id);
80 int32 channel_id,
82 CastTransportSenderIPC* sender = id_map_.Lookup(channel_id);
92 int32 channel_id,
95 CastTransportSenderIPC* sender = id_map_.Lookup(channel_id);
103 void CastIPCDispatcher::OnRtt(int32 channel_id,
106 CastTransportSenderIPC* sender = id_map_.Lookup(channel_id);
115 int32 channel_id,
118 CastTransportSenderIPC* sender = id_map_.Lookup(channel_id);
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
mux_client_for_testing.py 99 channel_id = ord(data[offset])
101 if channel_id & 0xe0 == 0xe0:
104 channel_id = struct.unpack('!L',
107 elif channel_id & 0xc0 == 0xc0:
110 channel_id = (((channel_id & 0x1f) << 16) +
113 elif channel_id & 0x80 == 0x80:
116 channel_id = struct.unpack('!H', data[offset:offset+2])[0] & 0x3fff
119 return channel_id, channel_id_length
167 channel_id, advance = _parse_channel_id(data, pos
    [all...]
test_mux.py 110 channel_id = parser.read_channel_id()
111 if channel_id == mux._CONTROL_CHANNEL_ID:
115 if not channel_id in self._channel_data:
116 self._channel_data[channel_id] = _OutgoingChannelData()
117 channel_data = self._channel_data[channel_id]
148 def get_written_messages(self, channel_id):
149 return self._channel_data[channel_id].messages
151 def get_written_control_messages(self, channel_id):
152 return self._channel_data[channel_id].control_messages
189 self.channel_events[request.channel_id] = _ChannelEvent(
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
mux.py 109 def _encode_channel_id(channel_id):
110 if channel_id < 0:
111 raise ValueError('Channel id %d must not be negative' % channel_id)
113 if channel_id < 2 ** 7:
114 return chr(channel_id)
115 if channel_id < 2 ** 14:
116 return struct.pack('!H', 0x8000 + channel_id)
117 if channel_id < 2 ** 21:
118 first = chr(0xc0 + (channel_id >> 16))
119 return first + struct.pack('!H', channel_id & 0xffff
    [all...]
  /external/chromium_org/net/extras/sqlite/
sqlite_channel_id_store.h 41 const DefaultChannelIDStore::ChannelID& channel_id) OVERRIDE;
43 const DefaultChannelIDStore::ChannelID& channel_id) OVERRIDE;

Completed in 359 milliseconds

1 2 3 4 5 6