HomeSort by relevance Sort by last modified time
    Searched defs:ack (Results 26 - 50 of 105) sorted by null

12 3 4 5

  /bionic/libc/kernel/uapi/linux/
cn_proc.h 44 } ack; member in union:proc_event::__anon550
if_arcnet.h 61 __u8 ack; member in union:arc_cap::__anon674
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3debugeventlistener.h 288 void (*ack) (pANTLR3_DEBUG_EVENT_LISTENER delboy); member in struct:ANTLR3_DEBUG_EVENT_LISTENER_struct
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3debughandlers.c 87 static void ack (pANTLR3_DEBUG_EVENT_LISTENER delboy);
314 ack (delboy);
321 // Send the supplied text and wait for an ack from the client
326 ack(delboy);
330 ack (pANTLR3_DEBUG_EVENT_LISTENER delboy) function
337 // Ack terminates in a line feed, so we just wait for
350 // completely if we don't get the terminating '\n' for the ack.
640 // Transmit the message and wait for ack
660 // Transmit the message and wait for ack
689 // Transmit the message and wait for ack
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
socket.rb 55 ack
77 def ack method in class:ANTLR3.Debug.EventSocketProxy
85 ack()
293 ack
296 def ack method in class:ANTLR3.Debug.RemoteEventSocketListener
297 @socket.puts( "ack" )
323 ack
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.cc 65 ConfigurationAck ack; local
68 ack.SerializeAsString());
120 PairingRequestAck ack; local
123 ack.set_server_name(message.server_name());
127 ack.SerializeAsString());
145 SecretAck ack; local
146 ack.set_secret(&message.secret()[0], message.secret().size());
149 ack.SerializeAsString());
249 ConfigurationAck ack; local
250 if (!ack.ParseFromString(payload))
313 PairingRequestAck ack; local
345 SecretAck ack; local
    [all...]
  /external/iproute2/ip/
tcp_metrics.c 310 int ack; local
393 ack = 1;
396 ack = 1;
398 ack = 0;
406 if (ack)
459 if (ack) {
  /external/kernel-headers/original/uapi/linux/
cn_proc.h 71 } ack; member in union:proc_event::__anon22756
if_arcnet.h 92 __u8 ack; member in union:arc_cap::__anon22880
  /external/tcpdump/
print-tcp.c 80 tcp_seq ack; member in struct:tcp_seq_hash
93 tcp_seq ack; member in struct:tcp_seq_hash6
170 uint32_t seq, ack, thseq, thack; local
228 ack = EXTRACT_32BITS(&tp->th_ack);
294 th->ack = seq, th->seq = ack - 1;
296 th->seq = seq, th->ack = ack - 1;
299 seq -= th->ack, ack -= th->seq
    [all...]
