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

1 2 3

  /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
  /external/syslinux/com32/lua/src/
dhcp.h 35 uint8_t hops; /* Used by relay agents */ member in struct:dhcp
dhcp.c 43 * hops hops Used by relay agents
286 lua_pushstring(L, "hops");
287 lua_pushinteger(L, dhcp->hops);
  /external/syslinux/com32/include/
dhcp.h 15 uint8_t hops; /* 3 */ member in struct:dhcp_packet
  /frameworks/base/core/jni/
android_net_NetUtils.cpp 226 int hops = kLinkLocalHopLimit; local
227 len = sizeof(hops);
228 if (setsockopt(fd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &hops, len) != 0) {
235 hops = kLinkLocalHopLimit;
236 len = sizeof(hops);
237 if (setsockopt(fd, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &hops, len) != 0) {
  /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;
  /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...]
  /external/wpa_supplicant_8/src/common/
dhcp.h 28 u8 hops; member in struct:dhcp_data
47 u8 hops; member in struct:bootp_pkt
  /external/syslinux/gpxe/src/net/infiniband/
ib_mi.c 203 if ( hop_pointer < ( sizeof ( smp->return_path.hops ) /
204 sizeof ( smp->return_path.hops[0] ) ) ) {
205 smp->return_path.hops[hop_pointer] = ibdev->port;
  /device/generic/goldfish/dhcp/common/
message.h 79 uint8_t hops; /* client set to 0 */ member in struct:Message::Dhcp
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/PxeDhcp4/
PxeDhcp4.h 56 UINT8 hops; member in struct:__anon6636
  /external/dhcpcd-6.8.2/
auth.c 321 /* RFC3318, section 5.2 - zero giaddr and hops */
482 uint8_t hops, *p, info; local
639 /* RFC3318, section 5.2 - zero giaddr and hops */
642 hops = *p;
649 hops = 0;
661 /* RFC3318, section 5.2 - restore giaddr and hops */
664 *p = hops;
dhcp-common.c 275 int hops; local
285 hops = 0;
302 hops++;
303 if (hops > 255) {
  /external/syslinux/core/lwip/src/include/lwip/
dhcp.h 79 PACK_STRUCT_FIELD(u8_t hops);
  /external/tensorflow/tensorflow/core/profiler/g3doc/
options.md 42 In graph view, in means the number of hops in the <b>graph</b>.
76 `-max_depth`: Show nodes that are at most this number of hops from starting node in the data structure.
  /external/brotli/c/enc/
hash_forgetful_chain_inc.h 205 size_t hops = self->max_hops; local
208 while (hops--) {
  /external/syslinux/gpxe/src/include/gpxe/
dhcp.h 517 /** Number of hops from server */
518 uint8_t hops; member in struct:dhcphdr
  /external/tcpdump/
print-decnet.c 506 int dst, src, hops; local
573 hops = EXTRACT_LE_8BITS(rhp->rh_long.lg_visits);
581 hops = (EXTRACT_LE_8BITS(rhp->rh_short.sh_visits) & VIS_MASK)+1;
600 ND_PRINT((ndo, "%d hops ", hops));
787 ND_PRINT((ndo, "{ids %d-%d cost %d hops %d} ", id, id + count,
818 ND_PRINT((ndo, "{areas %d-%d cost %d hops %d} ", area, area + count,
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java 109 * using two techniques: advancing multiple hops with a single CAS
412 private static final int HOPS = 2;
451 int hops = 1; local
454 for (Node<E> p = prev; ; ++hops) {
475 for (Node<E> p = next; ; ++hops) {
496 if (hops < HOPS
    [all...]
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
Builder.java 183 * @return distance of test name from base measured in hops in the
185 * is positive if path is some number of up hops followed by
186 * some number of down hops; result is negative if path is
187 * some number of down hops.
189 static int hops(GeneralNameInterface base, GeneralNameInterface test, method in class:Builder
196 debug.println("Builder.hops(): Names are different types");
218 debug.println("Builder.hops(): hopDistance not implemented " +
228 debug.println("Builder.hops(): Names are in different " +

Completed in 552 milliseconds

1 2 3