| /src/external/gpl2/xcvs/dist/lib/ |
| gethostname.c | 41 struct utsname uts; local 43 if (uname (&uts) == -1) 45 if (len > sizeof (uts.nodename)) 48 name[sizeof (uts.nodename)] = '\0'; 49 len = sizeof (uts.nodename); 51 strncpy (name, uts.nodename, len);
|
| /src/external/bsd/ntp/dist/sntp/unity/auto/ |
| unity_test_summary.py | 113 uts = UnityTestSummary() variable in class:UnityTestSummary 123 uts.set_targets(targets) 130 uts.set_root_path(root_path) 133 print(uts.run()) 135 uts.usage(e)
|
| /src/crypto/external/apache2/openssl/dist/crypto/ |
| ppccap.c | 166 struct utsname uts; local 171 if (uname(&uts) != 0 || atoi(uts.version) < 6) 303 struct utsname uts; local 304 if (uname(&uts) == 0 && strcmp(uts.machine, "ppc64") == 0)
|
| /src/crypto/external/bsd/openssl/dist/crypto/ |
| ppccap.c | 160 struct utsname uts; local 165 if (uname(&uts) != 0 || atoi(uts.version) < 6) 290 struct utsname uts; local 291 if (uname(&uts) == 0 && strcmp(uts.machine, "ppc64") == 0)
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/ |
| ppccap.c | 286 struct utsname uts; local 291 if (uname(&uts) != 0 || atoi(uts.version) < 6) 416 struct utsname uts; local 417 if (uname(&uts) == 0 && strcmp(uts.machine, "ppc64") == 0)
|
| /src/external/bsd/libpcap/dist/ |
| pcap-haiku.c | 411 struct utsname uts; local 412 (void)uname(&uts); 414 if (! strncmp(uts.version, *s, strlen(*s)))
|
| /src/sys/compat/linux32/common/ |
| linux32_unistd.c | 155 struct timespec ts0, ts1, uts, *ts = NULL; local 168 uts.tv_sec = utv32.tv_sec; 169 uts.tv_nsec = (long)((unsigned long)utv32.tv_usec * 1000); 171 if (itimespecfix(&uts)) { 176 uts.tv_sec += uts.tv_nsec / 1000000000; 177 uts.tv_nsec %= 1000000000; 178 if (uts.tv_nsec < 0) { 179 uts.tv_sec -= 1; 180 uts.tv_nsec += 1000000000 241 struct timespec uts, ts0, ts1, *tsp; local [all...] |
| /src/external/bsd/less/dist/ |
| os.c | 101 struct utsname uts; local 102 if (uname(&uts) < 0 || lstrtoi(uts.release, NULL, 10) < 20)
|
| /src/external/bsd/top/dist/ |
| top.c | 747 struct utsname uts; local 749 if (uname(&uts) == 0) 751 if (strcmp(uts.machine, UNAME_HARDWARE) != 0)
|
| /src/external/mpl/bind/dist/bin/named/ |
| os.c | 927 struct utsname uts; local 929 memset(&uts, 0, sizeof(uts)); 930 if (uname(&uts) < 0) { 935 snprintf(unamebuf, sizeof(unamebuf), "%s %s %s %s", uts.sysname, 936 uts.machine, uts.release, uts.version);
|
| /src/external/gpl2/lvm2/dist/lib/commands/ |
| toolcontext.c | 969 struct utsname uts; local 971 if (uname(&uts)) { 976 if (!(cmd->hostname = dm_pool_strdup(cmd->libmem, uts.nodename))) { 981 if (!(cmd->kernel_vsn = dm_pool_strdup(cmd->libmem, uts.release))) {
|
| /src/external/cddl/osnet/dist/common/unicode/ |
| u8_textprep.c | 1397 uchar_t uts[U8_STREAM_SAFE_TEXT_MAX + 1]; local 1616 i = do_decomp(uv, uts, s, sz, 1619 sz = u8_number_of_bytes[uts[j]]; 1623 uts + j, sz); 1641 u8s[saved_sz++] = uts[i];
|
| /src/external/gpl2/lvm2/dist/libdm/ioctl/ |
| libdm-iface.c | 278 struct utsname uts; local 283 if (uname(&uts)) 291 if (!strncmp(uts.release, "2.6.", 4))
|
| /src/sys/compat/linux/common/ |
| linux_misc.c | 958 struct timespec ts0, ts1, uts, *ts = NULL; local 969 uts.tv_sec = ltv.tv_sec; 970 uts.tv_nsec = (long)((unsigned long)ltv.tv_usec * 1000); 971 if (itimespecfix(&uts)) { 976 uts.tv_sec += uts.tv_nsec / 1000000000; 977 uts.tv_nsec %= 1000000000; 978 if (uts.tv_nsec < 0) { 979 uts.tv_sec -= 1; 980 uts.tv_nsec += 1000000000 1043 struct timespec uts, ts0, ts1, *tsp; local [all...] |
| /src/external/gpl2/lvm2/dist/libdm/ |
| libdm-deptree.c | 1330 struct utsname uts; local 1336 r = uname(&uts); 1351 if (strncmp(uts.release, "2.6.22", 6) >= 0) 1370 if (strncmp(uts.release, "2.6.31", 6) >= 0)
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ |
| MachO.h | 1731 } uts; member in struct:llvm::MachO::x86_thread_state_t 1771 swapStruct(x.uts.ts64); 1849 } uts; member in struct:llvm::MachO::arm_thread_state_t 1870 swapStruct(x.uts.ts32); 1974 } uts; member in struct:llvm::MachO::ppc_thread_state_t 1995 swapStruct(x.uts.ts32);
|
| /src/external/bsd/openldap/dist/libraries/liblmdb/ |
| mdb.c | 4443 struct utsname uts; local 4445 uname(&uts); 4446 if (uts.release[0] < '3') { 4447 if (!strncmp(uts.release, "2.6.32.", 7)) { 4448 i = atoi(uts.release+7); 4451 } else if (!strncmp(uts.release, "2.6.34.", 7)) { 4452 i = atoi(uts.release+7); 4456 } else if (uts.release[0] == '3') { 4457 i = atoi(uts.release+2); 4461 i = atoi(uts.release+4) [all...] |