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

  /external/wpa_supplicant_8/src/fst/
fst_iface.h 18 struct fst_iface { struct
28 struct fst_iface * fst_iface_create(struct fst_group *g, const char *ifname,
32 void fst_iface_delete(struct fst_iface *i);
34 static inline struct fst_group * fst_iface_get_group(struct fst_iface *i)
39 static inline const char * fst_iface_get_name(struct fst_iface *i)
44 static inline const u8 * fst_iface_get_addr(struct fst_iface *i)
49 static inline const char * fst_iface_get_group_id(struct fst_iface *i)
54 static inline u8 fst_iface_get_priority(struct fst_iface *i)
59 static inline u32 fst_iface_get_llt(struct fst_iface *i)
64 static inline const struct wpabuf * fst_iface_get_mbie(struct fst_iface *i
    [all...]
fst_group.h 23 dl_list_for_each((i), &(g)->ifaces, struct fst_iface, group_lentry)
26 void fst_group_attach_iface(struct fst_group *g, struct fst_iface *i);
27 void fst_group_detach_iface(struct fst_group *g, struct fst_iface *i);
37 static inline struct fst_iface * fst_group_first_iface(struct fst_group *g)
39 return dl_list_first(&g->ifaces, struct fst_iface, group_lentry);
48 struct fst_iface * fst_group_get_iface_by_name(struct fst_group *g,
50 struct fst_iface *
51 fst_group_get_peer_other_connection(struct fst_iface *iface,
fst.h 33 struct fst_iface;
174 int (*on_iface_added)(struct fst_iface *i);
179 void (*on_iface_removed)(struct fst_iface *i);
199 void (*on_event)(enum fst_event_type event_type, struct fst_iface *i,
225 struct fst_iface * fst_attach(const char *ifname,
234 void fst_detach(struct fst_iface *iface);
243 void fst_rx_action(struct fst_iface *iface, const struct ieee80211_mgmt *mgmt,
251 void fst_notify_peer_connected(struct fst_iface *iface, const u8 *addr);
258 void fst_notify_peer_disconnected(struct fst_iface *iface, const u8 *addr);
271 Boolean fst_are_ifaces_aggregated(struct fst_iface *iface1
    [all...]
fst_iface.c 15 struct fst_iface * fst_iface_create(struct fst_group *g, const char *ifname,
20 struct fst_iface *i;
44 void fst_iface_delete(struct fst_iface *i)
52 Boolean fst_iface_is_connected(struct fst_iface *iface, const u8 *addr,
66 void fst_iface_attach_mbie(struct fst_iface *i, struct wpabuf *mbie)
73 enum mb_band_id fst_iface_get_band_id(struct fst_iface *i)
fst_session.h 14 struct fst_iface;
21 void fst_session_global_on_iface_detached(struct fst_iface *iface);
26 void fst_session_set_iface(struct fst_session *s, struct fst_iface *iface,
34 void fst_session_handle_action(struct fst_session *s, struct fst_iface *iface,
42 struct fst_iface * fst_session_get_iface(struct fst_session *s, Boolean is_old);
55 void fst_session_on_action_rx(struct fst_iface *iface,
fst.c 22 static void fst_ctrl_iface_notify_peer_state_change(struct fst_iface *iface,
38 struct fst_iface * fst_attach(const char *ifname, const u8 *own_addr,
44 struct fst_iface *iface = NULL;
90 void fst_detach(struct fst_iface *iface)
166 void fst_rx_action(struct fst_iface *iface, const struct ieee80211_mgmt *mgmt,
178 void fst_notify_peer_connected(struct fst_iface *iface, const u8 *addr)
194 void fst_notify_peer_disconnected(struct fst_iface *iface, const u8 *addr)
210 Boolean fst_are_ifaces_aggregated(struct fst_iface *iface1,
211 struct fst_iface *iface2)
fst_group.c 90 static unsigned fst_fill_iface_mb_ies(struct fst_iface *f, struct wpabuf *buf)
128 struct fst_iface *i)
131 struct fst_iface *f;
232 struct fst_iface * fst_group_get_iface_by_name(struct fst_group *g,
235 struct fst_iface *f;
279 static struct fst_iface *
280 fst_group_get_peer_other_connection_1(struct fst_iface *iface,
285 struct fst_iface *other_iface;
334 static struct fst_iface *
335 fst_group_get_peer_other_connection_2(struct fst_iface *iface
    [all...]
fst_session.c 61 struct fst_iface *new_iface;
62 struct fst_iface *old_iface;
278 struct fst_iface *iface =
358 static void fst_session_handle_setup_request(struct fst_iface *iface,
364 struct fst_iface *new_iface = NULL;
501 struct fst_iface *iface,
605 struct fst_iface *iface,
640 struct fst_iface *iface,
704 struct fst_iface *iface,
787 void fst_session_set_iface(struct fst_session *s, struct fst_iface *iface
    [all...]
fst_ctrl_iface.c 81 static void fst_ctrl_iface_notify(struct fst_iface *f, u32 session_id,
174 struct fst_iface *new_iface, *old_iface;
512 struct fst_iface *f;
563 struct fst_iface *iface = NULL;
599 struct fst_iface *f;
660 static int print_band(unsigned num, struct fst_iface *iface, const u8 *addr,
694 static void fst_ctrl_iface_on_iface_state_changed(struct fst_iface *i,
711 static int fst_ctrl_iface_on_iface_added(struct fst_iface *i)
718 static void fst_ctrl_iface_on_iface_removed(struct fst_iface *i)
725 struct fst_iface *i, struct fst_session *s
    [all...]
  /external/wpa_supplicant_8/src/ap/
hostapd.h 351 struct fst_iface *fst;
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant_i.h 1084 struct fst_iface *fst;
    [all...]
  /external/wpa_supplicant_8/hostapd/
Android.mk 299 OBJS += src/fst/fst_iface.c

Completed in 155 milliseconds