Home
last modified time | relevance | path

Searched refs:incoming (Results 1 – 25 of 119) sorted by relevance

12345

/external/mtpd/
Dpptp.c132 } incoming, outgoing; variable
155 if (!incoming.expect) { in recv_packet()
156 incoming.length = 0; in recv_packet()
157 incoming.expect = HEADER_SIZE; in recv_packet()
163 length = incoming.expect - incoming.length; in recv_packet()
164 if (incoming.length >= MAX_PACKET_LENGTH) { in recv_packet()
168 if (incoming.expect > MAX_PACKET_LENGTH) { in recv_packet()
169 length = MAX_PACKET_LENGTH - incoming.length; in recv_packet()
171 length = recv(the_socket, &incoming.buffer[incoming.length], length, 0); in recv_packet()
185 incoming.length += length; in recv_packet()
[all …]
Dl2tp.c119 } incoming, outgoing; variable
185 uint16_t *p = (uint16_t *)incoming.buffer; in recv_packet()
187 incoming.length = recv(the_socket, incoming.buffer, MAX_PACKET_LENGTH, 0); in recv_packet()
188 if (incoming.length == -1) { in recv_packet()
197 if ((incoming.length != ACK_SIZE && incoming.length < MESSAGE_HEADER_SIZE) in recv_packet()
199 ntohs(p[1]) != incoming.length || p[2] != local_tunnel) { in recv_packet()
203 if (incoming.length == ACK_SIZE) { in recv_packet()
204 incoming.message = ACK; in recv_packet()
206 incoming.message = ntohs(p[9]); in recv_packet()
213 if (incoming.message != ACK) { in recv_packet()
[all …]
/external/quake/quake/src/QW/client/
Dgl_test.c70 vec3_t incoming; in Test_Spawn() local
82 VectorSubtract (r_refdef.vieworg, origin, incoming); in Test_Spawn()
83 VectorSubtract (origin, incoming, temp); in Test_Spawn()
86 VectorNormalize (incoming); in Test_Spawn()
87 d = DotProduct (incoming, plane->normal); in Test_Spawn()
88 VectorSubtract (vec3_origin, incoming, p->reflect); in Test_Spawn()
94 CrossProduct (incoming, p->normal, p->up); in Test_Spawn()
/external/quake/quake/src/WinQuake/
Dgl_test.cpp70 vec3_t incoming; in Test_Spawn() local
82 VectorSubtract (r_refdef.vieworg, origin, incoming); in Test_Spawn()
83 VectorSubtract (origin, incoming, temp); in Test_Spawn()
86 VectorNormalize (incoming); in Test_Spawn()
87 d = DotProduct (incoming, plane->normal); in Test_Spawn()
88 VectorSubtract (vec3_origin, incoming, p->reflect); in Test_Spawn()
94 CrossProduct (incoming, p->normal, p->up); in Test_Spawn()
/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dtcpport.cc145 Incoming incoming; in OnNewConnection() local
146 incoming.addr = new_socket->GetRemoteAddress(); in OnNewConnection()
147 incoming.socket = new_socket; in OnNewConnection()
148 incoming.socket->SignalReadPacket.connect(this, &TCPPort::OnReadPacket); in OnNewConnection()
151 << incoming.addr.ToString(); in OnNewConnection()
152 incoming_.push_back(incoming); in OnNewConnection()
/external/chromium/net/data/ftp/
Ddir-listing-ls-15.expected11 incoming
20 incoming.README
Ddir-listing-ls-153 d-wx-wx-wt+ 4 ftp 989 512 Dec 8 15:54 incoming
4 -r--r--r-- 2 ftp 989 7196 Aug 22 2007 incoming.README
/external/webkit/Source/WebCore/dom/default/
DPlatformMessagePortChannel.cpp101 …hannel> PlatformMessagePortChannel::create(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<Messa… in create() argument
103 return adoptRef(new PlatformMessagePortChannel(incoming, outgoing)); in create()
106 PlatformMessagePortChannel::PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassR… in PlatformMessagePortChannel() argument
108 , m_incomingQueue(incoming) in PlatformMessagePortChannel()
DPlatformMessagePortChannel.h90 …static PassRefPtr<PlatformMessagePortChannel> create(PassRefPtr<MessagePortQueue> incoming, PassRe…
91 …PlatformMessagePortChannel(PassRefPtr<MessagePortQueue> incoming, PassRefPtr<MessagePortQueue> out…
/external/javassist/src/main/javassist/bytecode/stackmap/
DBasicBlock.java30 public int incoming; // the number of incoming branches. field in BasicBlock
38 incoming = 0; in BasicBlock()
77 .append(length).append(", in=").append(incoming)
202 m.block.incoming++;
340 bb.incoming++;
386 handler.incoming--;
392 handler.incoming++;
DMapMaker.java311 if (prev.incoming > 0) { // the first instruction is a branch target. in toStackMap()
337 int in = cur.incoming; in isTarget()
475 effective[0] = prev.incoming > 0; in toStackMap2()
/external/llvm/test/Transforms/Mem2Reg/
D2003-04-24-MultipleIdenticalSuccessors.ll1 ; Mem2reg used to only add one incoming value to a PHI node, even if it had
2 ; multiple incoming edges from a block.
/external/llvm/lib/Analysis/
DProfileEstimatorPass.cpp181 double incoming = BBWeight; in recurseBasicBlock() local
193 incoming -= MinimalWeight[*ei]; in recurseBasicBlock()
197 incoming -= w; in recurseBasicBlock()
218 double fraction = floor(incoming/Edges.size()); in recurseBasicBlock()
224 incoming -= fraction; in recurseBasicBlock()
226 w = incoming; in recurseBasicBlock()
/external/llvm/lib/Transforms/Scalar/
DLoopDeletion.cpp90 Value* incoming = P->getIncomingValueForBlock(exitingBlocks[0]); in IsLoopDead() local
97 if (incoming != P->getIncomingValueForBlock(exitingBlocks[i])) in IsLoopDead()
101 if (Instruction* I = dyn_cast<Instruction>(incoming)) in IsLoopDead()
/external/bluetooth/bluez/doc/
Daudio-api.txt41 Either an incoming or outgoing connection
76 Indicate an incoming call on the headset
82 Cancel the incoming call indication.
170 Either an incoming or outgoing connection
264 Either an incoming or outgoing connection
327 Either an incoming or outgoing connection
371 Terminate call which is running or reject an incoming
Dservice-api.txt48 Request an authorization for an incoming connection
/external/dbus/dbus/
Ddbus-auth.c158 DBusString incoming; /**< Incoming data buffer */ member
359 if (!_dbus_string_init (&auth->incoming)) in _dbus_auth_new()
411 _dbus_string_free (&auth->incoming); in _dbus_auth_new()
2167 if (!_dbus_string_find (&auth->incoming, 0, "\r\n", &eol)) in process_command()
2183 if (!_dbus_string_copy_len (&auth->incoming, 0, eol, &line, 0)) in process_command()
2224 _dbus_string_delete (&auth->incoming, 0, eol); in process_command()
2227 _dbus_string_delete (&auth->incoming, 0, 2); in process_command()
2386 _dbus_string_free (&auth->incoming); in _dbus_auth_unref()
2455 if (_dbus_string_get_length (&auth->incoming) > MAX_BUFFER || in _dbus_auth_do_work()
2538 *buffer = &auth->incoming; in _dbus_auth_get_buffer()
[all …]
/external/llvm/test/Analysis/BasicAA/
D2003-09-19-LocalArgument.ll1 ; In this test, a local alloca cannot alias an incoming argument.
/external/llvm/test/Transforms/SimplifyCFG/
DEqualPHIEdgeBlockMerge.ll12 ; It's ok to merge N and M because the incoming values for W are the
/external/llvm/test/CodeGen/X86/
Dfsxor-alignment.ll4 ; Don't fold the incoming stack arguments into the xorps instructions used
/external/iptables/extensions/
Dlibxt_TEE.man10 To forward all incoming traffic on eth0 to an Network Layer logging box:
Dlibipt_REDIRECT.man9 destination IP to the primary address of the incoming interface
Dlibxt_TPROXY.man15 address of the incoming interface. This is only valid if the rule also
Dlibxt_LED.man26 Create an LED trigger for incoming SSH traffic:
/external/iproute2/doc/actions/
Difb-README15 2) Allows for queueing incoming traffic for shaping instead of
31 selectively either query/create contrack state on incoming packets.
33 on incoming packets; if we find they are of known state we could send to

12345