Searched refs:uts (Results 26 - 38 of 38) sorted by relevance

12

/linux-master/kernel/power/
H A Dpower.h12 struct new_utsname uts; member in struct:swsusp_info
H A Dsnapshot.c2165 memcpy(&info->uts, init_utsname(), sizeof(struct new_utsname));
2174 if (strcmp(info->uts.sysname,init_utsname()->sysname))
2176 if (strcmp(info->uts.release,init_utsname()->release))
2178 if (strcmp(info->uts.version,init_utsname()->version))
2180 if (strcmp(info->uts.machine,init_utsname()->machine))
/linux-master/kernel/
H A Dsignal.c3678 * @uts: upper bound on process time suspension
3683 const struct __kernel_timespec __user *, uts,
3698 if (uts) {
3699 if (get_timespec64(&ts, uts))
3703 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL);
3716 const struct old_timespec32 __user *, uts,
3730 if (uts) {
3731 if (get_old_timespec32(&ts, uts))
3735 ret = do_sigtimedwait(&these, &info, uts ? &ts : NULL);
3749 struct __kernel_timespec __user *, uts, compat_size_
[all...]
/linux-master/tools/perf/util/
H A Dheader.c345 struct utsname uts; local
348 ret = uname(&uts);
352 return do_write_string(ff, uts.nodename);
358 struct utsname uts; local
361 ret = uname(&uts);
365 return do_write_string(ff, uts.release);
371 struct utsname uts; local
374 ret = uname(&uts);
378 return do_write_string(ff, uts.machine);
H A Dsymbol.c2298 struct utsname uts; local
2319 if (uname(&uts) < 0)
2322 kernel_version = uts.release;
/linux-master/tools/perf/
H A Dbuiltin-top.c171 struct utsname uts; local
172 int err = uname(&uts);
189 err ? "[unknown]" : uts.machine,
190 err ? "[unknown]" : uts.release, perf_version_string);
H A Dbuiltin-script.c3860 struct utsname uts; local
4278 uname(&uts);
4282 if (!strcmp(uts.machine, session->header.env.arch))
4284 else if (!strcmp(uts.machine, "x86_64") &&
/linux-master/include/linux/
H A Dcompat.h717 struct old_timespec32 __user *uts, compat_size_t sigsetsize);
720 struct __kernel_timespec __user *uts, compat_size_t sigsetsize);
H A Dsyscalls.h658 const struct __kernel_timespec __user *uts,
662 const struct old_timespec32 __user *uts,
/linux-master/arch/x86/boot/compressed/
H A Dkaslr.c29 #include <linux/uts.h>
/linux-master/io_uring/
H A Dio_uring.c2589 struct __kernel_timespec __user *uts)
2613 if (uts) {
2616 if (get_timespec64(&ts, uts))
2587 io_cqring_wait(struct io_ring_ctx *ctx, int min_events, const sigset_t __user *sig, size_t sigsz, struct __kernel_timespec __user *uts) argument
/linux-master/drivers/usb/gadget/legacy/
H A Dinode.c17 #include <linux/uts.h>
/linux-master/tools/lib/bpf/
H A Dlibbpf.c2176 struct utsname uts; local
2180 uname(&uts);
2181 len = snprintf(buf, PATH_MAX, "/boot/config-%s", uts.release);

Completed in 378 milliseconds

12