Home | History | Annotate | Download | only in camera

Lines Matching defs:file_fd

2979                     int file_fd = open(buf, O_RDWR | O_CREAT, 0777);
2981 if (file_fd < 0) {
2987 written = write(file_fd, (uint8_t *)frame->buffer,
2992 close(file_fd);
3499 int file_fd = open(buf, O_RDWR | O_CREAT, 0777);
3501 if (file_fd < 0) {
3506 write(file_fd, (const void *)vframe->buffer,
3509 close(file_fd);
6734 int file_fd = open("/data/LiveSnapshot.jpg", O_RDWR | O_CREAT, 0777);
6736 if (file_fd < 0) {
6741 write(file_fd, (uint8_t *)mJpegLiveSnapMapped->data,jpeg_size);
6743 close(file_fd);