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

1 2

  /external/wpa_supplicant_8/src/ap/
neighbor_db.c 40 wpabuf_free(nr->lci);
41 nr->lci = NULL;
67 const struct wpabuf *nr, const struct wpabuf *lci,
87 if (lci && wpabuf_len(lci)) {
88 entry->lci = wpabuf_dup(lci);
89 if (!entry->lci || os_get_time(&entry->lci_date))
neighbor_db.h 18 const struct wpabuf *nr, const struct wpabuf *lci,
rrm.c 29 wpa_printf(MSG_DEBUG, "RRM: LCI request (token %u) timed out",
39 wpa_printf(MSG_DEBUG, "Unexpected LCI report, token %u", token);
45 wpa_printf(MSG_DEBUG, "LCI report token %u len %zu", token, len);
176 /* LCI age is calculated in 10th of a second units. */
189 if (send_lci && nr->lci)
190 len += 2 + wpabuf_len(nr->lci);
201 struct wpa_ssid_value *ssid, u8 lci,
230 send_lci = (lci != 0) && hostapd_check_lci_age(nr, lci_max_age);
247 if (send_lci && nr->lci) {
249 wpabuf_put_u8(buf, wpabuf_len(nr->lci));
287 u8 lci = 0, civic = 0; \/* Measurement tokens *\/ local
    [all...]
hostapd.h 108 struct wpabuf *lci; member in struct:hostapd_neighbor_entry
110 /* LCI update time */
ap_config.h 750 struct wpabuf *lci; member in struct:hostapd_config
ap_config.c 637 wpabuf_free(conf->lci);
hostapd.c     [all...]
  /hardware/interfaces/wifi/1.0/
IWifiRttController.hal 98 * API to configure the LCI(Location civic information).
102 * @param lci Instance of |RttLciInformation|.
111 setLci(CommandId cmdId, RttLciInformation lci) generates (WifiStatus status);
types.hal     [all...]
  /hardware/interfaces/wifi/1.1/default/
wifi_rtt_controller.h 58 const RttLciInformation& lci,
82 WifiStatus setLciInternal(uint32_t cmd_id, const RttLciInformation& lci);
wifi_rtt_controller.cpp 101 const RttLciInformation& lci,
108 lci);
228 const RttLciInformation& lci) {
230 if (!hidl_struct_util::convertHidlRttLciInformationToLegacy(lci,
hidl_struct_util.cpp     [all...]
  /prebuilts/go/darwin-x86/src/unicode/
example_test.go 179 const lci = 'i'
180 fmt.Printf("%#U\n", t.ToLower(lci))
181 fmt.Printf("%#U\n", t.ToTitle(lci))
182 fmt.Printf("%#U\n", t.ToUpper(lci))
  /prebuilts/go/linux-x86/src/unicode/
example_test.go 179 const lci = 'i'
180 fmt.Printf("%#U\n", t.ToLower(lci))
181 fmt.Printf("%#U\n", t.ToTitle(lci))
182 fmt.Printf("%#U\n", t.ToUpper(lci))
  /hardware/qcom/wlan/qcwcn/wifi_hal/
rtt.cpp 201 // API to configure the LCI. Used in RTT Responder mode only
203 wifi_lci_information *lci)
214 if (lci == NULL) {
215 ALOGE("%s: NULL lci pointer provided."
234 ret = lowiWifiHalApi->rtt_set_lci(id, iface, lci);
wifihal_internal.h 121 // API to configure the LCI. Used in RTT Responder mode only
124 wifi_lci_information *lci);
  /hardware/libhardware_legacy/include/hardware_legacy/
rtt.h 93 byte LCI_request; // 1: request LCI, 0: do not request LCI
144 wifi_information_element *LCI; // for 11mc only
198 byte lci_support; // if initiator supports LCI request. Applies to 2-sided RTT
240 /* API for setting LCI/LCR information to be provided to a requestor */
268 // API to configure the LCI. Used in RTT Responder mode only
270 wifi_lci_information *lci);
wifi_hal.h 308 wifi_lci_information *lci);
  /external/wpa_supplicant_8/wpa_supplicant/
rrm.c 120 * @lci: if set, neighbor request will include LCI request
136 int lci, int civic,
172 (lci ? 2 + MEASURE_REQUEST_LCI_LEN : 0) +
193 if (lci) {
211 /* IEEE P802.11-REVmc/D5.0 9.4.2.21.10 - LCI request */
316 if (!wpa_s->lci)
327 "Not building LCI report - bad location subject");
332 wpa_hexdump(MSG_DEBUG, "LCI request subelements", request, len);
341 /* LCI age is calculated in 10th of a second units. *
    [all...]
wpa_supplicant_i.h 1108 * Content of a measurement report element with type 8 (LCI),
1111 struct wpabuf *lci; member in struct:wpa_supplicant
    [all...]
ctrl_iface.c 318 struct wpabuf *lci; local
321 wpabuf_free(wpa_s->lci);
322 wpa_s->lci = NULL;
326 lci = wpabuf_parse_bin(cmd);
327 if (!lci)
331 wpabuf_free(lci);
335 wpabuf_free(wpa_s->lci);
336 wpa_s->lci = lci;
625 } else if (os_strcasecmp(cmd, "lci") == 0)
8883 char lci[256 * 2 + 1]; local
8963 int ret, lci = 0, civic = 0; local
    [all...]
sme.c 194 if (wpa_s->lci)
    [all...]
  /external/wpa_supplicant_8/hostapd/
config_file.c     [all...]
ctrl_iface.c 2285 struct wpabuf *nr, *lci = NULL, *civic = NULL; local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiVendorHal.java     [all...]

Completed in 271 milliseconds

1 2