Searched refs:ack (Results 1 - 25 of 35) sorted by relevance

12

/haiku-fatelf/src/bin/network/tcpdump/
H A Datime.awk1 $6 ~ /^ack/ && $5 !~ /[SFR]/ {
2 # given a tcpdump ftp trace, output one line for each ack
4 # <ack time> <seq no>
5 # where <ack time> is the time packet was acked (in seconds with
7 # number of the ack divided by 1024 (i.e., Kbytes acked).
H A Dstime.awk1 $6 !~ /^ack/ && $5 !~ /[SFR]/ {
H A Dprint-decnet.c435 int ack; local
444 ack = EXTRACT_LE_16BITS(shp->sh_seq[0]);
445 if (ack & SGQ_ACK) { /* acknum field */
446 if ((ack & SGQ_NAK) == SGQ_NAK)
447 (void)printf("nak %d ", ack & SGQ_MASK);
449 (void)printf("ack %d ", ack & SGQ_MASK);
454 ack = EXTRACT_LE_16BITS(shp->sh_seq[1]);
455 if (ack & SGQ_OACK) { /* ackoth field */
456 if ((ack
481 int ack; local
529 int ack; local
593 int ack; local
618 int ack; local
[all...]
H A Dprint-tcp.c86 tcp_seq ack; member in struct:tcp_seq_hash
200 u_int32_t seq, ack, thseq, thack; local
283 ack = EXTRACT_32BITS(&tp->th_ack);
401 th->ack = seq, th->seq = ack - 1;
403 th->seq = seq, th->ack = ack - 1;
406 seq -= th->ack, ack -= th->seq;
408 seq -= th->seq, ack
[all...]
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A D_KPPPMRUHandler.h19 virtual status_t ParseAck(const KPPPConfigurePacket& ack);
23 virtual status_t SendingAck(const KPPPConfigurePacket& ack);
H A D_KPPPAuthenticationHandler.h22 virtual status_t ParseAck(const KPPPConfigurePacket& ack);
26 virtual status_t SendingAck(const KPPPConfigurePacket& ack);
H A D_KPPPPFCHandler.h20 virtual status_t ParseAck(const KPPPConfigurePacket& ack);
24 virtual status_t SendingAck(const KPPPConfigurePacket& ack);
H A D_KPPPPFCHandler.cpp65 _KPPPPFCHandler::ParseAck(const KPPPConfigurePacket& ack) argument
67 if (ack.ItemWithType(kPFCType))
99 _KPPPPFCHandler::SendingAck(const KPPPConfigurePacket& ack) argument
101 ppp_configure_item *item = ack.ItemWithType(kPFCType);
H A D_KPPPMRUHandler.cpp73 _KPPPMRUHandler::ParseAck(const KPPPConfigurePacket& ack) argument
76 mru_item *item = (mru_item*) ack.ItemWithType(kMRUType);
102 _KPPPMRUHandler::SendingAck(const KPPPConfigurePacket& ack) argument
104 return ParseRequestedItem((mru_item*) ack.ItemWithType(kMRUType), Interface());
H A DKPPPOptionHandler.cpp142 /*! \brief Parse an ack received from the peer.
148 KPPPOptionHandler::ParseAck(const KPPPConfigurePacket& ack) argument
172 //! Notification that we ack the values in \a ack.
174 KPPPOptionHandler::SendingAck(const KPPPConfigurePacket& ack) argument
H A D_KPPPAuthenticationHandler.cpp158 _KPPPAuthenticationHandler::ParseAck(const KPPPConfigurePacket& ack) argument
161 (authentication_item*) ack.ItemWithType(kAuthenticationType);
166 // the ack does not contain our request
175 return fPeerAuthenticator->OptionHandler()->ParseAck(ack);
230 _KPPPAuthenticationHandler::SendingAck(const KPPPConfigurePacket& ack) argument
235 (authentication_item*) ack.ItemWithType(kAuthenticationType);
251 return fLocalAuthenticator->OptionHandler()->SendingAck(ack);
/haiku-fatelf/src/add-ons/kernel/network/ppp/modem/
H A DACFCHandler.h44 virtual status_t ParseAck(const KPPPConfigurePacket& ack);
48 virtual status_t SendingAck(const KPPPConfigurePacket& ack);
H A DACFCHandler.cpp65 ACFCHandler::ParseAck(const KPPPConfigurePacket& ack) argument
67 if(ack.ItemWithType(kACFCType))
99 ACFCHandler::SendingAck(const KPPPConfigurePacket& ack) argument
101 ppp_configure_item *item = ack.ItemWithType(kACFCType);
/haiku-fatelf/src/add-ons/accelerants/matrox/engine/
H A Dmga_i2c.c203 int ack; local
207 ack = i2c_get_data();
212 LOG(8,("I2C: get_ack - %d value:%x\n",error,ack));
215 return ack;
321 int ack; local
326 ack = i2c_sendbyte(MAVEN_READ);
329 if (ack==0)
/haiku-fatelf/src/add-ons/accelerants/skeleton/engine/
H A Di2c.c214 int ack; local
218 ack = i2c_get_data();
223 LOG(8,("I2C: get_ack - %d value:%x\n",error,ack));
226 return ack;
332 int ack; local
337 ack = i2c_sendbyte(MAVEN_READ);
340 if (ack==0)
/haiku-fatelf/src/add-ons/accelerants/via/engine/
H A Di2c.c214 int ack; local
218 ack = i2c_get_data();
223 LOG(8,("I2C: get_ack - %d value:%x\n",error,ack));
226 return ack;
332 int ack; local
337 ack = i2c_sendbyte(MAVEN_READ);
340 if (ack==0)
/haiku-fatelf/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPOptionHandler.h61 virtual status_t ParseAck(const KPPPConfigurePacket& ack);
66 virtual status_t SendingAck(const KPPPConfigurePacket& ack);
/haiku-fatelf/src/add-ons/kernel/drivers/dvb/cx23882/
H A Di2c_core.c37 static status_t i2c_writebyte(i2c_bus *bus, uint8 byte, int *ack);
163 int ack; local
171 res = i2c_writebyte(bus, addr, &ack);
173 if (ack)
183 // TRACE("i2c_start_address: %s, ack %d, i %d\n", strerror(res), ack, i);
188 /* write one byte and the ack/nack
195 i2c_writebyte(i2c_bus *bus, uint8 byte, int *ack) argument
224 TRACE("i2c_writebyte timeout at ack\n");
227 *ack
306 int ack; local
[all...]
/haiku-fatelf/src/libs/ncurses/tack/
H A Dsync.c66 * These functions handle the messy business of enq-ack handshaking
74 int ch, trouble, ack; local
89 for (ack = 0; ; ) {
90 if (ack < TTY_ACK_SIZE - 2) {
91 tty_ACK[ack] = ch;
92 tty_ACK[ack + 1] = '\0';
97 if (++ack >= ACK_length) {
135 ** does the terminal do enq/ack handshaking?
/haiku-fatelf/src/add-ons/accelerants/radeon_hd/
H A Ddisplayport.cpp35 uint8* recv, int recvBytes, uint8 delay, uint8* ack)
66 *ack = args.v1.ucReplyStatus;
109 uint8 ack; local
111 NULL, 0, delay, &ack);
118 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
120 else if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_DEFER)
144 uint8 ack; local
146 recv, recvBytes, delay, &ack);
153 if ((ack & AUX_NATIVE_REPLY_MASK) == AUX_NATIVE_REPLY_ACK)
155 else if ((ack
34 dp_aux_speak(uint32 hwPin, uint8* send, int sendBytes, uint8* recv, int recvBytes, uint8 delay, uint8* ack) argument
206 uint8 ack; local
284 uint8 ack; local
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/network/wb840/
H A Dinterface.c98 int i, ack; local
133 /* Check for ack */
136 ack = read32(device->reg_base + WB_SIO) & WB_SIO_MII_DATAOUT;
145 * Now try reading data bits. If the ack failed, we still
148 if (ack) {
161 if (!ack) {
177 if (ack)
/haiku-fatelf/src/bin/network/telnetd/
H A Dslc.c219 int hislevel, mylevel, ack; local
251 ack = flag & SLC_ACK;
255 * or the level is the same and the ack bit is set
257 if (hislevel == mylevel && (val == slctab[func].current.val || ack)) {
259 } else if (ack) {
261 * If we get here, we got an ack, but the levels don't match.
342 * If our level is DEFAULT, then just ack whatever was
H A Dtermstat.c466 int ack, changed; local
472 * will change to the modes in an ack if it is different from
473 * what we currently have, but we will not ack the ack.
476 ack = (useeditmode & MODE_ACK);
485 * ack!!! This gets out the new MODE request,
486 * and when the ack to that command comes back
489 if (ack)
505 if (!ack) {
/haiku-fatelf/src/add-ons/kernel/network/ppp/ipcp/
H A DProtocol.cpp766 // parse this ack
767 KPPPConfigurePacket ack(packet);
770 for(int32 index = 0; index < ack.CountItems(); index++) {
771 item = ack.ItemAt(index);
818 if(!ack.ItemWithType(IPCP_ADDRESS))
1213 KPPPConfigurePacket ack(packet);
1218 for(int32 index = 0; index < ack.CountItems(); index++) {
1219 item = ack.ItemAt(index);
1266 if(!ack.ItemWithType(IPCP_ADDRESS))
1327 ppp_lcp_packet *ack; local
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Dremote-mips.c172 0x40 + (ack ? 0x20 : 0) + (len >> 6)
240 /* The data/ack bit in the TYPE_LEN header byte. */
948 fprintf_unfiltered (gdb_stdlog, "Got ack %d \"%s%s\"\n",
952 /* If this ack is for the current packet, we're done. */
957 /* If this ack is for the last packet, resend the current
962 /* Otherwise this is a bad ack; ignore it. Increment the
985 unsigned char ack[HDR_LENGTH + TRLR_LENGTH + 1];
1099 ack[HDR_INDX_SYN] = HDR_SET_SYN (0, 0, mips_receive_seq);
1100 ack[HDR_INDX_TYPE_LEN] = HDR_SET_TYPE_LEN (0, 0, mips_receive_seq);
1101 ack[HDR_INDX_LEN
983 unsigned char ack[HDR_LENGTH + TRLR_LENGTH + 1]; local
[all...]

Completed in 284 milliseconds

12