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

1 2

  /external/wpa_supplicant_8/src/ap/
ieee802_1x.h 29 struct sta_info *sta, int authorized);
sta_info.c 999 int authorized)
1008 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
1011 if (authorized)
1033 sta->addr, authorized, dev_addr);
1035 if (authorized) {
1133 (flags & WLAN_STA_AUTHORIZED ? "[AUTHORIZED]" : ""),
    [all...]
sta_info.h 227 struct sta_info *sta, int authorized);
hostapd.h 212 int authorized, const u8 *p2p_dev_addr);
ap_drv_ops.h 30 struct sta_info *sta, int authorized);
ap_drv_ops.c 251 struct sta_info *sta, int authorized)
253 if (authorized) {
ieee802_1x.c 96 struct sta_info *sta, int authorized)
103 if (authorized) {
121 if (authorized) {
    [all...]
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.h 74 void (*set_port_authorized)(void *ctx, void *sta_ctx, int authorized);
  /external/iputils/
Makefile 237 @if [ x"$(UNAME_N)" != x"pleiades" ]; then echo "Not authorized to advance snapshot"; exit 1; fi
  /external/wpa_supplicant_8/wpa_supplicant/
notify.h 86 const u8 *mac_addr, int authorized,
wpas_glue.c 878 static void wpa_supplicant_port_cb(void *ctx, int authorized)
885 authorized ? "Authorized" : "Unauthorized");
890 authorized ? "Authorized" : "Unauthorized");
891 wpa_drv_set_supp_port(wpa_s, authorized);
notify.c 673 /* Notify listeners a new station has been authorized */
697 const u8 *mac_addr, int authorized,
700 if (authorized)
driver_i.h 357 int authorized)
361 authorized);
ibss_rsn.c 360 struct ibss_rsn_peer *peer, int authorized)
364 if (authorized) {
ap.c 446 int authorized, const u8 *p2p_dev_addr)
448 wpas_notify_sta_authorized(ctx, mac_addr, authorized, p2p_dev_addr);
    [all...]
  /frameworks/base/core/java/android/net/
IConnectivityManager.aidl 107 void setVpnPackageAuthorization(String packageName, int userId, boolean authorized);
  /external/jetty/src/java/org/eclipse/jetty/security/
SecurityHandler.java 513 boolean authorized=checkWebResourcePermissions(pathInContext, baseRequest, base_response, constraintInfo, userAuth.getUserIdentity());
514 if (!authorized)
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.h 14 typedef enum { Unauthorized, Authorized } PortStatus;
240 * port_cb - Set port authorized/unauthorized callback (optional)
242 * @authorized: Whether the supplicant port is now in authorized state
244 void (*port_cb)(void *ctx, int authorized);
  /external/wpa_supplicant_8/src/drivers/
driver_bsd.c 899 int authorized = -1; local
901 /* For now, only support setting Authorized flag */
903 authorized = 1;
905 authorized = 0;
907 if (authorized < 0)
910 return bsd_send_mlme_param(priv, authorized ?
    [all...]
driver_atheros.c 407 atheros_set_sta_authorized(void *priv, const u8 *addr, int authorized)
413 wpa_printf(MSG_DEBUG, "%s: addr=%s authorized=%d",
414 __func__, ether_sprintf(addr), authorized);
416 if (authorized)
425 __func__, authorized ? "" : "un", MAC2STR(addr));
435 /* For now, only support setting Authorized flag */
    [all...]
driver_nl80211_event.c 268 struct nlattr *authorized,
353 if (authorized && nla_get_u8(authorized)) {
354 event.assoc_info.authorized = 1;
355 wpa_printf(MSG_DEBUG, "nl80211: connection authorized");
    [all...]
driver.h 4016 int authorized; member in struct:wpa_event_data::assoc_info
    [all...]
driver_nl80211.c     [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 243 // Check if the caller is authorized.
303 public void setPackageAuthorization(String packageName, boolean authorized) {
304 // Check if the caller is authorized.
318 authorized ? AppOpsManager.MODE_ALLOWED : AppOpsManager.MODE_IGNORED);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
ConnectivityService.java     [all...]

Completed in 893 milliseconds

1 2