HomeSort by relevance Sort by last modified time
    Searched refs:osname (Results 1 - 25 of 71) sorted by null

1 2 3

  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
util.py 65 (osname, host, release, version, machine) = os.uname()
69 osname = string.lower(osname)
70 osname = string.replace(osname, '/', '')
74 if osname[:5] == "linux":
78 return "%s-%s" % (osname, machine)
79 elif osname[:5] == "sunos":
81 osname = "solaris"
88 # fall through to standard osname-release-machine representatio
    [all...]
ccompiler.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
util.py 65 (osname, host, release, version, machine) = os.uname()
69 osname = string.lower(osname)
70 osname = string.replace(osname, '/', '')
74 if osname[:5] == "linux":
78 return "%s-%s" % (osname, machine)
79 elif osname[:5] == "sunos":
81 osname = "solaris"
88 # fall through to standard osname-release-machine representatio
    [all...]
ccompiler.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
util.py 65 (osname, host, release, version, machine) = os.uname()
69 osname = string.lower(osname)
70 osname = string.replace(osname, '/', '')
74 if osname[:5] == "linux":
78 return "%s-%s" % (osname, machine)
79 elif osname[:5] == "sunos":
81 osname = "solaris"
88 # fall through to standard osname-release-machine representatio
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
util.py 65 (osname, host, release, version, machine) = os.uname()
69 osname = string.lower(osname)
70 osname = string.replace(osname, '/', '')
74 if osname[:5] == "linux":
78 return "%s-%s" % (osname, machine)
79 elif osname[:5] == "sunos":
81 osname = "solaris"
88 # fall through to standard osname-release-machine representatio
    [all...]
  /ndk/sources/host-tools/make-3.81/tests/
run_make_tests.pl 241 if ($osname =~ /Windows/i || $osname =~ /MINGW32/i || $osname =~ /CYGWIN_NT/i) {
244 # Bleah, the osname is so variable on DOS. This kind of bites.
249 elsif ($osname =~ /^([^ ]*|[^ ]* [^ ]*)D(OS|os|ev) /) {
253 elsif ($osname =~ m%OS/2%) {
test_driver.pl 116 &get_osname; # sets $osname, $vos, $pathsep, and $short_filenames
122 print "OS name = `$osname'\n" if $debug;
230 $osname = defined($^O) ? $^O : '';
253 $osname = "vos";
263 eval "chop (\$osname = `sh -c 'uname -nmsr 2>&1'`)";
264 if ($osname =~ /not found/i)
266 $osname = "(something unixy with no uname)";
270 eval "chop (\$osname = `sh -c 'uname -a 2>&1'`)";
273 $osname = "(something unixy)";
389 $info = "Running tests for $testee on $osname\n"; # $testee is suite-define
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sysconfig.py 584 osname, host, release, version, machine = os.uname()
588 osname = osname.lower().replace('/', '')
592 if osname[:5] == "linux":
596 return "%s-%s" % (osname, machine)
597 elif osname[:5] == "sunos":
599 osname = "solaris"
606 # fall through to standard osname-release-machine representation
607 elif osname[:4] == "irix": # could be "irix64"!
608 return "%s-%s" % (osname, release
    [all...]
_osx_support.py 423 def get_platform_osx(_config_vars, osname, release, machine):
439 osname = "macosx"
488 return (osname, release, machine)
  /prebuilts/gdb/linux-x86/lib/python2.7/
sysconfig.py 584 osname, host, release, version, machine = os.uname()
588 osname = osname.lower().replace('/', '')
592 if osname[:5] == "linux":
596 return "%s-%s" % (osname, machine)
597 elif osname[:5] == "sunos":
599 osname = "solaris"
606 # fall through to standard osname-release-machine representation
607 elif osname[:4] == "irix": # could be "irix64"!
608 return "%s-%s" % (osname, release
    [all...]
_osx_support.py 423 def get_platform_osx(_config_vars, osname, release, machine):
439 osname = "macosx"
488 return (osname, release, machine)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sysconfig.py 584 osname, host, release, version, machine = os.uname()
588 osname = osname.lower().replace('/', '')
592 if osname[:5] == "linux":
596 return "%s-%s" % (osname, machine)
597 elif osname[:5] == "sunos":
599 osname = "solaris"
606 # fall through to standard osname-release-machine representation
607 elif osname[:4] == "irix": # could be "irix64"!
608 return "%s-%s" % (osname, release
    [all...]
_osx_support.py 423 def get_platform_osx(_config_vars, osname, release, machine):
439 osname = "macosx"
488 return (osname, release, machine)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sysconfig.py 584 osname, host, release, version, machine = os.uname()
588 osname = osname.lower().replace('/', '')
592 if osname[:5] == "linux":
596 return "%s-%s" % (osname, machine)
597 elif osname[:5] == "sunos":
599 osname = "solaris"
606 # fall through to standard osname-release-machine representation
607 elif osname[:4] == "irix": # could be "irix64"!
608 return "%s-%s" % (osname, release
    [all...]
_osx_support.py 423 def get_platform_osx(_config_vars, osname, release, machine):
439 osname = "macosx"
488 return (osname, release, machine)
  /prebuilts/devtools/tools/
android 96 osname=`uname -s | tr A-Z a-z`
97 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
ddms 90 osname=`uname -s | tr A-Z a-z`
91 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
hierarchyviewer 91 osname=`uname -s | tr A-Z a-z`
92 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
monkeyrunner 82 osname=`uname -s | tr A-Z a-z`
83 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
traceview 88 osname=`uname -s | tr A-Z a-z`
89 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
uiautomatorviewer 88 osname=`uname -s | tr A-Z a-z`
89 swtpath="${ANDROID_BUILD_TOP}/prebuilts/tools/${osname}-${vmarch}/swt"
  /external/llvm/utils/
test_debuginfo.pl 34 $use_lldb = 1 if ($Config{osname} eq "darwin");
  /external/boringssl/src/util/
generate_build_files.py 77 for ((osname, arch), asm_files) in asm_outputs:
79 (osname, arch), asm_files)
158 for ((osname, arch), asm_files) in asm_outputs:
160 makefile, '%s_%s_sources' % (osname, arch), asm_files)
207 for ((osname, arch), asm_files) in asm_outputs:
209 out, 'crypto_sources_%s_%s' % (osname, arch), asm_files)
430 (osname, arch, perlasm_style, extra_args, asm_ext) = osarch
431 key = (osname, arch)
  /cts/tests/tests/security/jni/
android_security_cts_NativeCodeTest.cpp 112 char osname[100]; local
118 args.oldval = osname;

Completed in 5465 milliseconds

1 2 3