Searched refs:wildcard_match (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/chromeos/settings/
H A Dcros_settings_unittest.cc257 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);
H A Dcros_settings.cc204 bool* wildcard_match) const {
215 if (wildcard_match)
216 *wildcard_match = false;
245 if (wildcard_match)
246 *wildcard_match = found_wildcard_match;
H A Dcros_settings.h90 // match was via a wildcard, |wildcard_match| is set to true.
93 bool* wildcard_match) const;
/external/chromium_org/chrome/browser/chromeos/login/
H A Dlogin_utils.h51 // 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);
H A Dlogin_utils.cc524 bool* wildcard_match) {
537 kAccountsPrefUsers, username, wildcard_match);
523 IsWhitelisted(const std::string& username, bool* wildcard_match) argument
/external/chromium_org/chrome/browser/chromeos/policy/
H A Duser_cloud_policy_manager_factory_chromeos.cc214 bool wildcard_match = false; local
216 chromeos::LoginUtils::IsWhitelisted(username, &wildcard_match) &&
217 wildcard_match &&
/external/chromium_org/chrome/browser/chromeos/login/auth/
H A Dlogin_performer.cc165 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/
H A Dv3_utl.c678 static int wildcard_match(const unsigned char *prefix, size_t prefix_len, function
841 return wildcard_match(pattern, star - pattern,

Completed in 190 milliseconds