HomeSort by relevance Sort by last modified time
    Searched defs:mtu (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /external/android-clat/
config.h 28 int16_t mtu, ipv4mtu; member in struct:clat_config
  /external/tcpdump/
print-igrp.c 48 u_int metric, mtu; local
65 mtu = EXTRACT_16BITS(igr->igr_mtu);
67 printf(" d=%d b=%d r=%d l=%d M=%d mtu=%d in %d hops",
70 mtu, igr->igr_hct);
  /external/libppp/src/
iface.h 41 unsigned long mtu; /* struct tuninfo MTU */ member in struct:iface
radius.h 52 unsigned long mtu; /* FRAMED MTU */ member in struct:radius
  /system/bluetooth/bluez-clean-headers/bluetooth/
sco.h 39 uint16_t mtu; member in struct:sco_options
  /external/iproute2/tc/
q_htb.c 39 " [ceil R2] [cburst B2] [mtu MTU] [quantum Q]\n"
47 " mtu max packet size we create rate map for {1600}\n"
108 unsigned mtu; local
114 memset(&opt, 0, sizeof(opt)); mtu = 1600; /* eth packet len */
123 } else if (matches(*argv, "mtu") == 0) {
125 if (get_u32(&mtu, *argv, 10)) {
126 explain1("mtu"); return -1;
209 /* compute minimal allowed burst from rate; mtu is added here to make
210 sute that buffer is larger than mtu and to have some safeguard space *
    [all...]
q_tbf.c 28 fprintf(stderr, "Usage: ... tbf limit BYTES burst BYTES[/BYTES] rate KBPS [ mtu BYTES[/BYTES] ]\n");
45 unsigned buffer=0, mtu=0, mpu=0, latency=0; local
89 } else if (strcmp(*argv, "mtu") == 0 ||
92 if (mtu) {
93 fprintf(stderr, "Double \"mtu/minburst\" spec\n");
96 if (get_size_and_cell(&mtu, &Pcell_log, *argv) < 0) {
97 explain1("mtu");
169 if (!mtu) {
170 fprintf(stderr, "\"mtu\" is required, if \"peakrate\" is requested.\n");
183 double lim2 = opt.peakrate.rate*(double)latency/TIME_UNITS_PER_SEC + mtu;
222 double buffer, mtu; local
    [all...]
m_police.c 37 fprintf(stderr, "Usage: ... police rate BPS burst BYTES[/BYTES] [ mtu BYTES[/BYTES] ]\n");
136 unsigned buffer=0, mtu=0, mpu=0; local
171 } else if (strcmp(*argv, "mtu") == 0 ||
174 if (mtu) {
175 fprintf(stderr, "Double \"mtu/minburst\" spec\n");
178 if (get_size_and_cell(&mtu, &Pcell_log, *argv) < 0) {
179 explain1("mtu");
271 if (!mtu) {
272 fprintf(stderr, "\"mtu\" is required, if \"peakrate\" is requested.\n");
280 if (tc_calc_rtable(&p.rate, rtab, Rcell_log, mtu, linklayer) < 0)
    [all...]
  /external/bluetooth/bluedroid/stack/bnep/
bnep_main.c 81 /* Initialize the L2CAP configuration. We only care about MTU and flush */
85 bnep_cb.l2cap_my_cfg.mtu = BNEP_MTU_SIZE;
217 UINT16 result, mtu = 0; local
228 /* Remember the remote MTU size */
229 if ((!p_cfg->mtu_present) || (p_cfg->mtu < BNEP_MIN_MTU_SIZE))
231 mtu = p_cfg->mtu;
234 p_cfg->mtu = BNEP_MIN_MTU_SIZE;
239 if (p_cfg->mtu > BNEP_MTU_SIZE)
242 p_bcb->rem_mtu_size = p_cfg->mtu;
    [all...]
  /external/openssl/ssl/
d1_lib.c 208 unsigned int mtu; local
217 mtu = s->d1->mtu;
230 s->d1->mtu = mtu;
406 /* Reduce MTU after 2 unsuccessful retransmissions */
409 s->d1->mtu = BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, NULL);
  /frameworks/base/core/java/com/android/internal/net/
VpnConfig.java 63 public int mtu = -1; field in class:VpnConfig
82 out.writeInt(mtu);
100 config.mtu = in.readInt();
  /system/core/toolbox/
iftop.c 57 unsigned int mtu; member in struct:if_stats
168 ifs->mtu = get_mtu(ifs->name);
192 "name", "MTU", "bytes", "packets", "errs", "drpd", "bytes",
203 new->name, new->mtu,
  /bionic/libc/kernel/common/linux/
icmp.h 84 __u16 mtu; member in struct:icmphdr::__anon334::__anon336
  /development/ndk/platforms/android-3/include/linux/
icmp.h 70 __u16 mtu; member in struct:icmphdr::__anon1012::__anon1014
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixNetworkInterfaceTest.java 129 int mtu = netif.getMTU(); local
131 String cmd = "ifconfig " + name + " mtu 1000";
134 assertEquals(name + " MTU should be 1000", 1000, netif.getMTU());
136 cmd = "ifconfig " + name + " mtu " + mtu;
139 assertEquals(name + " MTU should be " + mtu, mtu, netif
  /external/bluetooth/bluedroid/stack/avct/
avct_int.h 63 UINT16 peer_mtu; /* peer l2c mtu */
74 UINT16 peer_mtu; /* peer l2c mtu */
90 UINT16 peer_mtu; /* peer l2c mtu */
135 UINT16 mtu; /* our L2CAP MTU */ member in struct:__anon3031
136 UINT16 mtu_br; /* our L2CAP MTU for the Browsing channel */
  /external/bluetooth/bluedroid/stack/gatt/
gatt_cl.c 710 /* this is an error case that server's response containing a value length which is larger than MTU-2
712 GATT_TRACE_ERROR4("gatt_process_read_by_type_rsp: Discard response op_code=%d vale_len=%d > (MTU-2=%d or msg_len-1=%d)",
1000 UINT16 mtu; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.cc 372 uint16 mtu = 1280; // safe default local
376 mtu_socket->EstimateMTU(&mtu) < 0) {
377 LOG_F(LS_WARNING) << "Failed to estimate MTU, error="
381 LOG_F(LS_VERBOSE) << "Using MTU of " << mtu << " bytes";
382 tcp_->NotifyMTU(mtu);
  /external/kernel-headers/original/linux/
icmp.h 80 __u16 mtu; member in struct:icmphdr::__anon9713::__anon9715
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmbr2684.h 47 int mtu; member in struct:atm_newif_br2684
atmlec.h 60 int mtu; member in struct:atmlec_config_msg
icmp.h 80 __be16 mtu; member in struct:icmphdr::__anon26427::__anon26429
if_frad.h 96 short mtu; member in struct:frad_conf
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmbr2684.h 47 int mtu; member in struct:atm_newif_br2684
atmlec.h 60 int mtu; member in struct:atmlec_config_msg

Completed in 578 milliseconds

1 2 3 4 5 6 7 8 9