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

1 2 3 4 5 6 7

  /external/tcpdump/
atime.awk 1 $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).
stime.awk 1 $6 !~ /^ack/ && $5 !~ /[SFR]/ {
print-decnet.c 305 #define SGQ_ACK 0100000 /* ack */
306 #define SGQ_NAK 0110000 /* negative ack */
307 #define SGQ_OACK 0120000 /* other channel ack */
308 #define SGQ_ONAK 0130000 /* other channel negative ack */
311 #define SGQ_DELAY 010000 /* ack delay flag */
877 int ack; local
883 ack = EXTRACT_LE_16BITS(shp->sh_seq[0]);
884 if (ack & SGQ_ACK) { /* acknum field */
885 if ((ack & SGQ_NAK) == SGQ_NAK)
886 ND_PRINT((ndo, "nak %d ", ack & SGQ_MASK))
913 int ack; local
951 int ack; local
1015 int ack; local
1040 int ack; local
    [all...]
  /system/bt/btif/src/
btif_a2dp.cc 50 bool ack = false; local
58 /* ack back a local start request */
89 ack = true;
99 ack = true;
101 return ack;
135 tA2DP_CTRL_ACK ack; local
141 ack = A2DP_CTRL_ACK_SUCCESS;
146 ack = A2DP_CTRL_ACK_UNSUPPORTED;
151 ack = A2DP_CTRL_ACK_FAILURE;
156 if (ack != BTA_AV_SUCCESS && btif_av_stream_started_ready())
    [all...]
  /frameworks/av/media/libmedia/include/media/
SingleStateQueue.h 65 // returns a sequence number which can be used with ack()
85 enum SSQ_STATUS ack() const function in class:android::SingleStateQueue::Mutator
88 // being performed (out-of-order) before the ack read, should the caller be
90 const int32_t ack = android_atomic_acquire_load(&mShared->mAck); local
91 return ack - mSequence & ~1 ? SSQ_PENDING /* seq differ */ :
92 ack & 1 ? SSQ_DONE : SSQ_READ;
96 bool ack(int32_t sequence) const function in class:android::SingleStateQueue::Mutator
153 const int32_t ack = mShared->mAck + 1; local
155 android_atomic_release_store(ack, &mShared->mAck); // mSequence is odd after "done"
  /external/testng/src/main/java/org/testng/remote/
RemoteArgs.java 14 public static final String ACK = "-ack";
15 @Parameter(names = ACK, description = "Use ACK's")
16 public boolean ack = false; field in class:RemoteArgs
  /device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/pm_service/
pm_api_sys.h 17 enum pm_request_ack ack,
27 enum pm_request_ack ack);
34 enum pm_request_ack ack);
51 enum pm_request_ack ack);
57 enum pm_request_ack ack);
pm_api_sys.c 87 * @ack Flag to specify whether acknowledge is requested
94 enum pm_request_ack ack,
100 PM_PACK_PAYLOAD5(payload, PM_REQ_SUSPEND, target, ack, latency, state);
101 if (ack == REQ_ACK_BLOCKING)
111 * @ack Flag to specify whether acknowledge requested
126 enum pm_request_ack ack)
141 encoded_address >> 32, ack);
143 if (ack == REQ_ACK_BLOCKING)
153 * @ack Flag to specify whether acknowledge is requested
158 enum pm_request_ack ack)
    [all...]
  /external/autotest/site_utils/lxc/container_pool/
