OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsValidChannel
(Results
1 - 3
of
3
) sorted by null
/system/update_engine/
omaha_request_params.cc
71
if (!
IsValidChannel
(image_props_.current_channel))
73
if (!
IsValidChannel
(mutable_image_props_.target_channel))
150
if (!
IsValidChannel
(new_target_channel)) {
191
bool OmahaRequestParams::
IsValidChannel
(const string& channel) const {
omaha_request_params_unittest.cc
417
EXPECT_TRUE(params_.
IsValidChannel
("canary-channel"));
418
EXPECT_TRUE(params_.
IsValidChannel
("stable-channel"));
419
EXPECT_TRUE(params_.
IsValidChannel
("beta-channel"));
420
EXPECT_TRUE(params_.
IsValidChannel
("dev-channel"));
421
EXPECT_FALSE(params_.
IsValidChannel
("testimage-channel"));
422
EXPECT_FALSE(params_.
IsValidChannel
("dogfood-channel"));
423
EXPECT_FALSE(params_.
IsValidChannel
("some-channel"));
424
EXPECT_FALSE(params_.
IsValidChannel
(""));
omaha_request_params.h
245
bool
IsValidChannel
(const std::string& channel) const;
Completed in 343 milliseconds