/external/ppp/pppd/plugins/pppoatm/ |
D | text2qos.c | 125 int text2qos(const char *text,struct atm_qos *qos,int flags) in text2qos() argument 153 if (qos && !(flags & T2Q_DEFAULTS)) memset(qos,0,sizeof(*qos)); in text2qos() 154 if (qos) qos->txtp.traffic_class = qos->rxtp.traffic_class = traffic_class; in text2qos() 155 if (qos && aal) qos->aal = aal; in text2qos() 157 if (params(&text,qos ? &qos->txtp : NULL,qos ? &qos->rxtp : NULL)) in text2qos() 163 if (qos) qos->txtp.traffic_class = ATM_NONE; in text2qos() 167 if (params(&text,qos ? &qos->txtp : NULL,NULL)) return -1; in text2qos() 177 if (!fetch(&text,":none",NULL) && qos) qos->rxtp.traffic_class = ATM_NONE; in text2qos() 178 else if (params(&text,qos ? &qos->rxtp : NULL,NULL)) return -1; in text2qos()
|
D | pppoatm.c | 134 struct atm_qos qos; in connect_pppoatm() local 144 memset(&qos, 0, sizeof qos); in connect_pppoatm() 145 qos.txtp.traffic_class = qos.rxtp.traffic_class = ATM_UBR; in connect_pppoatm() 148 if (text2qos(qosstr, &qos, 0)) in connect_pppoatm() 150 qos.txtp.max_sdu = lcp_allowoptions[0].mru + pppoatm_overhead(); in connect_pppoatm() 151 qos.rxtp.max_sdu = lcp_wantoptions[0].mru + pppoatm_overhead(); in connect_pppoatm() 152 qos.aal = ATM_AAL5; in connect_pppoatm() 153 if (setsockopt(fd, SOL_ATM, SO_ATMQOS, &qos, sizeof(qos)) < 0) in connect_pppoatm()
|
D | 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);
|
/external/iproute2/tc/ |
D | q_atm.c | 53 struct atm_qos qos; in atm_parse_class_opt() local 64 (void) text2qos("aal5,ubr:sdu=9180,rx:none",&qos,0); in atm_parse_class_opt() 85 if (text2qos(*argv,&qos,0) < 0) { in atm_parse_class_opt() 156 if (setsockopt(s,SOL_ATM,SO_ATMQOS,&qos,sizeof(qos)) < 0) { in atm_parse_class_opt()
|
/external/iproute2/ |
D | configure | 13 struct atm_qos qos; 14 (void) text2qos("aal5,ubr:sdu=9180,rx:none",&qos,0);
|
D | ChangeLog | 474 http://luxik.cdi.cz/~devik/qos/htb/v3/htb_tc_overhead.diff
|
/external/qemu/hw/ |
D | bt-l2cap.c | 502 l2cap_conf_opt_qos *qos; in l2cap_channel_config() local 558 qos = (void *) opt->val; in l2cap_channel_config() 561 val = qos->flags; in l2cap_channel_config() 563 qos->flags = 0; in l2cap_channel_config() 568 val = qos->service_type; in l2cap_channel_config() 571 qos->service_type = L2CAP_CONF_QOS_BEST_EFFORT; in l2cap_channel_config() 580 val = le32_to_cpu(qos->token_rate); in l2cap_channel_config() 582 qos->token_rate = cpu_to_le32(0x100000); in l2cap_channel_config() 585 val = le32_to_cpu(qos->token_bucket_size); in l2cap_channel_config() 587 qos->token_bucket_size = cpu_to_le32(65500); in l2cap_channel_config()
|
D | bt.h | 719 hci_qos qos; member 1416 hci_qos qos; member 1551 hci_qos qos; member
|
/external/kernel-headers/original/linux/ |
D | if_link.h | 265 __u32 qos; member 277 __u32 qos; member
|
D | atmdev.h | 297 struct atm_qos qos; /* QOS */ member 391 int (*change_qos)(struct atm_vcc *vcc,struct atm_qos *qos,int flags);
|
/external/iproute2/include/linux/ |
D | if_link.h | 262 __u32 qos; member 274 __u32 qos; member
|
/external/bluetooth/hcidump/parser/ |
D | hci.c | 1190 printf("Service type: %d\n", cp->qos.service_type); in qos_setup_dump() 1192 printf("Token rate: %d\n", btohl(cp->qos.token_rate)); in qos_setup_dump() 1194 printf("Peak bandwith: %d\n", btohl(cp->qos.peak_bandwidth)); in qos_setup_dump() 1196 printf("Latency: %d\n", btohl(cp->qos.latency)); in qos_setup_dump() 1198 printf("Delay variation: %d\n", btohl(cp->qos.delay_variation)); in qos_setup_dump() 3171 printf("Service type: %d\n", evt->qos.service_type); in qos_setup_complete_dump() 3173 printf("Token rate: %d\n", btohl(evt->qos.token_rate)); in qos_setup_complete_dump() 3175 printf("Peak bandwith: %d\n", btohl(evt->qos.peak_bandwidth)); in qos_setup_complete_dump() 3177 printf("Latency: %d\n", btohl(evt->qos.latency)); in qos_setup_complete_dump() 3179 printf("Delay variation: %d\n", btohl(evt->qos.delay_variation)); in qos_setup_complete_dump() [all …]
|
/external/iproute2/ip/ |
D | iplink.c | 205 ivv.qos = 0; in iplink_parse_vf() 210 if (get_unsigned(&ivv.qos, *argv, 0)) { in iplink_parse_vf()
|
D | ipaddress.c | 214 if (vf_vlan->qos) in print_vfinfo() 215 fprintf(fp, ", qos %d", vf_vlan->qos); in print_vfinfo()
|
/external/bluetooth/bluez/lib/bluetooth/ |
D | hci.h | 660 hci_qos qos; member 1796 hci_qos qos; member 1928 hci_qos qos; member
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_nl80211.c | 4457 int qos = flags & WPA_STA_WMM; in wpa_driver_nl80211_hapd_send_eapol() local 4459 len = sizeof(*hdr) + (qos ? 2 : 0) + sizeof(rfc1042_header) + 2 + in wpa_driver_nl80211_hapd_send_eapol() 4473 if (qos) { in wpa_driver_nl80211_hapd_send_eapol() 4483 if (qos) { in wpa_driver_nl80211_hapd_send_eapol()
|
/external/chromium/third_party/libjingle/source/talk/session/phone/testdata/ |
D | voice.rtpdump | 89 …��trnkjjs��}x|��������������njntxqecejlnyz��������������rhhjmlimxzxooz����qos}lgo��������������…
|