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

Lines Matching refs:rc

14 	long rc;
16 rc = syscall(__NR_swapon, sample, 0);
18 sample, "0", rc, errno2name());
20 rc = syscall(__NR_swapon, sample, 42);
22 sample, "42", rc, errno2name());
24 rc = syscall(__NR_swapon, sample, SWAP_FLAG_PREFER);
26 sample, "SWAP_FLAG_PREFER|0", rc, errno2name());
28 rc = syscall(__NR_swapon, sample, SWAP_FLAG_PREFER | 42);
30 sample, "SWAP_FLAG_PREFER|42", rc, errno2name());
32 rc = syscall(__NR_swapon, sample, -1L);
37 rc, errno2name());
39 rc = syscall(__NR_swapoff, sample);
41 sample, rc, errno2name());