OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:lsb_release
(Results
1 - 3
of
3
) sorted by null
/system/update_engine/common/
hwid_override.cc
38
brillo::KeyValueStore
lsb_release
;
local
39
lsb_release
.Load(base::FilePath(root.value() + "/etc/lsb-release"));
41
if (
lsb_release
.GetString(kHwidOverrideKey, &result))
/system/update_engine/
image_properties_chromeos.cc
91
brillo::KeyValueStore
lsb_release
;
local
92
LoadLsbRelease(LsbReleaseSource::kSystem, &
lsb_release
);
94
lsb_release
, kLsbReleaseUpdateChannelKey, "stable-channel");
101
LoadLsbRelease(LsbReleaseSource::kStateful, &
lsb_release
);
107
GetStringWithDefault(
lsb_release
, kLsbReleaseAppIdKey, kDefaultAppId);
110
lsb_release
, kLsbReleaseBoardAppIdKey, release_app_id);
112
lsb_release
, kLsbReleaseCanaryAppIdKey, release_app_id);
113
result.board = GetStringWithDefault(
lsb_release
, kLsbReleaseBoardKey, "");
114
result.version = GetStringWithDefault(
lsb_release
, kLsbReleaseVersionKey, "");
116
GetStringWithDefault(
lsb_release
, kLsbReleaseAutoUpdateServerKey
124
brillo::KeyValueStore
lsb_release
;
local
137
brillo::KeyValueStore
lsb_release
;
local
[
all
...]
/external/libchrome/base/
sys_info_chromeos.cc
42
const char kLsbReleaseKey[] = "
LSB_RELEASE
";
62
std::string
lsb_release
, lsb_release_time_str;
local
65
env->GetVar(kLsbReleaseKey, &
lsb_release
) &&
72
// If the
LSB_RELEASE
and LSB_RELEASE_TIME environment variables are not
73
// set, fall back to a blocking read of the
lsb_release
file. This should
77
ReadFileToString(path, &
lsb_release
);
82
ParseLsbRelease(
lsb_release
);
111
void ParseLsbRelease(const std::string&
lsb_release
) {
112
// Parse and cache
lsb_release
key pairs. There should only be a handful
116
SplitStringIntoKeyValuePairs(
lsb_release
, '=', '\n', &pairs)
[
all
...]
Completed in 68 milliseconds