Home | History | Annotate | Download | only in tests

Lines Matching refs:rc

43 printrc(long rc)
46 int err = -rc;
49 printf("%lld", zero_extend_signed_to_ull(rc));
56 printf("%s", sprintrc(rc));
72 long rc;
76 rc = syscall(__NR_modify_ldt, 0, 0, 0);
78 printrc(rc);
80 rc = syscall(__NR_modify_ldt, bogus_func, (kernel_long_t) -1,
86 printrc(rc);
88 rc = syscall(__NR_modify_ldt, bogus_func, us + 1, 0);
90 printrc(rc);
92 rc = syscall(__NR_modify_ldt, bogus_func, us, 42);
94 printrc(rc);
96 rc = syscall(__NR_modify_ldt, bogus_func, us + 1, sizeof(*us));
99 printrc(rc);
106 rc = syscall(__NR_modify_ldt, bogus_func, bogus_int, sizeof(*us));
109 printrc(rc);
111 rc = syscall(__NR_modify_ldt, bogus_func, us, sizeof(*us));
115 printrc(rc);
122 rc = syscall(__NR_modify_ldt, bogus_func, us, sizeof(*us));
126 printrc(rc);