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

1 2

  /external/chromium_org/third_party/libjingle/source/talk/base/
winfirewall_unittest.cc 39 bool authorized; local
41 EXPECT_FALSE(fw.QueryAuthorized("bogus.exe", &authorized));
45 EXPECT_TRUE(fw.QueryAuthorized("bogus.exe", &authorized));
48 // about whether we're authorized. It will depend on the settings of the
52 EXPECT_FALSE(fw.QueryAuthorized("bogus.exe", &authorized));
winfirewall.h 55 bool QueryAuthorized(const char* filename, bool* authorized) const;
56 bool QueryAuthorizedW(const wchar_t* filename, bool* authorized) const;
59 bool authorized, HRESULT* result);
61 bool authorized, HRESULT* result);
winfirewall.cc 92 bool WinFirewall::QueryAuthorized(const char* filename, bool* authorized)
94 return QueryAuthorizedW(ToUtf16(filename).c_str(), authorized);
97 bool WinFirewall::QueryAuthorizedW(const wchar_t* filename, bool* authorized)
99 *authorized = false;
119 *authorized = (fwEnabled != VARIANT_FALSE);
122 // No entry in list of authorized apps
135 bool authorized,
138 ToUtf16(friendly_name).c_str(), authorized, result);
143 bool authorized,
160 hr = app->put_Enabled(authorized ? VARIANT_TRUE : VARIANT_FALSE)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
winfirewall.h 55 bool QueryAuthorized(const char* filename, bool* authorized) const;
56 bool QueryAuthorizedW(const wchar_t* filename, bool* authorized) const;
59 bool authorized, HRESULT* result);
61 bool authorized, HRESULT* result);
winfirewall.cc 92 bool WinFirewall::QueryAuthorized(const char* filename, bool* authorized)
94 return QueryAuthorizedW(ToUtf16(filename).c_str(), authorized);
97 bool WinFirewall::QueryAuthorizedW(const wchar_t* filename, bool* authorized)
99 *authorized = false;
119 *authorized = (fwEnabled != VARIANT_FALSE);
122 // No entry in list of authorized apps
135 bool authorized,
138 ToUtf16(friendly_name).c_str(), authorized, result);
143 bool authorized,
160 hr = app->put_Enabled(authorized ? VARIANT_TRUE : VARIANT_FALSE)
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/sasl/
AuthorizeCallback.java 43 * 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/src/ap/
ieee802_1x.h 29 struct sta_info *sta, int authorized);
sta_info.h 186 struct sta_info *sta, int authorized);
hostapd.h 201 int authorized, const u8 *p2p_dev_addr);
sta_info.c 889 int authorized)
897 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
915 if (authorized) {
937 sta->addr, authorized, dev_addr);
ap_drv_ops.h 28 struct sta_info *sta, int authorized);
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm.h 69 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 84 const u8 *mac_addr, int authorized,
notify.c 555 /* Notify listeners a new station has been authorized */
583 const u8 *mac_addr, int authorized,
586 if (authorized)
wpas_glue.c 716 static void wpa_supplicant_port_cb(void *ctx, int authorized)
723 authorized ? "Authorized" : "Unauthorized");
728 authorized ? "Authorized" : "Unauthorized");
729 wpa_drv_set_supp_port(wpa_s, authorized);
driver_i.h 336 int authorized)
340 authorized);
  /external/chromium_org/native_client_sdk/src/examples/demo/drive/
example.js 47 // if the user has already authorized the app, and the token is cached.
  /external/chromium_org/chrome/browser/resources/image_loader/
request.js 197 // Fetch the image via authorized XHR and parse it.
253 // Fetches the access token and makes an authorized call. If refresh is true,
286 * Fetches data using authorized XmlHttpRequest with the provided OAuth2 token.
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
upload_page.js 97 if (this.client_.authorized) {
126 (this.files_.length > 0) && this.client_.authorized;
picasa_client.js 125 * Whether client is already authorized.
128 get authorized() {
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.h 14 typedef enum { Unauthorized, Authorized } PortStatus;
212 * port_cb - Set port authorized/unauthorized callback (optional)
214 * @authorized: Whether the supplicant port is now in authorized state
216 void (*port_cb)(void *ctx, int authorized);
  /external/wpa_supplicant_8/src/drivers/
driver_bsd.c 530 int authorized = -1; local
532 /* For now, only support setting Authorized flag */
534 authorized = 1;
536 authorized = 0;
538 if (authorized < 0)
541 return bsd_send_mlme_param(priv, authorized ?
    [all...]
driver_madwifi.c 355 madwifi_set_sta_authorized(void *priv, const u8 *addr, int authorized)
361 wpa_printf(MSG_DEBUG, "%s: addr=%s authorized=%d",
362 __func__, ether_sprintf(addr), authorized);
364 if (authorized)
373 __func__, authorized ? "" : "un", MAC2STR(addr));
383 /* For now, only support setting Authorized flag */
    [all...]
  /external/chromium_org/google_apis/drive/
drive_api_parser.h 180 // Returns whether this application is authorized to access data on the
236 void set_authorized(bool authorized) { authorized_ = authorized; }

Completed in 548 milliseconds

1 2