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

1 2 3 4

  /bionic/libc/arch-arm/syscalls/
uname.S 5 ENTRY(uname) function
16 END(uname)
  /bionic/libc/arch-arm64/syscalls/
uname.S 5 ENTRY(uname) function
14 END(uname)
  /bionic/libc/arch-mips/syscalls/
uname.S 5 ENTRY(uname) function
19 END(uname)
  /bionic/libc/arch-mips64/syscalls/
uname.S 5 ENTRY(uname) function
25 END(uname)
  /bionic/libc/arch-x86/syscalls/
uname.S 5 ENTRY(uname) function
29 END(uname)
  /bionic/libc/arch-x86_64/syscalls/
uname.S 5 ENTRY(uname) function
15 END(uname)
  /external/strace/
uname.c 37 SYS_FUNC(uname)
39 struct utsname uname; local
44 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &uname)) {
45 PRINT_FIELD_CSTRING("{", uname, sysname);
46 PRINT_FIELD_CSTRING(", ", uname, nodename);
51 PRINT_FIELD_CSTRING(", ", uname, release);
52 PRINT_FIELD_CSTRING(", ", uname, version);
53 PRINT_FIELD_CSTRING(", ", uname, machine);
55 PRINT_FIELD_CSTRING(", ", uname, domainname);
  /external/kmod/testsuite/
uname.c 28 TS_EXPORT int uname(struct utsname *u) function
42 nextlib_uname = dlsym(nextlib, "uname");
58 fprintf(stderr, "TRAP uname(): missing export %s?\n",
65 fprintf(stderr, "uname(): sizeof release (%s) "
  /frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/
DeviceInfoUtilsTest.java 46 final StructUtsname uname = new StructUtsname(sysName, nodeName, release, version, machine); local
50 assertThat(DeviceInfoUtils.formatKernelVersion(mContext, uname)).isEqualTo(expected);
60 final StructUtsname uname = new StructUtsname(sysName, nodeName, release, version, machine); local
64 assertThat(DeviceInfoUtils.formatKernelVersion(mContext, uname)).isEqualTo(expected);
  /external/scapy/scapy/
consts.py 74 uname = os.uname() variable
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
CpuFeatures.java 32 private static String uname(ITestDevice device, String option) throws DeviceNotAvailableException { method in class:CpuFeatures
34 device.executeShellCommand("uname " + option, Out);
43 return uname(device, UNAME_OPTION_MACHINE_TYPE).contains("aarch64");
51 return uname(device, UNAME_OPTION_MACHINE_TYPE).contains("armv7");
59 return uname(device, UNAME_OPTION_MACHINE_TYPE).contains("x86");
68 String[] kernelVersion = uname(device, UNAME_OPTION_KERNEL_RELEASE).split(Pattern.quote("."));
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 298 String uname = credentials.getUserPrincipal().getName(); local
302 StringBuilder tmp = new StringBuilder(uname.length() + realm.length() + pwd.length() + 2);
303 tmp.append(uname);
405 String uname = credentials.getUserPrincipal().getName(); local
408 params.add(new BasicNameValuePair("username", uname));
  /external/python/cpython3/Lib/
platform.py 51 # 0.6.1 - added code to prevent 'uname -p' on platforms which are
61 # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
62 # return values (the system uname command tends to return
70 # API (was system_ver() in previous versions) -- use uname()
562 machine = os.uname().machine
749 """ Interface to the system's uname command.
755 f = os.popen('uname %s 2> %s' % (option, DEV_NULL))
883 ### Portable uname() interface
890 def uname(): function
892 """ Fairly portable uname interface. Returns a tupl
    [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
JarFile.java 359 String uname = names[i].toUpperCase(Locale.ENGLISH); local
360 if (MANIFEST_NAME.equals(uname)
361 || SignatureFileVerifier.isBlockOrSF(uname)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
platform.py 52 # 0.6.1 - added code to prevent 'uname -p' on platforms which are
62 # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
63 # return values (the system uname command tends to return
71 # API (was system_ver() in previous versions) -- use uname()
789 machine = os.uname()[4]
1166 def uname(): function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
platform.py 52 # 0.6.1 - added code to prevent 'uname -p' on platforms which are
62 # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
63 # return values (the system uname command tends to return
71 # API (was system_ver() in previous versions) -- use uname()
783 machine = os.uname()[4]
1138 def uname(): function
    [all...]
  /external/python/cpython2/Lib/
platform.py 54 # 0.6.1 - added code to prevent 'uname -p' on platforms which are
64 # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
65 # return values (the system uname command tends to return
73 # API (was system_ver() in previous versions) -- use uname()
744 machine = os.uname()[4]
957 """ Interface to the system's uname command.
963 f = os.popen('uname %s 2> %s' % (option, DEV_NULL))
1121 def uname(): function
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
platform.py 52 # 0.6.1 - added code to prevent 'uname -p' on platforms which are
62 # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
63 # return values (the system uname command tends to return
71 # API (was system_ver() in previous versions) -- use uname()
789 machine = os.uname()[4]
1166 def uname(): function
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
platform.py 52 # 0.6.1 - added code to prevent 'uname -p' on platforms which are
62 # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
63 # return values (the system uname command tends to return
71 # API (was system_ver() in previous versions) -- use uname()
789 machine = os.uname()[4]
1166 def uname(): function
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 52 # 0.6.1 - added code to prevent 'uname -p' on platforms which are
62 # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
63 # return values (the system uname command tends to return
71 # API (was system_ver() in previous versions) -- use uname()
789 machine = os.uname()[4]
1166 def uname(): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 52 # 0.6.1 - added code to prevent 'uname -p' on platforms which are
62 # 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
63 # return values (the system uname command tends to return
71 # API (was system_ver() in previous versions) -- use uname()
789 machine = os.uname()[4]
1166 def uname(): function
    [all...]
  /external/toybox/toys/pending/
tar.c 54 type, link[100], magic[8], uname[32], gname[32], major[8], minor[8], member in struct:tar_hdr
59 char *name, *link_target, *uname, *gname; member in struct:file_header
242 snprintf(hdr.uname, sizeof(hdr.uname), "%s", pw->pw_name);
243 else snprintf(hdr.uname, sizeof(hdr.uname), "%d", st->st_uid);
338 setenv("TAR_UNAME", file_hdr->uname, 1);
442 struct passwd *pw = getpwnam(file_hdr->uname);
631 file_hdr->uname = xstrdup(tar.uname);
    [all...]
  /external/zlib/src/contrib/untgz/
untgz.c 81 char uname[32]; /* 265 */ member in struct:tar_header
  /toolchain/binutils/binutils-2.27/zlib/contrib/untgz/
untgz.c 81 char uname[32]; /* 265 */ member in struct:tar_header
  /external/selinux/libsemanage/src/
genhomedircon.c 1088 const char *uname = group->gr_mem[i]; local
1090 if (add_user(s, head, user, uname, sename, selogin) < 0) {
    [all...]

Completed in 542 milliseconds

1 2 3 4