Searched refs:authorized (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium_org/third_party/webrtc/base/
H A Dwinfirewall_unittest.cc22 bool authorized; local
24 EXPECT_FALSE(fw.QueryAuthorized("bogus.exe", &authorized));
28 EXPECT_TRUE(fw.QueryAuthorized("bogus.exe", &authorized));
31 // about whether we're authorized. It will depend on the settings of the
35 EXPECT_FALSE(fw.QueryAuthorized("bogus.exe", &authorized));
H A Dwinfirewall.h38 bool QueryAuthorized(const char* filename, bool* authorized) const;
39 bool QueryAuthorizedW(const wchar_t* filename, bool* authorized) const;
42 bool authorized, HRESULT* result);
44 bool authorized, HRESULT* result);
H A Dwinfirewall.cc75 bool WinFirewall::QueryAuthorized(const char* filename, bool* authorized)
77 return QueryAuthorizedW(ToUtf16(filename).c_str(), authorized);
80 bool WinFirewall::QueryAuthorizedW(const wchar_t* filename, bool* authorized)
82 *authorized = false;
102 *authorized = (fwEnabled != VARIANT_FALSE);
105 // No entry in list of authorized apps
118 bool authorized,
121 ToUtf16(friendly_name).c_str(), authorized, result);
126 bool authorized,
143 hr = app->put_Enabled(authorized
116 AddApplication(const char* filename, const char* friendly_name, bool authorized, HRESULT* result) argument
124 AddApplicationW(const wchar_t* filename, const wchar_t* friendly_name, bool authorized, HRESULT* result) argument
[all...]
/external/smack/src/org/apache/harmony/javax/security/sasl/
H A DAuthorizeCallback.java43 * Store authorized Serialized field.
45 private boolean authorized; field in class:AuthorizeCallback
63 return (authorized ? authorizedID : null);
67 return authorized;
71 authorized = ok;
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_1x.h29 struct sta_info *sta, int authorized);
H A Dsta_info.h198 struct sta_info *sta, int authorized);
H A Dsta_info.c940 int authorized)
949 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
967 if (authorized) {
1002 sta->addr, authorized, dev_addr);
939 ap_sta_set_authorized(struct hostapd_data *hapd, struct sta_info *sta, int authorized) argument
H A Dhostapd.h202 int authorized, const u8 *p2p_dev_addr);
/external/wpa_supplicant_8/hostapd/src/eapol_auth/
H A Deapol_auth_sm.h70 void (*set_port_authorized)(void *ctx, void *sta_ctx, int authorized);
/external/wpa_supplicant_8/src/ap/
H A Dieee802_1x.h29 struct sta_info *sta, int authorized);
H A Dsta_info.h198 struct sta_info *sta, int authorized);
H A Dsta_info.c940 int authorized)
949 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
967 if (authorized) {
1002 sta->addr, authorized, dev_addr);
939 ap_sta_set_authorized(struct hostapd_data *hapd, struct sta_info *sta, int authorized) argument
/external/wpa_supplicant_8/src/eapol_auth/
H A Deapol_auth_sm.h70 void (*set_port_authorized)(void *ctx, void *sta_ctx, int authorized);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_1x.h29 struct sta_info *sta, int authorized);
H A Dsta_info.h198 struct sta_info *sta, int authorized);
H A Dsta_info.c940 int authorized)
949 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
967 if (authorized) {
1002 sta->addr, authorized, dev_addr);
939 ap_sta_set_authorized(struct hostapd_data *hapd, struct sta_info *sta, int authorized) argument
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_auth/
H A Deapol_auth_sm.h70 void (*set_port_authorized)(void *ctx, void *sta_ctx, int authorized);
/external/iputils/
H A DMakefile237 @if [ x"$(UNAME_N)" != x"pleiades" ]; then echo "Not authorized to advance snapshot"; exit 1; fi
/external/wpa_supplicant_8/wpa_supplicant/
H A Dnotify.h85 const u8 *mac_addr, int authorized,
H A Dnotify.c552 /* Notify listeners a new station has been authorized */
575 const u8 *mac_addr, int authorized,
578 if (authorized)
574 wpas_notify_sta_authorized(struct wpa_supplicant *wpa_s, const u8 *mac_addr, int authorized, const u8 *p2p_dev_addr) argument
H A Dwpas_glue.c769 static void wpa_supplicant_port_cb(void *ctx, int authorized) argument
776 authorized ? "Authorized" : "Unauthorized");
781 authorized ? "Authorized" : "Unauthorized");
782 wpa_drv_set_supp_port(wpa_s, authorized);
/external/wpa_supplicant_8/hostapd/src/eapol_supp/
H A Deapol_supp_sm.h229 * port_cb - Set port authorized/unauthorized callback (optional)
231 * @authorized: Whether the supplicant port is now in authorized state
233 void (*port_cb)(void *ctx, int authorized);
/external/wpa_supplicant_8/src/eapol_supp/
H A Deapol_supp_sm.h229 * port_cb - Set port authorized/unauthorized callback (optional)
231 * @authorized: Whether the supplicant port is now in authorized state
233 void (*port_cb)(void *ctx, int authorized);
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_supp/
H A Deapol_supp_sm.h229 * port_cb - Set port authorized/unauthorized callback (optional)
231 * @authorized: Whether the supplicant port is now in authorized state
233 void (*port_cb)(void *ctx, int authorized);
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_madwifi.c351 madwifi_set_sta_authorized(void *priv, const u8 *addr, int authorized) argument
357 wpa_printf(MSG_DEBUG, "%s: addr=%s authorized=%d",
358 __func__, ether_sprintf(addr), authorized);
360 if (authorized)
369 __func__, authorized ? "" : "un", MAC2STR(addr));

Completed in 5506 milliseconds

123