Searched defs:outgoing (Results 1 - 4 of 4) sorted by relevance

/external/webkit/WebCore/dom/default/
H A DPlatformMessagePortChannel.cpp101 PassRefPtr<PlatformMessagePortChannel> PlatformMessagePortChannel::create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing) argument
103 return adoptRef(new PlatformMessagePortChannel(incoming, outgoing));
106 PlatformMessagePortChannel::PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> outgoing) argument
109 , m_outgoingQueue(outgoing)
120 // Create incoming/outgoing queues.
/external/mtpd/
H A Dpptp.c131 } incoming, outgoing; variable in typeref:struct:packet
136 memset(outgoing.buffer, 0, length);
137 outgoing.length = length;
138 outgoing.header.length = htons(length);
139 outgoing.header.type = CONTROL_MESSAGE;
140 outgoing.header.cookie = MAGIC_COOKIE;
141 outgoing.message = htons(message);
146 send(the_socket, outgoing.buffer, outgoing.length, 0);
225 outgoing
[all...]
H A Dl2tp.c118 } incoming, outgoing; variable in typeref:struct:packet
129 uint16_t *p = (uint16_t *)outgoing.buffer;
140 outgoing.message = message;
141 outgoing.length = MESSAGE_HEADER_SIZE;
147 struct attribute *p = (struct attribute *)&outgoing.buffer[outgoing.length];
152 outgoing.length += ATTRIBUTE_HEADER_SIZE + size;
167 uint16_t *p = (uint16_t *)outgoing.buffer;
168 p[1] = htons(outgoing.length);
169 send(the_socket, outgoing
[all...]
/external/dbus/dbus/
H A Ddbus-auth.c155 DBusString outgoing; /**< Outgoing data buffer */ member in struct:DBusAuth
353 if (!_dbus_string_init (&auth->outgoing))
378 _dbus_string_free (&auth->outgoing);
1220 &auth->outgoing,
1221 _dbus_string_get_length (&auth->outgoing)))
1241 return _dbus_string_append (&auth->outgoing, "DATA\r\n");
1244 old_len = _dbus_string_get_length (&auth->outgoing);
1245 if (!_dbus_string_append (&auth->outgoing, "DATA "))
1248 if (!_dbus_string_hex_encode (data, 0, &auth->outgoing,
1249 _dbus_string_get_length (&auth->outgoing)))
[all...]

Completed in 770 milliseconds