Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/tools/perf/ui/tui/
H A Dsetup.c59 fd_set read_set; in ui__getch() local
64 FD_ZERO(&read_set); in ui__getch()
65 FD_SET(0, &read_set); in ui__getch()
72 err = select(1, &read_set, NULL, NULL, ptimeout); in ui__getch()
87 FD_ZERO(&read_set); in ui__getch()
88 FD_SET(0, &read_set); in ui__getch()
91 err = select(1, &read_set, NULL, NULL, &timeout); in ui__getch()
/OK3568_Linux_fs/u-boot/tools/patman/
H A Dcros_subprocess.py144 read_set = []
158 read_set.append(self.stdout)
161 read_set.append(self.stderr)
166 while read_set or write_set:
168 rlist, wlist, _ = select.select(read_set, write_set, [], 0.2)
197 read_set.remove(self.stdout)
212 read_set.remove(self.stderr)