HomeSort by relevance Sort by last modified time
    Searched refs:lsb_release (Results 1 - 10 of 10) sorted by null

  /external/skia/tools/
install_dependencies.sh 24 if command -v lsb_release > /dev/null ; then
25 case $(lsb_release -i -s) in
39 if [ $(lsb_release -r -s) = '14.04' ] ; then
  /external/skqp/tools/
install_dependencies.sh 24 if command -v lsb_release > /dev/null ; then
25 case $(lsb_release -i -s) in
39 if [ $(lsb_release -r -s) = '14.04' ] ; then
  /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...]
sys_info.h 142 static void SetChromeOSVersionInfoForTest(const std::string& lsb_release,
  /external/chromium-trace/catapult/common/py_utils/py_utils/
__init__.py 22 lsb_release = '/etc/lsb-release'
23 if sys.platform.startswith('linux') and os.path.exists(lsb_release):
24 with open(lsb_release, 'r') as f:
  /external/autotest/server/site_tests/platform_ExternalUSBBootStress/
platform_ExternalUSBBootStress.py 80 lsb_release = host.run('cat /etc/lsb-release').stdout.split('\n')
83 for line in lsb_release:
  /external/ltp/
ver_linux 23 echo 'lsb_release -a'
24 lsb_release -a 2> /dev/null
  /external/autotest/server/cros/
factory_install_test.py 321 lsb_release = os.path.join(self.tmpdir, "lsb-release")
322 dut_client.get_file("/etc/lsb-release", lsb_release)
324 data = open(lsb_release).read()
  /external/autotest/client/site_tests/logging_CrashSender/
logging_CrashSender.py 26 lsb_release = utils.read_file('/etc/lsb-release')
27 board_match = re.search(r'CHROMEOS_RELEASE_BOARD=(.*)', lsb_release)
  /external/autotest/client/cros/crash/
user_crash_test.py 375 lsb_release = utils.read_file('/etc/lsb-release')
377 r'CHROMEOS_RELEASE_VERSION=(.*)', lsb_release).group(1)

Completed in 912 milliseconds