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

1 2

  /external/chromium_org/chrome/test/webdriver/
webdriver_automation.h 62 std::string channel_id; member in struct:webdriver::Automation::BrowserOptions
  /external/chromium_org/content/renderer/
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/chrome/browser/nacl_host/
nacl_broker_host_win.cc 50 std::string channel_id = process_->GetHost()->CreateChannel(); local
51 if (channel_id.empty())
64 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
nacl_process_host.cc 410 std::string channel_id = process_->GetHost()->CreateChannel(); local
411 if (channel_id.empty()) {
458 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
469 weak_factory_.GetWeakPtr(), channel_id)) {
    [all...]
  /external/chromium_org/chrome/service/
service_utility_process_host.cc 133 std::string channel_id = child_process_host_->CreateChannel(); local
134 if (channel_id.empty())
145 cmd_line.AppendSwitchASCII(switches::kProcessChannelID, channel_id);
  /external/chromium_org/chrome/test/security_tests/
ipc_security_tests.cc 75 std::wstring* channel_id) {
81 *channel_id = pipe_name.substr(pos + 1);
176 std::wstring channel_id; local
177 if (!InfoFromPipeName(pipe_name, &parent_id, &channel_id)) {
  /external/chromium_org/chrome/browser/service/
service_process_control.cc 49 const IPC::ChannelHandle channel_id = GetServiceProcessChannel(); local
51 channel_id,
  /external/chromium_org/content/browser/
utility_process_host_impl.cc 64 UtilityMainThread(const std::string& channel_id)
66 channel_id_(channel_id) {
194 std::string channel_id = process_->GetHost()->CreateChannel(); local
195 if (channel_id.empty())
203 in_process_thread_.reset(new UtilityMainThread(channel_id));
233 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
plugin_process_host.cc 152 std::string channel_id = process_->GetHost()->CreateChannel(); local
153 if (channel_id.empty())
220 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
ppapi_plugin_process_host.cc 258 std::string channel_id = process_->GetHost()->CreateChannel(); local
259 if (channel_id.empty())
280 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
  /external/chromium_org/content/public/test/
render_view_fake_resources_test.cc 68 std::string channel_id = IPC::Channel::GenerateVerifiedChannelID( local
70 channel_.reset(new IPC::Channel(channel_id,
81 render_thread_ = new RenderThreadImpl(channel_id);
  /external/chromium_org/ipc/
ipc_channel_proxy.h 202 const std::string& channel_id() const { return channel_id_; } function in class:IPC::ChannelProxy::Context
  /external/chromium/chrome/browser/extensions/
extension_message_service.cc 27 #define GET_CHANNEL_OPENER_ID(channel_id) ((channel_id) * 2)
28 #define GET_CHANNEL_RECEIVERS_ID(channel_id) ((channel_id) * 2 + 1)
100 int channel_id = g_next_channel_id.GetNext(); local
101 int port1_id = channel_id * 2;
102 int port2_id = channel_id * 2 + 1;
109 DCHECK(GET_CHANNEL_ID(port1_id) == channel_id);
110 DCHECK(GET_CHANNEL_OPENER_ID(channel_id) == port1_id);
111 DCHECK(GET_CHANNEL_RECEIVERS_ID(channel_id) == port2_id)
    [all...]
  /external/chromium/chrome/browser/service/
service_process_control.cc 50 const IPC::ChannelHandle channel_id = GetServiceProcessChannel(); local
52 new IPC::SyncChannel(channel_id, IPC::Channel::MODE_NAMED_CLIENT, this,
  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
push_messaging_api.cc 215 std::string channel_id; local
217 channel_id = gaia_id;
218 channel_id += kChannelIdSeparator;
219 channel_id += extension_id();
228 result.channel_id = channel_id;
  /external/chromium_org/chrome/test/automation/
proxy_launcher.cc 542 NamedProxyLauncher::NamedProxyLauncher(const std::string& channel_id,
545 : channel_id_(channel_id),
608 std::string channel_id; local
609 channel_id.append(automation::kNamedInterfacePrefix).append(channel_id_);
610 return channel_id;
  /external/chromium_org/content/zygote/
zygote_linux.cc 374 std::string channel_id; local
389 channel_id = arg;
408 base::ProcessId child_pid = ForkWithRealPid(process_type, fds, channel_id,
  /external/chromium_org/net/quic/crypto/
crypto_handshake.h 185 // channel_id is set by servers to a ChannelID key when the client correctly
189 std::string channel_id; member in struct:net::QuicCryptoNegotiatedParameters
  /external/chromium_org/chrome/browser/extensions/api/messaging/
message_service.cc 49 #define GET_CHANNEL_OPENER_ID(channel_id) ((channel_id) * 2)
50 #define GET_CHANNEL_RECEIVERS_ID(channel_id) ((channel_id) * 2 + 1)
135 unsigned channel_id = local
138 if (channel_id == 0) {
144 unsigned port1_id = channel_id * 2;
145 unsigned port2_id = channel_id * 2 + 1;
152 DCHECK(GET_CHANNEL_ID(port1_id) == channel_id);
153 DCHECK(GET_CHANNEL_OPENER_ID(channel_id) == port1_id)
440 int channel_id = GET_CHANNEL_ID(receiver_port_id); local
449 int channel_id = GET_CHANNEL_ID(port_id); local
489 int channel_id = GET_CHANNEL_ID(source_port_id); local
    [all...]
  /external/chromium_org/content/browser/worker_host/
worker_process_host.cc 150 std::string channel_id = process_->GetHost()->CreateChannel(); local
151 if (channel_id.empty())
166 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id);
  /external/chromium_org/content/renderer/media/
webrtc_audio_device_unittest.cc 177 int channel_id() const { function in class:content::__anon10426::WebRTCMediaProcessImpl
551 EXPECT_EQ(ch, media_process->channel_id());
656 EXPECT_EQ(ch, media_process->channel_id());
    [all...]
  /external/chromium_org/chrome_frame/test/net/
fake_external_tab.cc 815 std::string channel_id = command_line.GetSwitchValueASCII( local
817 EXPECT_FALSE(channel_id.empty());
825 TestAutomationProvider::NewAutomationProvider(profile, channel_id, this));
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnport.cc 124 TurnChannelBindRequest(TurnPort* port, TurnEntry* entry, int channel_id,
145 TurnEntry(TurnPort* port, int channel_id,
150 int channel_id() const { return channel_id_; } function in class:cricket::TurnEntry
487 void TurnPort::HandleChannelData(int channel_id, const char* data,
512 TurnEntry* entry = FindEntry(channel_id);
515 << "channel, channel_id=" << channel_id;
611 return e->channel_id() == id;
613 TurnEntry* TurnPort::FindEntry(int channel_id) const {
615 std::bind2nd(std::ptr_fun(MatchesChannelId), channel_id));
    [all...]
  /external/chromium_org/third_party/tlslite/tlslite/
constants.py 35 channel_id = 30031 variable in class:ExtensionType
  /external/openssh/
serverloop.c 250 int channel_id; local
262 if ((channel_id = channel_find_open()) == -1) {
267 channel_request_start(channel_id, "keepalive@openssh.com", 1);
    [all...]

Completed in 1256 milliseconds

1 2