/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);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
atm_tcp.h | 38 struct atm_qos qos; /* both directions */ member in struct:atmtcp_control 44 * 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
|
atmmpc.h | 59 struct atm_qos qos; member in struct:k_message
|
/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) {
|
/bionic/libc/kernel/common/linux/ |
if_link.h | 228 __u32 qos; member in struct:ifla_vf_vlan 240 __u32 qos; member in struct:ifla_vf_info
|
/external/iproute2/ |
configure | 13 struct atm_qos qos; 14 (void) text2qos("aal5,ubr:sdu=9180,rx:none",&qos,0);
|
/external/iproute2/include/linux/ |
if_link.h | 262 __u32 qos; member in struct:ifla_vf_vlan 274 __u32 qos; member in struct:ifla_vf_info
|
/external/kernel-headers/original/linux/ |
if_link.h | 265 __u32 qos; member in struct:ifla_vf_vlan 277 __u32 qos; member in struct:ifla_vf_info
|
atmdev.h | 255 ATM_VF_HASQOS, /* QOS parameters have been set */ 297 struct atm_qos qos; /* QOS */ member in struct:atm_vcc 391 int (*change_qos)(struct atm_vcc *vcc,struct atm_qos *qos,int flags);
|
/external/qemu/hw/ |
bt-l2cap.c | 502 l2cap_conf_opt_qos *qos; local 558 qos = (void *) opt->val; 561 val = qos->flags; 563 qos->flags = 0; 568 val = qos->service_type; 571 qos->service_type = L2CAP_CONF_QOS_BEST_EFFORT; 580 val = le32_to_cpu(qos->token_rate); 582 qos->token_rate = cpu_to_le32(0x100000); 585 val = le32_to_cpu(qos->token_bucket_size); 587 qos->token_bucket_size = cpu_to_le32(65500) [all...] |
bt.h | 719 hci_qos qos; member in struct:__anon9740 1416 hci_qos qos; member in struct:__anon9826 1551 hci_qos qos; member in struct:__anon9845 [all...] |
/hardware/broadcom/wlan/bcm4329/dhdutil/include/proto/ |
802.11.h | 852 #define QOS_PRIO(qos) (((qos) & QOS_PRIO_MASK) >> QOS_PRIO_SHIFT) 857 #define QOS_TID(qos) (((qos) & QOS_TID_MASK) >> QOS_TID_SHIFT) 862 #define QOS_EOSP(qos) (((qos) & QOS_EOSP_MASK) >> QOS_EOSP_SHIFT) 871 #define QOS_ACK(qos) (((qos) & QOS_ACK_MASK) >> QOS_ACK_SHIFT) [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
802.11.h | 852 #define QOS_PRIO(qos) (((qos) & QOS_PRIO_MASK) >> QOS_PRIO_SHIFT) 857 #define QOS_TID(qos) (((qos) & QOS_TID_MASK) >> QOS_TID_SHIFT) 862 #define QOS_EOSP(qos) (((qos) & QOS_EOSP_MASK) >> QOS_EOSP_SHIFT) 871 #define QOS_ACK(qos) (((qos) & QOS_ACK_MASK) >> QOS_ACK_SHIFT) [all...] |
/external/bluetooth/hcidump/parser/ |
hci.c | 68 "QoS Setup Complete", 85 "QoS Violation", 218 "QoS Setup", 461 "Requested QoS Not Supported", 466 "QoS Unacceptable Parameter", 467 "QoS Rejected", 1190 printf("Service type: %d\n", cp->qos.service_type); 1192 printf("Token rate: %d\n", btohl(cp->qos.token_rate)); 1194 printf("Peak bandwith: %d\n", btohl(cp->qos.peak_bandwidth)); 1196 printf("Latency: %d\n", btohl(cp->qos.latency)) [all...] |
/external/iproute2/ip/ |
iplink.c | 72 fprintf(stderr, " [ vlan VLANID [ qos VLAN-QOS ] ]\n"); 205 ivv.qos = 0; 208 if (matches(*argv, "qos") == 0) { 210 if (get_unsigned(&ivv.qos, *argv, 0)) { 211 invarg("Invalid \"qos\" value\n", *argv);
|
ipaddress.c | 214 if (vf_vlan->qos) 215 fprintf(fp, ", qos %d", vf_vlan->qos);
|
/external/bluetooth/bluez/lib/bluetooth/ |
hci.h | 660 hci_qos qos; member in struct:__anon1552 1796 hci_qos qos; member in struct:__anon1696 1928 hci_qos qos; member in struct:__anon1714 [all...] |
/system/bluetooth/bluez-clean-headers/bluetooth/ |
hci.h | 664 hci_qos qos; member in struct:__anon25459 1859 hci_qos qos; member in struct:__anon25603 1997 hci_qos qos; member in struct:__anon25621 [all...] |
/external/wpa_supplicant_8/src/drivers/ |
driver_nl80211.c | 4457 int qos = flags & WPA_STA_WMM; local [all...] |
/external/chromium/third_party/libjingle/source/talk/session/phone/testdata/ |
voice.rtpdump | [all...] |