OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lsb_release
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/skia/tools/
install_dependencies.sh
13
if command -v
lsb_release
> /dev/null ; then
14
case $(
lsb_release
-i -s) in
25
if [ $(
lsb_release
-r -s) = '14.04' ] ; then
/external/skia/tools/
install_dependencies.sh
13
if command -v
lsb_release
> /dev/null ; then
14
case $(
lsb_release
-i -s) in
25
if [ $(
lsb_release
-r -s) = '14.04' ] ; then
/external/chromium_org/base/
sys_info_chromeos.cc
39
const char kLsbReleaseKey[] = "
LSB_RELEASE
";
59
std::string
lsb_release
, lsb_release_time_str;
local
62
env->GetVar(kLsbReleaseKey, &
lsb_release
) &&
69
// If the
LSB_RELEASE
and LSB_RELEASE_TIME environment variables are not
70
// set, fall back to a blocking read of the
lsb_release
file. This should
74
ReadFileToString(path, &
lsb_release
);
79
ParseLsbRelease(
lsb_release
);
108
void ParseLsbRelease(const std::string&
lsb_release
) {
109
// Parse and cache
lsb_release
key pairs. There should only be a handful
113
SplitStringIntoKeyValuePairs(
lsb_release
, '=', '\n', &pairs)
[
all
...]
sys_info.h
115
static void SetChromeOSVersionInfoForTest(const std::string&
lsb_release
,
/external/chromium_org/build/
install-build-deps.sh
66
# Check for
lsb_release
command in $PATH
67
if ! which
lsb_release
> /dev/null; then
68
echo "ERROR:
lsb_release
not found in \$PATH" >&2
72
lsb_release
=$(
lsb_release
--codename --short)
75
if [[ ! $
lsb_release
=~ $ubuntu_codenames ]]; then
267
if [ "$
lsb_release
" = "trusty" ]; then
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
cros_interface.py
26
lsb_release
= '/etc/lsb-release'
27
if sys.platform.startswith('linux') and os.path.exists(
lsb_release
):
28
with open(
lsb_release
, 'r') as f:
Completed in 89 milliseconds