Lines Matching refs:file_fd
482 int file_fd = open(buf, O_RDWR| O_CREAT, 0644); in dumpYUV() local
483 if (file_fd >= 0) { in dumpYUV()
484 ssize_t written_len = write(file_fd, frame->buffer, offset.frame_len); in dumpYUV()
486 close(file_fd); in dumpYUV()
1900 int file_fd = open(buf, O_RDWR| O_CREAT, 0644); in dumpRawSnapshot() local
1901 if (file_fd >= 0) { in dumpRawSnapshot()
1902 ssize_t written_len = write(file_fd, frame->buffer, frame->frame_len); in dumpRawSnapshot()
1904 close(file_fd); in dumpRawSnapshot()
2129 int file_fd = open(buf, O_RDWR| O_CREAT, 0777); in dumpRawSnapshot() local
2130 if (file_fd >= 0) { in dumpRawSnapshot()
2132 write(file_fd, frame->buffer, offset.frame_len); in dumpRawSnapshot()
2134 close(file_fd); in dumpRawSnapshot()