OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MatchesType
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/chromeos/network/
shill_property_util_unittest.cc
44
TEST_F(NetworkTypePatternTest,
MatchesType
) {
45
EXPECT_TRUE(mobile_.
MatchesType
(shill::kTypeCellular));
46
EXPECT_TRUE(mobile_.
MatchesType
(shill::kTypeWimax));
47
EXPECT_FALSE(mobile_.
MatchesType
(shill::kTypeWifi));
49
EXPECT_TRUE(wireless_.
MatchesType
(shill::kTypeWifi));
50
EXPECT_TRUE(wireless_.
MatchesType
(shill::kTypeCellular));
51
EXPECT_TRUE(wireless_.
MatchesType
(shill::kTypeWimax));
52
EXPECT_FALSE(wireless_.
MatchesType
(shill::kTypeEthernet));
shill_property_util.h
101
bool
MatchesType
(const std::string& shill_network_type) const;
104
// |other_pattern| matches (according to
MatchesType
). Thus MatchesPattern is
managed_state.cc
19
return pattern.
MatchesType
(type());
network_change_notifier_chromeos.cc
200
if (NetworkTypePattern::Ethernet().
MatchesType
(type))
shill_property_util.cc
138
if (!NetworkTypePattern::WiFi().
MatchesType
(type))
367
bool NetworkTypePattern::
MatchesType
(
network_state_handler.cc
795
if (type.
MatchesType
(shill::kTypeEthernet))
798
if (type.
MatchesType
(shill::kTypeWifi))
805
if (type.
MatchesType
(shill::kTypeWimax) &&
810
if (type.
MatchesType
(shill::kTypeCellular))
policy_applicator.cc
261
if (NetworkTypePattern::Ethernet().
MatchesType
(type))
network_configuration_handler.cc
282
if (NetworkTypePattern::Ethernet().
MatchesType
(type)) {
/external/chromium_org/chrome/browser/ui/webui/help/
help_utils_chromeos.cc
51
if (chromeos::NetworkTypePattern::Ethernet().
MatchesType
(type))
/external/chromium_org/chrome/browser/chromeos/net/
onc_utils.cc
241
if (NetworkTypePattern::Ethernet().
MatchesType
(type)) {
Completed in 3015 milliseconds