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

  /external/chromium/chrome/browser/nacl_host/
nacl_broker_service_win.h 31 void OnLoaderLaunched(const std::wstring& channel_id,
nacl_broker_service_win.cc 42 void NaClBrokerService::OnLoaderLaunched(const std::wstring& channel_id,
45 PendingLaunchesMap::iterator it = pending_launches_.find(channel_id);
nacl_broker_host_win.cc 42 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id());
nacl_process_host.cc 148 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id());
156 this, ASCIIToWide(channel_id()));
  /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/qemu/android/
hw-qemud.h 93 int channel_id,
hw-qemud.c 891 * NOTE: channel_id valie is used as a selector between serial and pipe clients.
892 * Since channel_id < 0 is an invalid value for a serial client, it would
895 qemud_client_alloc( int channel_id,
909 if (channel_id < 0) {
918 c->ProtocolSelector.Serial.channel = channel_id;
944 int channel_id,
1469 int channel_id = hex2int(msg+11, 2); local
    [all...]
  /external/chromium/chrome/browser/importer/
profile_import_process_host.cc 94 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id());
  /external/chromium/chrome/browser/ui/
browser_init.h 56 static bool CreateAutomationProvider(const std::string& channel_id,
browser_init.cc     [all...]
  /external/chromium/chrome/browser/
utility_process_host.cc 140 cmd_line->AppendSwitchASCII(switches::kProcessChannelID, channel_id());
  /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/chrome/browser/automation/
automation_provider.cc 141 bool AutomationProvider::InitializeChannel(const std::string& channel_id) {
144 channel_id_ = channel_id;
145 std::string effective_channel_id = channel_id;
147 // If the channel_id starts with kNamedInterfacePrefix, create a named IPC
150 channel_id.find(automation::kNamedInterfacePrefix) == 0;
152 effective_channel_id = channel_id.substr(
    [all...]
automation_provider.h 92 // If channel_id starts with kNamedInterfacePrefix, it will act
93 // as a server, create a named IPC socket with channel_id as its
95 // If channel_id does not, it will act as a client and establish
98 bool InitializeChannel(const std::string& channel_id) WARN_UNUSED_RESULT;
  /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 291 milliseconds