message.py 9 ACK = 'ack'
19 def ack(): function
20 """Creates a message of type ACK.
22 ACK messages are returned by the server to acknowledge receipt and confirm
25 return Message(ACK, {})
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
serverpairingsession.cc 53 message::PairingRequestAckMessage ack(service_name());
54 wire()->SendPairingRequestAckMessage(ack);
97 message::ConfigurationAckMessage ack; local
98 wire()->SendConfigurationAckMessage(ack);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
ClientPairingSession.java 74 PairingRequestAckMessage ack = (PairingRequestAckMessage) getNextMessage( local
77 if (ack.hasServerName()) {
78 mPeerName = ack.getServerName();
102 ConfigurationAckMessage ack = (ConfigurationAckMessage) local
  /test/vti/dashboard/src/main/webapp/js/
test_acknowledgments.js 44 * @param ack (jQuery object) The object for acknowledgment.
47 function removeAcknowledgment(ack, key) {
48 if (ack.hasClass('disabled')) {
51 ack.addClass('disabled');
56 ack.removeClass('disabled');
58 ack.slideUp(150, function() {
59 ack.remove();
145 * @param ack (jQuery object) The object for acknowledgment.
154 function saveCallback(ack, modal, key, test, branchSet, deviceSet, testCaseSet, note) {
184 ack.replaceWith(newAck.hide())
    [all...]
  /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...]
  /test/vti/dashboard/src/test/java/com/android/vts/job/
VtsAlertJobServletTest.java 84 TestAcknowledgmentEntity ack = local
86 acks.add(ack);
109 TestAcknowledgmentEntity ack = local
112 acks.add(ack);
134 TestAcknowledgmentEntity ack = local
137 acks.add(ack);
  /external/syslinux/gpxe/src/include/
old_tcp.h 16 #define ACK 16
24 int32_t ack; member in struct:tcphdr
  /frameworks/av/services/audioflinger/
StateQueue.cpp 96 #define PUSH_BLOCK_ACK_NS 3000000L // 3 ms: time between checks for ack in push()
120 const T *ack = (const T *) mAck; // no additional barrier needed local
121 if (ack == mExpecting) {
164 const T *ack = (const T *) mAck; // no additional barrier needed local
165 if (ack == mExpecting) {
  /external/ltp/testcases/kernel/sched/nptl/
nptl01.c 57 pthread_mutex_t ack; variable
170 call_mutex_lock(&ack, buf, sizeof(buf));
174 call_mutex_unlock(&ack, buf, sizeof(buf));
252 call_mutex_init(&ack, buf, sizeof(buf));
257 call_mutex_lock(&ack, buf, sizeof(buf));
264 call_cond_wait(&parent, &ack, buf, sizeof(buf));
267 call_mutex_unlock(&ack, buf, sizeof(buf));
281 call_mutex_lock(&ack, buf, sizeof(buf));
  /external/testng/src/main/java/org/testng/remote/strprotocol/
SerializedMessageSender.java 13 super(host, port, false /* no ack */);
16 public SerializedMessageSender(String host, int port, boolean ack) {
17 super(host, port, ack);
  /system/core/adb/client/
main.cpp 164 const CHAR ack[] = "OK\n";
165 const DWORD bytes_to_write = arraysize(ack) - 1;
167 if (!WriteFile(ack_reply_handle, ack, bytes_to_write, &written, NULL)) {
168 fatal("adb: cannot write ACK to handle 0x%p: %s", ack_reply_handle,
172 fatal("adb: cannot write %lu bytes of ACK: only wrote %lu bytes", bytes_to_write,
180 fatal_errno("error writing ACK to fd %d", ack_reply_fd);
  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
ShowTestAcknowledgmentServlet.java 60 TestAcknowledgmentEntity ack = TestAcknowledgmentEntity.fromEntity(ackEntity); local
61 if (ack == null) continue;
62 testAcks.add(ack.toJson());
  /bionic/libc/kernel/uapi/linux/
connector.h 50 __u32 ack; member in struct:cn_msg
if_arcnet.h 61 __u8 ack; member in union:arc_cap::__anon674
  /external/kernel-headers/original/uapi/linux/
connector.h 74 __u32 ack; member in struct:cn_msg
if_arcnet.h 92 __u8 ack; member in union:arc_cap::__anon22880
  /external/syslinux/gpxe/src/include/gpxe/
tftp.h 49 /** A TFTP acknowledgement (ACK) packet */
78 struct tftp_ack ack; member in union:tftp_any

Completed in 279 milliseconds

1 2 3 4 5 6 7