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

1 2 3

  /external/ppp/pppd/plugins/pppoatm/
text2qos.c 1 /* text2qos.c - Converts textual representation of QOS parameters to binary
125 int text2qos(const char *text,struct atm_qos *qos,int flags)
153 if (qos && !(flags & T2Q_DEFAULTS)) memset(qos,0,sizeof(*qos));
154 if (qos) qos->txtp.traffic_class = qos->rxtp.traffic_class = traffic_class;
155 if (qos && aal) qos->aal = aal
    [all...]
pppoatm.c 51 { "qos", o_string, &qosstr,
52 "set QoS for PPPoATM connection", 1},
134 struct atm_qos qos; local
144 memset(&qos, 0, sizeof qos);
145 qos.txtp.traffic_class = qos.rxtp.traffic_class = ATM_UBR;
146 /* TODO: support simplified QoS setting */
148 if (text2qos(qosstr, &qos, 0))
149 fatal("Can't parse QoS: \"%s\"")
    [all...]
atm.h 97 int text2qos(const char *text,struct atm_qos *qos,int flags);
98 int qos2text(char *buffer,int length,const struct atm_qos *qos,int flags);
  /bionic/libc/kernel/uapi/linux/
atm_tcp.h 42 struct atm_qos qos; member in struct:atmtcp_control
atmsvc.h 40 struct atm_qos qos; member in struct:atmsvc_msg
atmmpc.h 82 struct atm_qos qos; member in struct:k_message
  /development/ndk/platforms/android-L/include/linux/
atm_tcp.h 42 struct atm_qos qos; member in struct:atmtcp_control
atmsvc.h 40 struct atm_qos qos; member in struct:atmsvc_msg
  /external/kernel-headers/original/uapi/linux/
atm_tcp.h 39 struct atm_qos qos; /* both directions */ member in struct:atmtcp_control
45 * Messge type dir. hdr.v?i type addr qos vcc result
atmsvc.h 34 struct atm_qos qos; /* QOS parameters */ member in struct:atmsvc_msg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
atm_tcp.h 39 struct atm_qos qos; /* both directions */ member in struct:atmtcp_control
45 * Messge type dir. hdr.v?i type addr qos vcc result
atmsvc.h 34 struct atm_qos qos; /* QOS parameters */ member in struct:atmsvc_msg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atm_tcp.h 39 struct atm_qos qos; /* both directions */ member in struct:atmtcp_control
45 * Messge type dir. hdr.v?i type addr qos vcc result
atmsvc.h 34 struct atm_qos qos; /* QOS parameters */ member in struct:atmsvc_msg
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/
atm_tcp.h 42 struct atm_qos qos; member in struct:atmtcp_control
atmsvc.h 40 struct atm_qos qos; member in struct:atmsvc_msg
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/
atm_tcp.h 42 struct atm_qos qos; member in struct:atmtcp_control
atmsvc.h 40 struct atm_qos qos; member in struct:atmsvc_msg
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/
atm_tcp.h 42 struct atm_qos qos; member in struct:atmtcp_control
atmsvc.h 40 struct atm_qos qos; member in struct:atmsvc_msg
  /external/iproute2/tc/
q_atm.c 43 "[ qos QOS ] [ sndbuf BYTES ]\n");
53 struct atm_qos qos; local
64 (void) text2qos("aal5,ubr:sdu=9180,rx:none",&qos,0);
83 else if (!strcmp(*argv,"qos")) {
85 if (text2qos(*argv,&qos,0) < 0) {
156 if (setsockopt(s,SOL_ATM,SO_ATMQOS,&qos,sizeof(qos)) < 0) {
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_utils.c 636 UINT8_TO_STREAM (p, p_cfg->qos.qos_flags);
637 UINT8_TO_STREAM (p, p_cfg->qos.service_type);
638 UINT32_TO_STREAM (p, p_cfg->qos.token_rate);
639 UINT32_TO_STREAM (p, p_cfg->qos.token_bucket_size);
640 UINT32_TO_STREAM (p, p_cfg->qos.peak_bandwidth);
641 UINT32_TO_STREAM (p, p_cfg->qos.latency);
642 UINT32_TO_STREAM (p, p_cfg->qos.delay_variation);
736 UINT8_TO_STREAM (p, p_cfg->qos.qos_flags);
737 UINT8_TO_STREAM (p, p_cfg->qos.service_type);
738 UINT32_TO_STREAM (p, p_cfg->qos.token_rate)
    [all...]
l2c_main.c 522 STREAM_TO_UINT8 (cfg_info.qos.qos_flags, p);
523 STREAM_TO_UINT8 (cfg_info.qos.service_type, p);
524 STREAM_TO_UINT32 (cfg_info.qos.token_rate, p);
525 STREAM_TO_UINT32 (cfg_info.qos.token_bucket_size, p);
526 STREAM_TO_UINT32 (cfg_info.qos.peak_bandwidth, p);
527 STREAM_TO_UINT32 (cfg_info.qos.latency, p);
528 STREAM_TO_UINT32 (cfg_info.qos.delay_variation, p);
624 STREAM_TO_UINT8 (cfg_info.qos.qos_flags, p);
625 STREAM_TO_UINT8 (cfg_info.qos.service_type, p);
626 STREAM_TO_UINT32 (cfg_info.qos.token_rate, p)
    [all...]
  /external/libnl/lib/route/link/
vlan.c 155 NL_DBG(4, "Assigning egress qos mapping %d\n", i);
200 " ingress vlan prio -> qos/socket prio mapping:\n");
220 " egress qos/socket prio -> vlan prio mapping:\n");
281 struct nlattr *qos; local
284 if (!(qos = nla_nest_start(msg, IFLA_VLAN_INGRESS_QOS)))
296 nla_nest_end(msg, qos);
301 struct nlattr *qos; local
304 if (!(qos = nla_nest_start(msg, IFLA_VLAN_EGRESS_QOS)))
314 nla_nest_end(msg, qos);
  /external/iproute2/
configure 15 struct atm_qos qos;
16 (void) text2qos("aal5,ubr:sdu=9180,rx:none",&qos,0);

Completed in 427 milliseconds

1 2 3