/third_party/skia/third_party/externals/microhttpd/ |
H A D | config.guess | 124 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 126 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then 130 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown 131 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown 132 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown 133 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 288 # 1.2 uses "1.2" for uname -r. 296 # Should we change UNAME_MACHINE based on the output of uname instead 345 case `/usr/bin/uname -p` in 385 UNAME_RELEASE=`uname [all...] |
/third_party/python/Lib/test/ |
H A D | test_platform.py | 216 res = platform.uname() 233 res = platform.uname() 241 res = platform.uname() 254 uname = platform.uname() 255 self.assertEqual(copy.copy(uname), uname) 256 self.assertEqual(copy.deepcopy(uname), uname) 259 orig = platform.uname() [all...] |
H A D | test_sysconfig.py | 32 # patching os.uname 33 if hasattr(os, 'uname'): 34 self.uname = os.uname 35 self._uname = os.uname() 37 self.uname = None 39 os.uname = self._get_uname 60 if self.uname is not None: 61 os.uname = self.uname [all...] |
/third_party/rust/crates/nix/test/common/ |
H A D | mod.rs | 122 let uname = nix::sys::utsname::uname().unwrap(); 123 println!("{}", uname.sysname().to_str().unwrap()); 124 println!("{}", uname.nodename().to_str().unwrap()); 125 println!("{}", uname.release().to_str().unwrap()); 126 println!("{}", uname.version().to_str().unwrap()); 127 println!("{}", uname.machine().to_str().unwrap()); 130 let fixed_release = &uname.release().to_str().unwrap().to_string()
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_util.py | 34 # patching os.uname 35 if hasattr(os, 'uname'): 36 self.uname = os.uname 37 self._uname = os.uname() 39 self.uname = None 42 os.uname = self._get_uname 53 if self.uname is not None: 54 os.uname = self.uname [all...] |
/third_party/rust/crates/nix/src/sys/ |
H A D | utsname.rs | 8 /// Describes the running system. Return type of [`uname`]. 47 pub fn uname() -> Result<UtsName> { in uname() functions 50 Errno::result(libc::uname(ret.as_mut_ptr()))?; in uname() 71 assert_eq!(super::uname().unwrap().sysname(), "Linux"); in test_uname_linux() 77 assert_eq!(super::uname().unwrap().sysname(), "Darwin"); in test_uname_darwin() 83 assert_eq!(super::uname().unwrap().sysname(), "FreeBSD"); in test_uname_freebsd()
|
/third_party/lame/ |
H A D | config.guess | 127 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 129 if test -f /.attbin/uname ; then 133 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown 134 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown 135 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown 136 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 181 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ 331 # 1.2 uses "1.2" for uname -r. 379 case `/usr/bin/uname -p` in 414 UNAME_RELEASE=`uname [all...] |
/third_party/eudev/ |
H A D | config.guess | 124 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 126 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then 130 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown 131 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown 132 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown 133 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 171 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ 321 # 1.2 uses "1.2" for uname -r. 369 case `/usr/bin/uname -p` in 409 UNAME_RELEASE=`uname [all...] |
/third_party/skia/third_party/externals/libpng/ |
H A D | config.guess | 124 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 126 if (test -f /.attbin/uname) >/dev/null 2>&1 ; then 130 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown 131 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown 132 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown 133 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 178 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ 328 # 1.2 uses "1.2" for uname -r. 376 case `/usr/bin/uname -p` in 416 UNAME_RELEASE=`uname [all...] |
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
H A D | sha3_prov.c | 192 # define SHA3_SET_MD(uname, typ) \ 193 if (S390_SHA3_CAPABLE(uname)) { \ 194 ctx->pad = S390X_##uname; \ 200 # define SHA3_SET_MD(uname, typ) ctx->meth = sha3_generic_md; 203 #define SHA3_newctx(typ, uname, name, bitlen, pad) \ 213 SHA3_SET_MD(uname, typ) \ 217 #define KMAC_newctx(uname, bitlen, pad) \ 218 static OSSL_FUNC_digest_newctx_fn uname##_newctx; \ 219 static void *uname##_newctx(void *provctx) \
|
/third_party/openssl/providers/implementations/digests/ |
H A D | sha3_prov.c | 192 # define SHA3_SET_MD(uname, typ) \ 193 if (S390_SHA3_CAPABLE(uname)) { \ 194 ctx->pad = S390X_##uname; \ 200 # define SHA3_SET_MD(uname, typ) ctx->meth = sha3_generic_md; 203 #define SHA3_newctx(typ, uname, name, bitlen, pad) \ 213 SHA3_SET_MD(uname, typ) \ 217 #define KMAC_newctx(uname, bitlen, pad) \ 218 static OSSL_FUNC_digest_newctx_fn uname##_newctx; \ 219 static void *uname##_newctx(void *provctx) \
|
/third_party/zlib/ |
H A D | configure | 35 uname=${CHOST} 39 mname=`(uname -a || echo unknown) 2>/dev/null` 127 -u*=* | --uname=*) uname=`echo $1 | sed 's/.*=//'`;shift ;; 169 # check for gcc vs. cc and set compile and link flags based on the system identified by uname 226 if test -z "$uname"; then 227 uname=`(uname -s || echo unknown) 2>/dev/null` 229 case "$uname" in 252 case `(uname [all...] |
/third_party/libuv/test/ |
H A D | test-platform-output.c | 39 uv_utsname_t uname; in TEST_IMPL() local 192 err = uv_os_uname(&uname); in TEST_IMPL() 195 printf(" sysname: %s\n", uname.sysname); in TEST_IMPL() 196 printf(" release: %s\n", uname.release); in TEST_IMPL() 197 printf(" version: %s\n", uname.version); in TEST_IMPL() 198 printf(" machine: %s\n", uname.machine); in TEST_IMPL()
|
H A D | test-tcp-connect-timeout.c | 107 uv_utsname_t uname; in is_supported_system() local 108 ASSERT_OK(uv_os_uname(&uname)); in is_supported_system() 109 if (strcmp(uname.sysname, "Windows_NT") == 0) { in is_supported_system() 110 cnt = sscanf(uname.release, "%d.%d.%d", &semver[0], &semver[1], &semver[2]); in is_supported_system()
|
/third_party/musl/libc-test/src/functionalext/supplement/misc/ |
H A D | getdomainname.c | 28 int ret = uname(&u); in getdomainname_0100() 45 int ret = uname(&u); in getdomainname_0200() 61 int ret = uname(&u); in getdomainname_0300()
|
/third_party/node/deps/cares/ |
H A D | config.guess | 141 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 143 if test -f /.attbin/uname ; then 147 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown 148 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown 149 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown 150 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 205 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ 368 # 1.2 uses "1.2" for uname -r. 413 case `/usr/bin/uname -p` in 459 UNAME_RELEASE=`uname [all...] |
/third_party/node/deps/cares/config/ |
H A D | config.guess | 141 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 143 if test -f /.attbin/uname ; then 147 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown 148 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown 149 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown 150 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 205 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ 368 # 1.2 uses "1.2" for uname -r. 413 case `/usr/bin/uname -p` in 459 UNAME_RELEASE=`uname [all...] |
/third_party/libevdev/build-aux/ |
H A D | config.guess | 141 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 143 if test -f /.attbin/uname ; then 147 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown 148 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown 149 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown 150 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 205 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ 368 # 1.2 uses "1.2" for uname -r. 413 case `/usr/bin/uname -p` in 459 UNAME_RELEASE=`uname [all...] |
/third_party/python/ |
H A D | config.guess | 141 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 143 if test -f /.attbin/uname ; then 147 UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown 148 UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown 149 UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown 150 UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown 205 UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ 368 # 1.2 uses "1.2" for uname -r. 413 case `/usr/bin/uname -p` in 459 UNAME_RELEASE=`uname [all...] |
/third_party/googletest/googletest/test/ |
H A D | gtest_help_test.py | 46 IS_LINUX = os.name == 'posix' and os.uname()[0] == 'Linux' 47 IS_GNUHURD = os.name == 'posix' and os.uname()[0] == 'GNU' 48 IS_GNUKFREEBSD = os.name == 'posix' and os.uname()[0] == 'GNU/kFreeBSD' 49 IS_OPENBSD = os.name == 'posix' and os.uname()[0] == 'OpenBSD'
|
/third_party/python/Tools/scripts/ |
H A D | generate_re_casefix.py | 30 def uname(i): function 69 print(" '%s' (U+%04x, %s)" % (alpha(i), i, uname(i)), 80 uname(i), 81 ', '.join(map(uname, t)),
|
/third_party/python/Lib/ |
H A D | 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() 428 machine = os.uname().machine 755 Fall back to `uname -p` 763 ['uname', '-p'], 776 ### Portable uname() interface 786 resolved late and cached to avoid calling "uname" 825 def uname() function [all...] |
/third_party/ltp/testcases/kdump/lib/kprobes/ |
H A D | Makefile | 3 KDIR := /lib/modules/$(shell uname -r)/build 10 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
/third_party/ltp/testcases/kdump/lib/crasher/ |
H A D | Makefile | 2 KDIR := /lib/modules/$(shell uname -r)/build 10 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
|
/third_party/toybox/toys/posix/ |
H A D | tar.c | 71 char *name, *link_target, *uname, *gname; 83 type, link[100], magic[8], uname[32], gname[32], major[8], minor[8], member 132 strcpy(tmp.uname, "root"); in write_longname() 292 strncpy(hdr.uname, TT.owner ? TT.owner : pw->pw_name, sizeof(hdr.uname)); in add_to_tar() 510 else if (!FLAG(numeric_owner) && *TT.hdr.uname) { in extract_to_disk() 511 struct passwd *pw = getpwnam(TT.hdr.uname); in extract_to_disk() 516 else if (!FLAG(numeric_owner) && *TT.hdr.uname) { in extract_to_disk() 655 TT.hdr.uname = xstrndup(TT.owner ? TT.owner : tar.uname, sizeo in unpack_tar() [all...] |