Home
last modified time | relevance | path

Searched refs:devnull_fd (Results 1 – 2 of 2) sorted by relevance

/third_party/ltp/testcases/kernel/syscalls/accept/
Daccept01.c29 int devnull_fd; variable
49 PF_INET, SOCK_STREAM, 0, &devnull_fd, (struct sockaddr *)&fsin1,
76 devnull_fd = SAFE_OPEN("/dev/null", O_WRONLY); in test_setup()
91 SAFE_CLOSE(devnull_fd); in test_cleanup()
/third_party/python/Lib/
Dsubprocess.py1227 devnull_fd = getattr(self, '_devnull', None)
1238 if p2cread != -1 and p2cwrite != -1 and p2cread != devnull_fd:
1240 if c2pwrite != -1 and c2pread != -1 and c2pwrite != devnull_fd:
1242 if errwrite != -1 and errread != -1 and errwrite != devnull_fd:
1245 if devnull_fd is not None:
1246 stack.callback(os.close, devnull_fd)