Lines Matching refs:RS
69 RS(mkdir("test", 0644));
71 RS(fd = syscall(LINUX_SYS_inotify_init));
72 RS(wd = syscall(LINUX_SYS_inotify_add_watch, fd, (register_t)"test",
76 RS(targetfd = open("test/test", LINUX_O_RDWR|LINUX_O_CREAT, 0644));
77 RS(write(targetfd, &targetfd, sizeof(targetfd)));
78 RS(close(targetfd));
79 RS(rename("test/test", "test/test2"));
80 RS(unlink("test/test2"));
81 RS(rename("test", "test2"));
82 RS(rmdir("test2"));
85 RS(read(fd, buf, sizeof(buf)));