Lines Matching refs:options

84 	l2cap_config_options& options)
102 options.mtu = le16toh(value.mtu);
103 options.mtu_set = true;
107 options.flush_timeout = le16toh(value.flush_timeout);
108 options.flush_timeout_set = true;
112 options.qos.flags = value.qos.flags;
113 options.qos.service_type = value.qos.service_type;
114 options.qos.token_rate = le32toh(value.qos.token_rate);
115 options.qos.token_bucket_size = le32toh(value.qos.token_bucket_size);
116 options.qos.peak_bandwidth = le32toh(value.qos.peak_bandwidth);
117 options.qos.access_latency = le32toh(value.qos.access_latency);
118 options.qos.delay_variation = le32toh(value.qos.delay_variation);
119 options.qos_set = true;
127 if (options.rejected == NULL)
128 options.rejected = gBufferModule->create(128);
129 gBufferModule->append_cloned(options.rejected, buffer, offset,
157 // Read options (if any).
158 l2cap_config_options options = {};
159 parse_configuration_options(buffer, sizeof(l2cap_configuration_req), length, options);
161 if (options.rejected != NULL) {
164 l2cap_configuration_rsp::RESULT_UNKNOWN_OPTION, options.rejected);
169 options.mtu_set ? &options.mtu : NULL,
170 options.flush_timeout_set ? &options.flush_timeout : NULL,
171 options.qos_set ? &options.qos : NULL);
194 // Read options (if any).
195 l2cap_config_options options = {};
196 parse_configuration_options(buffer, sizeof(l2cap_configuration_rsp), length, options);
198 if (options.rejected != NULL) {
206 options.mtu_set ? &options.mtu : NULL,
207 options.flush_timeout_set ? &options.flush_timeout : NULL,
208 options.qos_set ? &options.qos : NULL);