HomeSort by relevance Sort by last modified time
    Searched defs:channel_id (Results 1 - 3 of 3) 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/qemu/android/
hw-qemud.c 873 * NOTE: channel_id valie is used as a selector between serial and pipe clients.
874 * Since channel_id < 0 is an invalid value for a serial client, it would
877 qemud_client_alloc( int channel_id,
891 if (channel_id < 0) {
900 c->ProtocolSelector.Serial.channel = channel_id;
926 int channel_id,
1460 int channel_id = hex2int(msg+11, 2); local
    [all...]

Completed in 87 milliseconds