Searched refs:incoming (Results 1 - 25 of 72) sorted by relevance

123

/external/mtpd/
H A Dpptp.c132 } incoming, outgoing; variable in typeref:struct:packet
154 /* We are going to read a new message if incoming.expect is 0. */
155 if (!incoming.expect) {
156 incoming.length = 0;
157 incoming.expect = HEADER_SIZE;
163 length = incoming.expect - incoming.length;
164 if (incoming.length >= MAX_PACKET_LENGTH) {
168 if (incoming.expect > MAX_PACKET_LENGTH) {
169 length = MAX_PACKET_LENGTH - incoming
[all...]
H A Dl2tp.c119 } incoming, outgoing; variable in typeref:struct:packet
185 uint16_t *p = (uint16_t *)incoming.buffer;
187 incoming.length = recv(the_socket, incoming.buffer, MAX_PACKET_LENGTH, 0);
188 if (incoming.length == -1) {
197 if ((incoming.length != ACK_SIZE && incoming.length < MESSAGE_HEADER_SIZE)
199 ntohs(p[1]) != incoming.length || p[2] != local_tunnel) {
203 if (incoming.length == ACK_SIZE) {
204 incoming
[all...]
/external/smack/src/org/apache/harmony/javax/security/sasl/
H A DSaslClient.java34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException; argument
H A DSaslServer.java34 byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException; argument
/external/chromium_org/chrome/browser/media/
H A Dwebrtc_rtp_dump_writer.h35 // compressed dump files for incoming and outgoing packets respectively.
51 bool incoming);
88 // Flushes the in-memory buffer to disk. If |incoming| is true, the incoming
92 void FlushBuffer(bool incoming,
104 // dump if needed based on |context| and |incoming|, or calls the callback in
106 void OnDumpEnded(EndDumpContext context, bool incoming, bool success);
108 // The max limit on the total size of incoming and outgoing dumps on disk.
121 // The total on-disk size of the compressed incoming and outgoing dumps.
H A Dwebrtc_rtp_dump_writer.cc281 bool incoming) {
287 incoming ? &incoming_buffer_ : &outgoing_buffer_;
307 FlushBuffer(incoming, false, FlushDoneCallback());
322 bool incoming = (type == RTP_DUMP_BOTH || type == RTP_DUMP_INCOMING); local
325 // End the incoming dump first if required. OnDumpEnded will continue to end
327 FlushBuffer(incoming,
332 incoming));
352 void WebRtcRtpDumpWriter::FlushBuffer(bool incoming, argument
359 if (incoming) {
371 FileThreadWorker* worker = incoming
278 WriteRtpPacket(const uint8* packet_header, size_t header_length, size_t packet_length, bool incoming) argument
426 OnDumpEnded(EndDumpContext context, bool incoming, bool success) argument
[all...]
H A Dwebrtc_logging_handler_host.h98 bool incoming);
173 bool incoming);
H A Dwebrtc_rtp_dump_handler.h42 // 'send' for outgoing dump or 'recv' for incoming dump. $TIMESTAMP is the
65 // It should only be called when both incoming and outgoing dumping has been
78 bool incoming);
112 // The absolute path to the directory containing the incoming/outgoing dumps.
119 // The states of the incoming and outgoing dump.
/external/chromium_org/sync/sessions/
H A Ddata_type_tracker.cc33 scoped_ptr<InvalidationInterface> incoming) {
34 DCHECK(incoming);
36 // Merge the incoming invalidation into our list of pending invalidations.
57 InvalidationInterface::LessThanByVersion(**it, *incoming)) {
62 !InvalidationInterface::LessThanByVersion(*incoming, **it) &&
63 !InvalidationInterface::LessThanByVersion(**it, *incoming)) {
70 pending_invalidations_.insert(it, incoming.release());
77 // The incoming has a version not in the pending_invalidations_ list.
79 pending_invalidations_.insert(it, incoming.release());
82 // The incoming invalidatio
32 RecordRemoteInvalidation( scoped_ptr<InvalidationInterface> incoming) argument
[all...]
H A Ddata_type_tracker.h41 void RecordRemoteInvalidation(scoped_ptr<InvalidationInterface> incoming);
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_dispatcher_host.h51 bool incoming,
56 void StopRtpDumpOnUIThread(bool incoming, bool outgoing);
98 void StopRtpDumpOnIOThread(bool incoming, bool outgoing);
H A Dsocket_host_tcp_server_unittest.cc121 // Accept incoming connection.
123 FakeSocket* incoming = new FakeSocket(NULL); local
124 incoming->SetLocalAddress(ParseAddress(kTestLocalIpAddress, kTestPort1));
126 incoming->SetPeerAddress(addr);
130 socket_->AddIncoming(incoming);
137 EXPECT_EQ(incoming, GetSocketFormTcpSocketHost(
H A Dsocket_dispatcher_host.cc152 bool incoming,
157 if ((!dump_incoming_rtp_packet_ && incoming) ||
159 if (incoming)
167 it->second->StartRtpDump(incoming, outgoing, packet_callback);
171 void P2PSocketDispatcherHost::StopRtpDumpOnUIThread(bool incoming, argument
179 incoming,
337 void P2PSocketDispatcherHost::StopRtpDumpOnIOThread(bool incoming, argument
339 if ((dump_incoming_rtp_packet_ && incoming) ||
341 if (incoming)
351 it->second->StopRtpDump(incoming, outgoin
151 StartRtpDump( bool incoming, bool outgoing, const RenderProcessHost::WebRtcRtpPacketCallback& packet_callback) argument
[all...]
H A Dsocket_host.cc579 bool incoming,
584 DCHECK(incoming || outgoing);
586 if (incoming) {
597 void P2PSocketHost::StopRtpDump(bool incoming, bool outgoing) { argument
599 DCHECK(incoming || outgoing);
601 if (incoming) {
616 bool incoming) {
649 incoming));
655 bool incoming) {
658 if ((incoming
578 StartRtpDump( bool incoming, bool outgoing, const RenderProcessHost::WebRtcRtpPacketCallback& packet_callback) argument
614 DumpRtpPacket(const char* packet, size_t length, bool incoming) argument
652 DumpRtpPacketOnIOThread(scoped_ptr<uint8[]> packet_header, size_t header_length, size_t packet_length, bool incoming) argument
[all...]
H A Dsocket_host.h86 bool incoming,
89 void StopRtpDump(bool incoming, bool outgoing);
142 void DumpRtpPacket(const char* packet, size_t length, bool incoming);
148 bool incoming);
/external/chromium_org/net/tools/tld_cleanup/
H A Dmake_dafsa.py261 """Count incoming references"""
305 incoming = {}
308 """Counts incoming references."""
310 if id(node) not in incoming:
311 incoming[id(node)] = 1
315 incoming[id(node)] += 1
321 incoming[id(node)] -= 1
323 waiting = [node for node in dafsa if incoming[id(node)] == 0]
328 assert incoming[id(node)] == 0
332 incoming[i
[all...]
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DHostListLoader.java109 Scanner incoming = new Scanner(link.getInputStream());
111 while (incoming.hasNext()) {
112 responseBuilder.append(incoming.nextLine());
115 incoming.close();
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtcpport.cc91 // We can't accept TCP connections incoming on other ports
137 // recognize our incoming TCP connections.
194 Incoming incoming; local
195 incoming.addr = new_socket->GetRemoteAddress();
196 incoming.socket = new_socket;
197 incoming.socket->SignalReadPacket.connect(this, &TCPPort::OnReadPacket);
198 incoming.socket->SignalReadyToSend.connect(this, &TCPPort::OnReadyToSend);
201 << incoming.addr.ToSensitiveString();
202 incoming_.push_back(incoming);
/external/chromium_org/chrome/browser/chromeos/events/
H A Devent_rewriter.cc546 MutableKeyState incoming = *state;
552 switch (incoming.key_code) {
618 incoming.flags |= characteristic_flag;
624 GetRemappedModifierMasks(*pref_service, key_event, incoming.flags);
634 incoming.key_code != ui::VKEY_CAPITAL &&
651 MutableKeyState incoming = *state;
668 kNumPadRemappings, arraysize(kNumPadRemappings), incoming, state);
676 MutableKeyState incoming = *state; local
679 if ((incoming.flags & (ui::EF_COMMAND_DOWN | ui::EF_ALT_DOWN)) ==
707 kAvoidRemappings, arraysize(kAvoidRemappings), incoming, stat
751 MutableKeyState incoming = *state; local
[all...]
/external/bison/build-aux/
H A Dgnupload327 $dbg ncftpput ftp-upload.gnu.org /incoming/alpha $files $base.directive.asc
332 $dbg ncftpput ftp-upload.gnu.org /incoming/ftp $files $base.directive.asc
338 $dbg ncftpput savannah.gnu.org /incoming/savannah/$destdir $files
344 $dbg ncftpput savannah.nongnu.org /incoming/savannah/$destdir $files
354 done | $dbg sftp -b - puszcza.gnu.org.ua:/incoming/$destdir_topdir
/external/chromium_org/content/public/browser/
H A Drender_process_host.h208 bool incoming)> WebRtcRtpPacketCallback;
210 typedef base::Callback<void(bool incoming, bool outgoing)>
216 bool incoming,
/external/chromium_org/cc/trees/
H A Dlayer_sorter.cc342 edge.to->incoming.push_back(&edge);
388 // Find all the nodes that don't have incoming edges.
390 if (!la->incoming.size())
414 RemoveEdgeFromList(outgoing_edge, &outgoing_edge->to->incoming);
417 if (!outgoing_edge->to->incoming.size())
426 // If there are still active edges but the list of nodes without incoming
428 // the node with the smallest overall incoming edge weight and use it. This
429 // will favor nodes that have zero-weight incoming edges i.e. layers that
434 if (nodes_[i].incoming.size() &&
441 // Remove all its incoming edge
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
H A DCPPTarget.java100 * around the incoming literal.
117 * around the incoming literal.
/external/chromium_org/chrome/browser/resources/hangout_services/
H A Dthunk.js121 var incoming = message['incoming'] || false;
124 sender.tab.id, origin, incoming, outgoing, doSendResponse);
127 var incoming = message['incoming'] || false;
130 sender.tab.id, origin, incoming, outgoing, doSendResponse);
226 // Stops incoming and outgoing separately, otherwise stopRtpDump will fail if
/external/chromium_org/chrome/browser/extensions/api/webrtc_logging_private/
H A Dwebrtc_logging_private_api.cc282 if (!params->incoming && !params->outgoing) {
283 StartRtpDumpCallback(false, "Either incoming or outgoing must be true.");
288 (params->incoming && params->outgoing)
290 : (params->incoming ? RTP_DUMP_INCOMING : RTP_DUMP_OUTGOING);
305 host->StartRtpDump(params->incoming,
339 if (!params->incoming && !params->outgoing) {
340 StopRtpDumpCallback(false, "Either incoming or outgoing must be true.");
345 (params->incoming && params->outgoing)
347 : (params->incoming ? RTP_DUMP_INCOMING : RTP_DUMP_OUTGOING);

Completed in 600 milliseconds

123