Home
last modified time | relevance | path

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

/hardware/samsung/nfc/halimpl/src/
Ddevice.cc237 int close_pipe[2]; in read_thread() local
252 if (pipe(close_pipe) < 0) { in read_thread()
254 close_pipe[0] = 0; in read_thread()
255 close_pipe[1] = 0; in read_thread()
258 tr_closer = close_pipe[1]; in read_thread()
259 max_fd = (close_pipe[0] > tr_driver) ? close_pipe[0] : tr_driver; in read_thread()
271 if (close_pipe[0] > 0) { in read_thread()
272 FD_SET(close_pipe[0], &rfds); in read_thread()
322 close(close_pipe[0]); in read_thread()
323 close(close_pipe[1]); in read_thread()