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

1 2

  /external/ltp/testcases/kernel/syscalls/sysctl/
sysctl01.c 48 char osname[BUFSIZ]; local
52 memset(osname, 0, BUFSIZ);
57 .oldval = osname,
67 if (strcmp(osname, tc->cmp_str)) {
69 osname, tc->cmp_str);
sysctl04.c 35 static char osname[BUFSIZ]; variable
45 {{CTL_KERN, KERN_OSREV}, 0, osname, &length, ENOTDIR},
46 {{CTL_KERN, KERN_OSREV}, CTL_MAXNAME + 1, osname, &length, ENOTDIR},
48 {{CTL_KERN, KERN_VERSION}, 2, osname, (void *) -1, EFAULT},
sysctl03.c 55 char *osname = "Linux"; local
60 .newval = osname,
61 .newlen = 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...]
ccompiler.py     [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...]
ccompiler.py     [all...]
  /external/python/cpython3/Lib/distutils/
util.py 54 (osname, host, release, version, machine) = os.uname()
58 osname = osname.lower().replace('/', '')
62 if osname[:5] == "linux":
66 return "%s-%s" % (osname, machine)
67 elif osname[:5] == "sunos":
69 osname = "solaris"
76 # fall through to standard osname-release-machine representation
77 elif osname[:3] == "aix":
78 return "%s-%s.%s" % (osname, version, release
    [all...]
ccompiler.py     [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 577 osname, host, release, version, machine = os.uname()
581 osname = osname.lower().replace('/', '')
585 if osname[:5] == "linux":
589 return "%s-%s" % (osname, machine)
590 elif osname[:5] == "sunos":
592 osname = "solaris"
599 # fall through to standard osname-release-machine representation
600 elif osname[:4] == "irix": # could be "irix64"!
601 return "%s-%s" % (osname, release
    [all...]
_osx_support.py 429 def get_platform_osx(_config_vars, osname, release, machine):
445 osname = "macosx"
502 return (osname, release, machine)
rexec.py 250 osname = os.name
251 src = __import__(osname)
  /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...]
rexec.py 250 osname = os.name
251 src = __import__(osname)
  /external/boringssl/src/util/
generate_build_files.py 101 for ((osname, arch), asm_files) in asm_outputs:
102 if osname != 'linux' or arch == 'ppc64le':
163 for ((osname, arch), asm_files) in asm_outputs:
164 if osname != 'linux':
167 makefile, '%s_%s_sources' % (osname, arch), asm_files)
206 for ((osname, arch), asm_files) in asm_outputs:
208 out, 'crypto_sources_%s_%s' % (osname, arch), asm_files)
268 for ((osname, arch), asm_files) in asm_outputs:
269 if osname != 'linux':
272 makefile, '%s_%s_sources' % (osname, arch), asm_files
    [all...]
  /external/llvm/utils/
test_debuginfo.pl 34 $use_lldb = 1 if ($Config{osname} eq "darwin");
  /external/python/cpython3/Lib/
sysconfig.py 640 osname, host, release, version, machine = os.uname()
644 osname = osname.lower().replace('/', '')
648 if osname[:5] == "linux":
652 return "%s-%s" % (osname, machine)
653 elif osname[:5] == "sunos":
655 osname = "solaris"
662 # fall through to standard osname-release-machine representation
663 elif osname[:3] == "aix":
664 return "%s-%s.%s" % (osname, version, release
    [all...]
_osx_support.py 429 def get_platform_osx(_config_vars, osname, release, machine):
445 osname = "macosx"
502 return (osname, release, machine)
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/tar/
TarArchiveEntry.java 1360 final String osname = System.getProperty("os.name").toLowerCase(Locale.ENGLISH); local
    [all...]
  /external/python/cpython2/Lib/plat-mac/
pimp.py 67 osname, release, machine = longplatform.split('-')
70 if osname == 'darwin':
72 osname = 'darwin_apple'
74 osname = 'darwin_macpython'
80 url = DEFAULT_PIMPDATABASE_FMT % (PIMP_VERSION, status, pyvers, osname, rel, machine)
91 url = DEFAULT_PIMPDATABASE_FMT % (PIMP_VERSION, status, pyvers, osname, release, machine)
    [all...]
  /external/slf4j/log4j-over-slf4j/compatibility/lib/
log4j-1.3alpha-8.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.osgi_3.13.0.v20180409-1500.jar 
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 

Completed in 2774 milliseconds

1 2