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

  /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/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...]
  /external/qemu/android/
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...]

Completed in 153 milliseconds