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

1 2

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsvns.h 14 u_char hops; member in struct:sockaddr_vns
tdi.h 479 UCHAR hops; member in struct:_TDI_ADDRESS_VNS
  /external/chromium_org/base/threading/
thread_perftest.cc 45 virtual void PingPong(int hops) = 0;
125 virtual void PingPong(int hops) OVERRIDE {
126 if (!hops) {
130 NextThread(hops)->message_loop_proxy()->PostTask(
133 &ThreadPerfTest::PingPong, base::Unretained(this), hops - 1));
190 my_hops = --remaining_hops_; // We own 'hops' between Wait and Signal.
193 // Once we are done, all threads will signal as hops passes zero.
199 virtual void PingPong(int hops) OVERRIDE {
200 remaining_hops_ = hops;
  /external/apache-http/src/org/apache/http/conn/routing/
RouteTracker.java 233 int hops = 0; local
236 hops = 1;
238 hops = proxyChain.length + 1;
240 return hops;
  /system/core/libnetutils/
dhcpmsg.h 40 uint8_t hops; /* client set to 0 */ member in struct:dhcp_msg
dhcpmsg.c 33 msg->hops = 0;
dhcpclient.c 271 ALOGD("op = %s (%d), htype = %d, hlen = %d, hops = %d",
272 name, msg->op, msg->htype, msg->hlen, msg->hops);
  /external/iputils/
tracepath.c 40 int hops; member in struct:hhistory
134 if (slot>=0 && slot < 63 && his[slot].hops) {
135 sndhops = his[slot].hops;
137 his[slot].hops = 0;
271 his[hisptr].hops = ttl;
276 his[hisptr].hops = 0;
338 "Error: max hops must be 0 .. %d (inclusive).\n",
444 printf(" Too many hops: pmtu %d\n", mtu);
448 printf("hops %d ", hops_to);
tracepath6.c 50 int hops; member in struct:hhistory
157 if (slot >= 0 && slot < 63 && his[slot].hops) {
158 sndhops = his[slot].hops;
160 his[slot].hops = 0;
341 his[hisptr].hops = ttl;
346 his[hisptr].hops = 0;
406 "Error: max hops must be 0 .. %d (inclusive).\n",
573 printf(" Too many hops: pmtu %d\n", mtu);
578 printf("hops %d ", hops_to);
ping_common.h 294 int cc, __u16 seq, int hops,
ping6.c 1595 int hops = -1; local
    [all...]
ping_common.c 871 int cc, __u16 seq, int hops,
946 if (hops >= 0)
947 printf(" ttl=%d", hops);
  /external/chromium_org/ipc/
ipc_channel_posix.cc 951 void ChannelPosix::QueueCloseFDMessage(int fd, int hops) {
952 switch (hops) {
959 if (!msg->WriteInt(hops - 1) || !msg->WriteInt(fd)) {
1006 int fd, hops; local
1007 if (!msg.ReadInt(&iter, &hops))
1011 if (hops == 0) {
    [all...]
ipc_channel_posix.h 101 void QueueCloseFDMessage(int fd, int hops);
  /external/dnsmasq/contrib/wrt/
dhcp_lease_time.c 62 u8 op, htype, hlen, hops; member in struct:dhcp_packet
dhcp_release.c 67 u8 op, htype, hlen, hops; member in struct:dhcp_packet
  /external/dhcpcd/
dhcp.c 441 int count = 0, l, hops; local
446 hops = 0;
459 hops++;
460 if (hops > 255)
    [all...]
  /external/tcpdump/
print-decnet.c 72 int dst, src, hops; local
138 hops = EXTRACT_LE_8BITS(rhp->rh_long.lg_visits);
146 hops = (EXTRACT_LE_8BITS(rhp->rh_short.sh_visits) & VIS_MASK)+1;
165 (void)printf("%d hops ", hops);
348 (void)printf("{ids %d-%d cost %d hops %d} ", id, id + count,
378 (void)printf("{areas %d-%d cost %d hops %d} ", area, area + count,
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java 80 * using two techniques: advancing multiple hops with a single CAS
387 private static final int HOPS = 2;
426 int hops = 1; local
429 for (Node<E> p = prev; ; ++hops) {
450 for (Node<E> p = next; ; ++hops) {
471 if (hops < HOPS
    [all...]
  /external/chromium_org/net/udp/
udp_socket_win.cc 734 DWORD hops = multicast_time_to_live_; local
740 reinterpret_cast<const char*>(&hops), sizeof(hops));
  /external/dnsmasq/src/
rfc1035.c 34 unsigned int j, l, hops = 0; local
85 hops++; /* break malicious infinite loops */
86 if (hops > 255)
    [all...]
dnsmasq.h 564 u8 op, htype, hlen, hops; member in struct:dhcp_packet
  /external/wpa_supplicant_8/src/drivers/
driver_wired.c 69 u_int8_t hops; member in struct:dhcp_message
  /frameworks/base/core/java/android/net/dhcp/
DhcpPacket.java 629 byte hops = packet.get();
  /external/iproute2/doc/
ip-tunnels.tex 86 only skips some number of hops.

Completed in 757 milliseconds

1 2