HomeSort by relevance Sort by last modified time
    Searched refs:wildcard_match (Results 1 - 7 of 7) 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_performer.cc 164 bool wildcard_match = false; local
166 bool is_whitelisted = LoginUtils::IsWhitelisted(email, &wildcard_match);
173 if (connector->IsEnterpriseManaged() && wildcard_match &&
login_utils.cc     [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
cros_settings_unittest.cc 267 bool wildcard_match = false; local
269 kAccountsPrefUsers, "test@example.com", &wildcard_match));
270 EXPECT_TRUE(wildcard_match);
272 kAccountsPrefUsers, "user@example.com", &wildcard_match));
273 EXPECT_FALSE(wildcard_match);
275 kAccountsPrefUsers, "*@example.com", &wildcard_match));
276 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 204 bool wildcard_match = false; local
206 chromeos::LoginUtils::IsWhitelisted(username, &wildcard_match) &&
207 wildcard_match &&

Completed in 216 milliseconds