Lines Matching defs:filefd
30 int filefd;
64 vhd->filefd = lws_open(filepath, O_RDWR);
65 if (vhd->filefd == -1) {
71 tcflush(vhd->filefd, TCIOFLUSH);
74 if (ioctl(vhd->filefd, TIOCGSERIAL, &s_s) == 0) {
76 ioctl(vhd->filefd, TIOCSSERIAL, &s_s);
83 if (tcgetattr(vhd->filefd, &tio)) {
84 close(vhd->filefd);
85 vhd->filefd = -1;
119 tcsetattr(vhd->filefd, TCSANOW, &tio);
121 u.filefd = (lws_filefd_type)(long long)vhd->filefd;
126 close(vhd->filefd);
127 vhd->filefd = -1;
135 if (vhd && vhd->filefd != -1)
136 close(vhd->filefd);
149 n = (int)read(vhd->filefd, buf, sizeof(buf));