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

Lines Matching defs:fd

43 	long fd = syscall(__NR_open, sample, O_RDONLY|O_CREAT, 0400);
45 sample, sprintrc(fd));
47 if (fd != -1) {
48 close(fd);
52 fd = syscall(__NR_open, sample, O_RDONLY);
53 printf("open(\"%s\", O_RDONLY) = %s\n", sample, sprintrc(fd));
55 fd = syscall(__NR_open, sample, O_WRONLY|O_NONBLOCK|0x80000000);
57 sample, sprintrc(fd));
61 fd = syscall(__NR_open, sample, O_WRONLY|O_TMPFILE, 0600);
63 sample, sprintrc(fd));