Home | History | Annotate | Download | only in tests-m32

Lines Matching refs:rc

58 	long rc;
62 rc = syscall(__NR_inotify_add_watch, 0, NULL, 0);
63 printf("inotify_add_watch(0, NULL, 0) = %s\n", sprintrc(rc));
65 rc = syscall(__NR_inotify_add_watch, bogus_fd, bogus_path + 4096, 0);
67 (int) bogus_fd, bogus_path + 4096, 0, sprintrc(rc));
69 rc = syscall(__NR_inotify_add_watch, bogus_fd, bogus_path, bogus_mask);
72 sprintrc(rc));
74 rc = syscall(__NR_inotify_rm_watch, 0, 0);
75 printf("inotify_rm_watch(0, 0) = %s\n", sprintrc(rc));
77 rc = syscall(__NR_inotify_rm_watch, bogus_fd, bogus_fd);
79 (int) bogus_fd, (int) bogus_fd, sprintrc(rc));