Symbol: RS
sys/arch/ia64/include/efilib.h
34
extern EFI_RUNTIME_SERVICES *RS;
sys/arch/ia64/stand/efi/libefi/efi.c
42
EFI_RUNTIME_SERVICES *RS;
sys/arch/ia64/stand/efi/libefi/efi.c
98
RS = ST->RuntimeServices;
sys/arch/ia64/stand/efi/libefi/time.c
178
Status = RS->GetTime( &EfiTime, &Capabilities );
sys/kern/subr_kmem.c
270
#define KMEM_CACHE_ALLOC_PROBE(I, P, RS, AS, F) \
sys/kern/subr_kmem.c
271
KMEM_CACHE_PROBE(kmem_cache_alloc_probe_id, I, P, RS, AS, F)
sys/kern/subr_kmem.c
272
#define KMEM_CACHE_BIG_ALLOC_PROBE(I, P, RS, AS, F) \
sys/kern/subr_kmem.c
273
KMEM_CACHE_PROBE(kmem_cache_big_alloc_probe_id, I, P, RS, AS, F)
sys/kern/subr_kmem.c
274
#define KMEM_CACHE_FREE_PROBE(I, P, RS, AS) \
sys/kern/subr_kmem.c
275
KMEM_CACHE_PROBE(kmem_cache_free_probe_id, I, P, RS, AS, 0)
sys/kern/subr_kmem.c
276
#define KMEM_CACHE_BIG_FREE_PROBE(I, P, RS, AS) \
sys/kern/subr_kmem.c
277
KMEM_CACHE_PROBE(kmem_cache_big_free_probe_id, I, P, RS, AS, 0)
tests/compat/linux/h_inotify_directory.c
69
RS(mkdir("test", 0644));
tests/compat/linux/h_inotify_directory.c
71
RS(fd = syscall(LINUX_SYS_inotify_init));
tests/compat/linux/h_inotify_directory.c
72
RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test",
tests/compat/linux/h_inotify_directory.c
76
RS(targetfd = open("test/test", LINUX_O_RDWR|LINUX_O_CREAT, 0644));
tests/compat/linux/h_inotify_directory.c
77
RS(write(targetfd, &targetfd, sizeof(targetfd)));
tests/compat/linux/h_inotify_directory.c
78
RS(close(targetfd));
tests/compat/linux/h_inotify_directory.c
79
RS(rename("test/test", "test/test2"));
tests/compat/linux/h_inotify_directory.c
80
RS(unlink("test/test2"));
tests/compat/linux/h_inotify_directory.c
81
RS(rename("test", "test2"));
tests/compat/linux/h_inotify_directory.c
82
RS(rmdir("test2"));
tests/compat/linux/h_inotify_directory.c
85
RS(read(fd, buf, sizeof(buf)));
tests/compat/linux/h_inotify_init.c
47
RS(fd = syscall(LINUX_SYS_inotify_init));
tests/compat/linux/h_inotify_init.c
50
RS(close(fd));
tests/compat/linux/h_inotify_init.c
53
RS(fd = syscall(LINUX_SYS_inotify_init1, LINUX_IN_NONBLOCK));
tests/compat/linux/h_inotify_init.c
56
RS(close(fd));
tests/compat/linux/h_inotify_init.c
59
RS(fd = syscall(LINUX_SYS_inotify_init1, LINUX_IN_CLOEXEC));
tests/compat/linux/h_inotify_init.c
62
RS(close(fd));
tests/compat/linux/h_inotify_single_file.c
51
RS(targetfd = open("test", LINUX_O_RDWR|LINUX_O_CREAT, 0644));
tests/compat/linux/h_inotify_single_file.c
52
RS(close(targetfd));
tests/compat/linux/h_inotify_single_file.c
54
RS(fd = syscall(LINUX_SYS_inotify_init));
tests/compat/linux/h_inotify_single_file.c
55
RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test",
tests/compat/linux/h_inotify_single_file.c
59
RS(targetfd = open("test", LINUX_O_RDWR|LINUX_O_CREAT, 0644));
tests/compat/linux/h_inotify_single_file.c
60
RS(write(targetfd, &buf, sizeof(buf)));
tests/compat/linux/h_inotify_single_file.c
61
RS(read(targetfd, &buf, sizeof(buf)));
tests/compat/linux/h_inotify_single_file.c
62
RS(close(targetfd));
tests/compat/linux/h_inotify_single_file.c
63
RS(targetfd = open("test", LINUX_O_RDONLY|LINUX_O_CREAT, 0644));
tests/compat/linux/h_inotify_single_file.c
64
RS(close(targetfd));
tests/compat/linux/h_inotify_single_file.c
65
RS(rename("test", "test2"));
tests/compat/linux/h_inotify_single_file.c
66
RS(unlink("test2"));
tests/compat/linux/h_inotify_single_file.c
69
RS(read(fd, events, sizeof(events)));
tests/compat/linux/h_inotify_watch_change.c
47
RS(targetfd = open("test", LINUX_O_RDWR|LINUX_O_CREAT, 0644));
tests/compat/linux/h_inotify_watch_change.c
48
RS(close(targetfd));
tests/compat/linux/h_inotify_watch_change.c
50
RS(fd = syscall(LINUX_SYS_inotify_init));
tests/compat/linux/h_inotify_watch_change.c
51
RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test",
tests/compat/linux/h_inotify_watch_change.c
55
RS(targetfd = open("test", LINUX_O_RDONLY|LINUX_O_CREAT, 0644));
tests/compat/linux/h_inotify_watch_change.c
56
RS(close(targetfd));
tests/compat/linux/h_inotify_watch_change.c
58
RS(nread = read(fd, events, sizeof(events)));
tests/compat/linux/h_inotify_watch_change.c
63
RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test",
tests/compat/linux/h_inotify_watch_change.c
67
RS(targetfd = open("test", LINUX_O_RDONLY|LINUX_O_CREAT, 0644));
tests/compat/linux/h_inotify_watch_change.c
68
RS(close(targetfd));
tests/compat/linux/h_inotify_watch_change.c
70
RS(nread = read(fd, events, sizeof(events)));
tests/compat/linux/h_inotify_watch_change.c
75
RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test",
tests/compat/linux/h_inotify_watch_change.c
79
RS(targetfd = open("test", LINUX_O_RDONLY|LINUX_O_CREAT, 0644));
tests/compat/linux/h_inotify_watch_change.c
80
RS(close(targetfd));
tests/compat/linux/h_inotify_watch_change.c
82
RS(nread = read(fd, events, sizeof(events)));
usr.sbin/lpr/common_source/common.c
98
long RS; /* restricted to those with local accounts */
usr.sbin/lpr/common_source/lp.h
67
extern long RS; /* restricted to those with local accounts */
usr.sbin/lpr/lpd/printjob.c
1298
RS = (cgetcap(bp, "rs", ':') != NULL);
usr.sbin/lpr/lpd/printjob.c
410
if (RS) { /* restricted */