/aosp12/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/ |
H A D | DeviceInfoUtilsTest.java | 47 final StructUtsname uname = new StructUtsname(sysName, nodeName, release, version, machine); in formatKernelVersion_regularInputVersion_shouldStripOptionalValues() local 51 assertThat(DeviceInfoUtils.formatKernelVersion(mContext, uname)).isEqualTo(expected); in formatKernelVersion_regularInputVersion_shouldStripOptionalValues() 61 final StructUtsname uname = new StructUtsname(sysName, nodeName, release, version, machine); in formatKernelVersion_nonRegularInputVersion_shouldBeUnavailable() local 65 assertThat(DeviceInfoUtils.formatKernelVersion(mContext, uname)).isEqualTo(expected); in formatKernelVersion_nonRegularInputVersion_shouldBeUnavailable()
|
/aosp12/frameworks/base/packages/SettingsLib/src/com/android/settingslib/ |
H A D | DeviceInfoUtils.java | 70 return formatKernelVersion(context, Os.uname()); in getFormattedKernelVersion() 74 static String formatKernelVersion(Context context, StructUtsname uname) { in formatKernelVersion() argument 75 if (uname == null) { in formatKernelVersion() 85 Matcher m = Pattern.compile(VERSION_REGEX).matcher(uname.version); in formatKernelVersion() 87 Log.e(TAG, "Regex did not match on uname version " + uname.version); in formatKernelVersion() 94 return new StringBuilder().append(uname.release) in formatKernelVersion()
|
/aosp12/build/soong/scripts/ |
H A D | microfactory.bash | 24 case $(uname) in 31 *) echo "unknown OS:" $(uname) >&2 && exit 1;;
|
H A D | jar-args.sh | 22 case $(uname) in 29 *) echo "unknown OS:" $(uname) >&2 && exit 1;;
|
H A D | strip.sh | 110 case $(uname) in 117 *) echo "unknown OS:" $(uname) >&2 && exit 1;;
|
/aosp12/build/make/ |
H A D | envsetup.sh | 246 case $(uname -s) in 269 case $(uname -s) in 609 local uname=$(uname) 615 echo "You're building on" $uname 1059 case `uname -s` in 1150 case `uname -s` in 1817 case $(uname -s) in 1825 >&2 echo Unknown host $(uname -s)
|
/aosp12/build/ |
H A D | envsetup.sh | 246 case $(uname -s) in 269 case $(uname -s) in 609 local uname=$(uname) 615 echo "You're building on" $uname 1059 case `uname -s` in 1150 case `uname -s` in 1817 case $(uname -s) in 1825 >&2 echo Unknown host $(uname -s)
|
/aosp12/bionic/libc/bionic/ |
H A D | getdomainname.cpp | 36 if (uname(&uts) == -1) return -1; in getdomainname()
|
H A D | gethostname.cpp | 36 uname(&name); in gethostname()
|
/aosp12/bionic/libc/include/sys/ |
H A D | utsname.h | 65 int uname(struct utsname* __buf);
|
/aosp12/bionic/tests/headers/posix/ |
H A D | sys_utsname_h.c | 41 FUNCTION(uname, int (*f)(struct utsname*)); in sys_utsname_h()
|
/aosp12/system/chre/ |
H A D | run_sim.sh | 7 CHRE_HOST_OS=`uname`
|
H A D | load_android_sim.sh | 7 CHRE_HOST_OS=`uname`
|
/aosp12/hardware/qcom/sm8150/media/conf_files/atoll/ |
H A D | mediacodec-seccomp.policy | 15 uname: 1
|
/aosp12/hardware/qcom/sm8150/media/conf_files/msmnile/ |
H A D | mediacodec-seccomp.policy | 15 uname: 1
|
/aosp12/hardware/qcom/sm8150/media/conf_files/sm6150/ |
H A D | mediacodec-seccomp.policy | 15 uname: 1
|
/aosp12/hardware/qcom/sm8150/media/conf_files/trinket/ |
H A D | mediacodec-seccomp.policy | 15 uname: 1
|
/aosp12/hardware/qcom/sm7250/media/conf_files/bengal/ |
H A D | mediacodec-seccomp.policy | 15 uname: 1
|
/aosp12/hardware/qcom/sm7250/media/conf_files/lito/ |
H A D | mediacodec-seccomp.policy | 15 uname: 1
|
/aosp12/hardware/qcom/sm7250/media/conf_files/kona/ |
H A D | mediacodec-seccomp.policy | 15 uname: 1
|
/aosp12/build/soong/ |
H A D | build_test.bash | 43 case $(uname) in
|
/aosp12/frameworks/layoutlib/bridge/ |
H A D | update_nav_icons.sh | 18 case $(uname -s) in
|
/aosp12/system/core/shell_and_utilities/ |
H A D | README.md | 111 time timeout touch tr true truncate umount uname uniq unix2dos usleep 132 time timeout touch tr true truncate **tty** **ulimit** umount uname uniq unix2dos 156 tty ulimit umount uname uniq unix2dos uptime usleep **uudecode** **uuencode** 182 umount uname uniq unix2dos uptime usleep uudecode uuencode vmstat wc 212 true truncate tty **tunctl** ulimit umount uname uniq unix2dos **unlink** 244 tty tunctl ulimit umount uname uniq unix2dos unlink unshare uptime 276 traceroute6 true truncate tty tunctl ulimit umount uname uniq unix2dos
|
/aosp12/art/test/1963-add-to-dex-classloader-in-memory/ |
H A D | check_memfd_create.cc | 42 if (uname(&name) >= 0) { in Java_Main_hasWorkingMemfdCreate()
|
/aosp12/art/runtime/ |
H A D | runtime_common.h | 57 uname(&info); in Dump()
|