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

1 2 3 4

  /libcore/ojluni/src/main/java/sun/nio/fs/
DefaultFileSystemProvider.java 58 String osname = AccessController local
60 if (osname.equals("SunOS"))
62 if (osname.equals("Linux"))
64 if (osname.contains("OS X"))
66 if (osname.equals("AIX"))
  /external/ltp/testcases/kernel/syscalls/sysctl/
sysctl03.c 98 char osname[OSNAMESZ]; local
123 strcpy(osname, "Linux");
124 osnamelth = sizeof(osname);
126 TEST(sysctl(name, ARRAY_SIZE(name), 0, 0, osname, osnamelth));
143 osnamelth = sizeof(osname);
159 TEST(sysctl(name, ARRAY_SIZE(name), 0, 0, osname, osnamelth));
sysctl04.c 91 char osname[OSNAMESZ]; local
100 osnamelth = sizeof(osname);
110 TEST(sysctl(name, 0, osname, &osnamelth, 0, 0));
sysctl01.c 70 char osname[BUFSIZ]; variable
89 CTL_KERN, KERN_OSTYPE}, 2, osname, &osnamelth, NULL, 0, NULL, 0}, {
92 osname, &osnamelth, NULL, 0, NULL, 0}, {
94 CTL_KERN, KERN_VERSION}, 2, osname, &osnamelth, NULL, 0, NULL, 0}
116 osnamelth = sizeof(osname);
sysctl05.c 72 char osname[BUFSIZ]; variable
93 2, osname, (void *)-1, NULL, 0, NULL, -1, EFAULT}, {
118 osnamelth = sizeof(osname);
  /external/python/cpython2/Lib/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/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...]
  /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...]
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
util.py 61 (osname, host, release, version, machine) = os.uname()
65 osname = string.lower(osname)
66 osname = string.replace(osname, '/', '')
70 if osname[:5] == "linux":
74 return "%s-%s" % (osname, machine)
75 elif osname[:5] == "sunos":
77 osname = "solaris"
79 # fall through to standard osname-release-machine representation
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
sysconfig.py 572 osname, host, release, version, machine = os.uname()
576 osname = osname.lower().replace('/', '')
580 if osname[:5] == "linux":
584 return "%s-%s" % (osname, machine)
585 elif osname[:5] == "sunos":
587 osname = "solaris"
594 # fall through to standard osname-release-machine representation
595 elif osname[:4] == "irix": # could be "irix64"!
596 return "%s-%s" % (osname, release)
    [all...]
  /external/python/cpython2/Lib/
sysconfig.py 572 osname, host, release, version, machine = os.uname()
576 osname = osname.lower().replace('/', '')
580 if osname[:5] == "linux":
584 return "%s-%s" % (osname, machine)
585 elif osname[:5] == "sunos":
587 osname = "solaris"
594 # fall through to standard osname-release-machine representation
595 elif osname[:4] == "irix": # could be "irix64"!
596 return "%s-%s" % (osname, release
    [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...]
  /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...]
  /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...]
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
sysconfig.py 568 osname, host, release, version, machine = os.uname()
572 osname = osname.lower().replace('/', '')
576 if osname[:5] == "linux":
580 return "%s-%s" % (osname, machine)
581 elif osname[:5] == "sunos":
583 osname = "solaris"
585 # fall through to standard osname-release-machine representation
586 elif osname[:4] == "irix": # could be "irix64"!
587 return "%s-%s" % (osname, release)
    [all...]
  /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");

Completed in 2053 milliseconds

1 2 3 4