print-mptcp.c 97 } ack; member in union:mp_join::__anon38603
193 if (opt_len == 20) /* ACK */
222 case 16: /* SYN/ACK */
227 case 24: {/* ACK */
230 for (i = 0; i < sizeof(mpj->u.ack.mac); ++i)
231 ND_PRINT((ndo, "%02x", mpj->u.ack.mac[i]));
258 /* Ack present */
259 ND_PRINT((ndo, " ack "));
261 * If the a flag is set, we have an 8-byte ack; if it's
262 * clear, we have a 4-byte ack
    [all...]
print-eigrp.c 43 uint8_t ack[4]; member in struct:eigrp_common_header
259 ND_PRINT((ndo, "\n\tEIGRP v%u, opcode: %s (%u), chksum: 0x%04x, Flags: [%s]\n\tseq: 0x%08x, ack: 0x%08x, AS: %u, length: %u",
268 EXTRACT_32BITS(&eigrp_com_header->ack),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
cn_proc.h 68 } ack; member in union:proc_event::__anon62422
if_arcnet.h 94 __u8 ack; member in union:arc_cap::__anon62540
  /system/core/debuggerd/
crash_dump.cpp 181 // 3 sec timeout reading the ack; we're fine if the read fails.
182 char ack; local
183 android::base::ReadFully(amfd, &ack, 1);
  /system/tpm/trunks/ftdi/
mpsse.c 284 SetAck(mpsse, ACK);
706 * read back each individual ACK bit, so set the transmit size to 1.
722 /* Read in the ACK bit and store it in mpsse->rack */
918 * Returns the last received ACK bit.
922 * Returns either an ACK (0) or a NACK (1).
925 int ack = 0; local
928 ack = (mpsse->rack & 0x01);
931 return ack;
935 * Sets the transmitted ACK bit.
938 * @ack - 0 to send ACKs, 1 to send NACKs
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
tcp.h 23 uint32_t ack; /* Acknowledgement number */ member in struct:tcp_header
120 * been received, we should always be sending ACK.
  /external/syslinux/gpxe/src/net/
tcp.c 97 static int tcp_rx_ack ( struct tcp_connection *tcp, uint32_t ack,
155 DBGC2 ( tcp, " ACK" );
486 tcphdr->ack = htonl ( tcp->rcv_ack );
496 ntohl ( tcphdr->ack ), len );
566 "%08x..%08x %08x\n", tcp, ntohl ( in_tcphdr->ack ),
567 ntohl ( in_tcphdr->ack ), ntohl ( in_tcphdr->seq ) );
577 tcphdr->seq = in_tcphdr->ack;
578 tcphdr->ack = in_tcphdr->seq;
588 ntohl ( tcphdr->ack ), 0 );
596 "%s\n", tcp, ntohl ( in_tcphdr->ack ),
899 uint32_t ack; local
    [all...]
  /system/netd/server/
SockDiag.cpp 56 } __attribute__((__packed__)) ack; local
57 ssize_t bytesread = recv(fd, &ack, sizeof(ack), MSG_DONTWAIT | MSG_PEEK);
61 } else if (bytesread == (ssize_t) sizeof(ack) && ack.h.nlmsg_type == NLMSG_ERROR) {
63 recv(fd, &ack, sizeof(ack), 0);
64 return ack.err.error;
  /device/google/contexthub/firmware/os/core/
bl.c 46 #define BL_CMD_UPDATE_FINISHED 0xEF /* our own command. attempts to verify the update -> ACK/NAK. MUST be called after upload to mark it as completed */
454 static bool blLoaderSendAck(bool ack)
457 blLoaderTxByte(ack ? BL_ACK : BL_NAK);
485 bool ack = true; //we ack the sync local
487 ack = blLoaderSendSyncOut();
494 //send ack or NAK for last thing
495 if (!blLoaderSendAck(ack))
501 ack = false;
506 //ACK the comman
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventSocketProxy.java 87 ack(); method
106 protected void ack() { method in class:DebugEventSocketProxy
118 ack(); method
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
debug.py 890 self.ack()
899 def ack(self): member in class:DebugEventSocketProxy
906 self.ack();
    [all...]
  /external/libmojo/mojo/edk/system/ports/
node.cc 550 ObserveProxyAckEventData ack; local
551 ack.last_sequence_num = port->next_sequence_num_to_send - 1;
557 ack));
572 ObserveProxyAckEventData ack; local
573 ack.last_sequence_num = kInvalidSequenceNum;
580 ack)));
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
MockSpdyPeer.java 230 public boolean ack; field in class:MockSpdyPeer.InFrame
249 this.ack = true;
280 @Override public void ping(boolean ack, int payload1, int payload2) {
283 this.ack = ack;
  /external/syslinux/gpxe/src/net/udp/
tftp.c 128 /** Send ACK packets */
193 /* Disable ACK sending. */
384 * Transmit ACK
390 struct tftp_ack *ack; local
399 DBGC2 ( tftp, "TFTP %p sending ACK for block %d\n", tftp, block );
402 iobuf = xfer_alloc_iob ( &tftp->socket, sizeof ( *ack ) );
406 /* Build ACK */
407 ack = iob_put ( iobuf, sizeof ( *ack ) );
408 ack->opcode = htons ( TFTP_ACK )
    [all...]

Completed in 2101 milliseconds

12 3 4 5