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

  /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);
  /external/iproute2/tc/
q_atm.c 45 "[ qos QOS ] [ sndbuf BYTES ]\n");
55 struct atm_qos qos; local
66 (void) text2qos("aal5,ubr:sdu=9180,rx:none",&qos,0);
85 else if (!strcmp(*argv,"qos")) {
87 if (text2qos(*argv,&qos,0) < 0) {
158 if (setsockopt(s,SOL_ATM,SO_ATMQOS,&qos,sizeof(qos)) < 0) {
  /external/iproute2/
configure 11 struct atm_qos qos;
12 (void) text2qos("aal5,ubr:sdu=9180,rx:none",&qos,0);
  /hardware/broadcom/wlan/bcm4329/src/include/proto/
802.11.h 830 #define QOS_PRIO(qos) (((qos) & QOS_PRIO_MASK) >> QOS_PRIO_SHIFT)
835 #define QOS_TID(qos) (((qos) & QOS_TID_MASK) >> QOS_TID_SHIFT)
840 #define QOS_EOSP(qos) (((qos) & QOS_EOSP_MASK) >> QOS_EOSP_SHIFT)
849 #define QOS_ACK(qos) (((qos) & QOS_ACK_MASK) >> QOS_ACK_SHIFT)
    [all...]
  /external/qemu/hw/
bt-l2cap.c 504 l2cap_conf_opt_qos *qos; local
560 qos = (void *) opt->val;
563 val = qos->flags;
565 qos->flags = 0;
570 val = qos->service_type;
573 qos->service_type = L2CAP_CONF_QOS_BEST_EFFORT;
582 val = le32_to_cpu(qos->token_rate);
584 qos->token_rate = cpu_to_le32(0x100000);
587 val = le32_to_cpu(qos->token_bucket_size);
589 qos->token_bucket_size = cpu_to_le32(65500)
    [all...]
bt.h 721 hci_qos qos; member in struct:__anon6336
1418 hci_qos qos; member in struct:__anon6422
1553 hci_qos qos; member in struct:__anon6441
    [all...]
  /external/kernel-headers/original/linux/
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/bluetooth/hcidump/parser/
hci.c 68 "QoS Setup Complete",
85 "QoS Violation",
185 "QoS Setup",
375 "Requested QoS Not Supported",
380 "QoS Unacceptable Parameter",
381 "QoS Rejected",
963 printf("Service type: %d\n", cp->qos.service_type);
965 printf("Token rate: %d\n", btohl(cp->qos.token_rate));
967 printf("Peak bandwith: %d\n", btohl(cp->qos.peak_bandwidth));
969 printf("Latency: %d\n", btohl(cp->qos.latency))
    [all...]
  /external/bluetooth/bluez/lib/bluetooth/
hci.h 601 hci_qos qos; member in struct:__anon1722
1628 hci_qos qos; member in struct:__anon1854
1760 hci_qos qos; member in struct:__anon1872
    [all...]
  /hardware/ti/wlan/wl1271/TWD/TWDriver/
TWDriver.h 53 /** @defgroup QoS Quality Of Service group
54 * \brief The Quality of Service group includes the list of functions which perform the TWD QoS
378 * Qos header: 0/2 bytes, for QoS-data or QoS-Null the two QoS bytes are added.
381 * HT control: 0/4 added only for packte support QoS and HT
1517 TI_UINT16 qos; \/**< *\/ member in struct:__anon10579
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/TWDriver/
TWDriver.h 53 /** @defgroup QoS Quality Of Service group
54 * \brief The Quality of Service group includes the list of functions which perform the TWD QoS
370 * Qos header: 0/2 bytes, for QoS-data or QoS-Null the two QoS bytes are added.
373 * HT control: 0/4 added only for packte support QoS and HT
1485 TI_UINT16 qos; \/**< *\/ member in struct:__anon17297
    [all...]

Completed in 230 milliseconds