HomeSort by relevance Sort by last modified time
    Searched refs:incoming (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/mtpd/
pptp.c 132 } 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.length
    [all...]
l2tp.c 119 } 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.message = ACK
    [all...]
  /cts/tools/dasm/src/java_cup/
lalr_item.java 110 /** Propagate incoming lookaheads through this item to others need to
112 * @params incoming symbols to potentially be added to lookahead of this item.
114 public void propagate_lookaheads(terminal_set incoming) throws internal_error
119 if (!needs_propagation && (incoming == null || incoming.empty()))
122 /* if we have null incoming, treat as an empty set */
123 if (incoming != null)
125 /* add the incoming to the lookahead of this item */
126 change = lookahead().add(incoming);