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

  /external/chromium_org/chrome/browser/chromeos/login/
login_utils.h 51 // this device. |wildcard_match| may be NULL. If it's present, it'll be set to
53 static bool IsWhitelisted(const std::string& username, bool* wildcard_match);
login_utils.cc 524 bool* wildcard_match) {
537 kAccountsPrefUsers, username, wildcard_match);
  /external/chromium_org/chrome/browser/chromeos/settings/
cros_settings_unittest.cc 257 bool wildcard_match = false; local
259 kAccountsPrefUsers, "test@example.com", &wildcard_match));
260 EXPECT_TRUE(wildcard_match);
262 kAccountsPrefUsers, "user@example.com", &wildcard_match));
263 EXPECT_FALSE(wildcard_match);
265 kAccountsPrefUsers, "*@example.com", &wildcard_match));
266 EXPECT_TRUE(wildcard_match);
cros_settings.cc 204 bool* wildcard_match) const {
215 if (wildcard_match)
216 *wildcard_match = false;
245 if (wildcard_match)
246 *wildcard_match = found_wildcard_match;
cros_settings.h 90 // match was via a wildcard, |wildcard_match| is set to true.
93 bool* wildcard_match) const;
  /external/chromium_org/chrome/browser/chromeos/policy/
user_cloud_policy_manager_factory_chromeos.cc 214 bool wildcard_match = false; local
216 chromeos::LoginUtils::IsWhitelisted(username, &wildcard_match) &&
217 wildcard_match &&
  /external/chromium_org/chrome/browser/chromeos/login/auth/
login_performer.cc 165 bool wildcard_match = false; local
167 bool is_whitelisted = LoginUtils::IsWhitelisted(email, &wildcard_match);
175 if (connector->IsEnterpriseManaged() && wildcard_match &&
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
v3_utl.c 678 static int wildcard_match(const unsigned char *prefix, size_t prefix_len, function
841 return wildcard_match(pattern, star - pattern,

Completed in 570 milliseconds