Lines Matching refs:file_fd
562 int file_fd = open(buf, O_RDWR | O_CREAT, 0777); in dumpYUV() local
564 if (file_fd >= 0) { in dumpYUV()
566 fchmod(file_fd, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); in dumpYUV()
568 written_len = write(file_fd, frame->buffer, frame->frame_len); in dumpYUV()
578 written_len += write(file_fd, data, in dumpYUV()
587 close(file_fd); in dumpYUV()
2420 int file_fd = open(buf, O_RDWR| O_CREAT, 0644); in dumpRawSnapshot() local
2421 if (file_fd >= 0) { in dumpRawSnapshot()
2422 ssize_t written_len = write(file_fd, frame->buffer, frame->frame_len); in dumpRawSnapshot()
2425 close(file_fd); in dumpRawSnapshot()
2641 int file_fd = open(buf, O_RDWR| O_CREAT, 0777); in dumpRawSnapshot() local
2642 if (file_fd >= 0) { in dumpRawSnapshot()
2644 write(file_fd, frame->buffer, offset.frame_len); in dumpRawSnapshot()
2647 close(file_fd); in dumpRawSnapshot()