/external/chromium_org/content/gpu/ |
in_process_gpu_thread.cc | 12 InProcessGpuThread::InProcessGpuThread(const std::string& channel_id) 14 channel_id_(channel_id), 33 base::Thread* CreateInProcessGpuThread(const std::string& channel_id) { 34 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/content/child/ |
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 << ")"; 57 WebSocketBridge* WebSocketDispatcher::GetBridge(int channel_id, uint32 type) { 58 std::map<int, WebSocketBridge*>::iterator iter = bridges_.find(channel_id); 60 DVLOG(1) << "No bridge for channel_id=" << channel_id
|
websocket_dispatcher.h | 32 void RemoveBridge(int channel_id); 38 WebSocketBridge* GetBridge(int channel_id, uint32 type);
|
/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_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);
|
render_thread_impl_browsertest.cc | 43 std::string channel_id = IPC::Channel::GenerateVerifiedChannelID( local 46 IPC::Channel channel(channel_id, IPC::Channel::MODE_SERVER, &dummy_listener); 51 RenderThreadImpl* thread = new RenderThreadImpl(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/net/quic/crypto/ |
channel_id.cc | 5 #include "net/quic/crypto/channel_id.h"
|
/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/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);
|
/external/chromium_org/chrome/browser/extensions/api/cast_channel/ |
cast_channel_api.h | 80 // Returns the socket corresponding to |channel_id| if one exists. Otherwise, 83 cast_channel::CastSocket* GetSocketOrCompleteWithError(int channel_id); 85 // Adds |socket| to |manager_| and returns the new channel_id. |manager_| 89 // Removes the CastSocket corresponding to |channel_id| from the resource 91 void RemoveSocket(int channel_id); 94 // CastSocket corresponding to |channel_id|. 95 void SetResultFromSocket(int channel_id); 100 // Returns the socket corresponding to |channel_id| if one exists, or null 102 cast_channel::CastSocket* GetSocket(int channel_id);
|
cast_channel_api.cc | 123 int channel_id) { 124 CastSocket* socket = GetSocket(channel_id); 141 void CastChannelAsyncApiFunction::RemoveSocket(int channel_id) { 144 manager_->Remove(extension_->id(), channel_id); 147 void CastChannelAsyncApiFunction::SetResultFromSocket(int channel_id) { 148 CastSocket* socket = GetSocket(channel_id); 158 channel_info.channel_id = -1; 166 CastSocket* CastChannelAsyncApiFunction::GetSocket(int channel_id) { 169 return manager_->Get(extension_->id(), channel_id); 221 params_->channel.channel_id); 260 int channel_id = params_->channel.channel_id; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvideoengine.cc | 498 explicit WebRtcVideoChannelRecvInfo(int channel_id) 499 : channel_id_(channel_id), 501 decoder_observer_(channel_id) { 503 int channel_id() { return channel_id_; } function in class:cricket::WebRtcVideoChannelRecvInfo 574 WebRtcVideoChannelSendInfo(int channel_id, int capture_id, 577 : channel_id_(channel_id), 582 encoder_observer_(channel_id), 596 int channel_id() const { return channel_id_; } function in class:cricket::WebRtcVideoChannelSendInfo 1625 int channel_id = it->second->channel_id(); local 1641 int channel_id = iter->second->channel_id(); local 1778 int channel_id = -1; local 1818 int channel_id = info->channel_id(); local 1852 int channel_id = send_channel->channel_id(); local 1919 int channel_id = -1; local 1982 int channel_id = info->channel_id(); local 2010 << channel_id; local 2036 const int channel_id = send_channel->channel_id(); local 2060 const int channel_id = send_channel->channel_id(); local 2075 const int channel_id = send_channel->channel_id(); local 2180 int channel_id = send_channel->channel_id(); local 2259 const int channel_id = send_channel->channel_id(); local 2546 int channel_id = send_channel->channel_id(); local 2583 int channel_id = channel_it->second->channel_id(); local 2610 int channel_id = channel_it->second->channel_id(); local 3289 LOG(LS_INFO) << "NACK " << enabled << " for channel " << channel_id; local 3335 const int channel_id = send_channel->channel_id(); local 3479 int channel_id = info->channel_id(); local 3556 const int channel_id = send_channel->channel_id(); local 3709 int channel_id = send_channel->channel_id(); local [all...] |
webrtcvideoengine.h | 316 // Creates and initializes a ViE channel. When successful |channel_id| will 325 int* channel_id); 326 bool ConfigureChannel(int channel_id, MediaDirection direction, 328 bool ConfigureReceiving(int channel_id, uint32 remote_ssrc_key); 329 bool ConfigureSending(int channel_id, uint32 local_ssrc_key); 330 bool SetNackFec(int channel_id, int red_payload_type, int fec_payload_type, 338 // Prepares the channel with channel id |info->channel_id()| to receive all 351 void MaybeChangeStartBitrate(int channel_id, webrtc::VideoCodec* video_codec); 353 // |channel_id|. Note that these two function do not change |sending_|. 357 // |channel_id|. Note that these two function do not change |sending_| [all...] |
/external/chromium_org/third_party/tlslite/patches/ |
channel_id.patch | 35 + serverHello.channel_id = clientHello.channel_id 36 + doingChannelID = clientHello.channel_id 61 + serverHello.channel_id = clientHello.channel_id 62 + doingChannelID = clientHello.channel_id 111 + self.channel_id = encrypted_extensions.channel_id_key 134 + channel_id = 30031 147 + self.channel_id = False 155 + elif extType == ExtensionType.channel_id [all...] |
signed_certificate_timestamps.patch | 78 serverHello.channel_id = clientHello.channel_id 81 doingChannelID = clientHello.channel_id 93 channel_id = 30031 103 self.channel_id = False 110 elif extType == ExtensionType.channel_id: 111 self.channel_id = True 122 self.channel_id = False 128 if self.channel_id: 138 w.add(ExtensionType.channel_id, 2 [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
mux.py | 133 def __init__(self, channel_id, drop_code, message=''): 135 'channel_id=%d, code=%d, message=%r' % ( 136 channel_id, drop_code, message)) 137 self.channel_id = channel_id 142 def _encode_channel_id(channel_id): 143 if channel_id < 0: 144 raise ValueError('Channel id %d must not be negative' % channel_id) 146 if channel_id < 2 ** 7: 147 return chr(channel_id) [all...] |
/external/chromium_org/chrome/test/pyautolib/ |
chrome_driver_factory.py | 49 channel_id = 'testing' + hex(random.getrandbits(20 * 4))[2:-1] 51 channel_id = os.path.join(tempfile.gettempdir(), channel_id) 52 pyauto.CreateNewAutomationProvider(channel_id) 54 {'chrome.channel': channel_id,
|
/external/chromium/chrome/browser/nacl_host/ |
nacl_broker_service_win.cc | 42 void NaClBrokerService::OnLoaderLaunched(const std::wstring& channel_id, 45 PendingLaunchesMap::iterator it = pending_launches_.find(channel_id);
|
/external/chromium_org/chrome/browser/extensions/api/messaging/ |
message_service.cc | 50 #define GET_CHANNEL_OPENER_ID(channel_id) ((channel_id) * 2) 51 #define GET_CHANNEL_RECEIVERS_ID(channel_id) ((channel_id) * 2 + 1) 138 unsigned channel_id = local 141 if (channel_id == 0) { 147 unsigned port1_id = channel_id * 2; 148 unsigned port2_id = channel_id * 2 + 1; 155 DCHECK(GET_CHANNEL_ID(port1_id) == channel_id); 156 DCHECK(GET_CHANNEL_OPENER_ID(channel_id) == port1_id) 483 int channel_id = GET_CHANNEL_ID(receiver_port_id); local 492 int channel_id = GET_CHANNEL_ID(port_id); local 533 int channel_id = GET_CHANNEL_ID(source_port_id); local 665 int channel_id = GET_CHANNEL_ID(params->receiver_port_id); local [all...] |
/hardware/libhardware/include/hardware/ |
bt_hl.h | 81 typedef void (* bthl_channel_state_callback)(int app_id, bt_bdaddr_t *bd_addr, int mdep_cfg_index, int channel_id, bthl_channel_state_t state, int fd); 110 bt_status_t (*connect_channel)(int app_id, bt_bdaddr_t *bd_addr, int mdep_cfg_index, int *channel_id); 113 bt_status_t (*destroy_channel)(int channel_id);
|