Home
last modified time | relevance | path

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

/external/libxcam/xcore/
Dxcam_common.cpp102 FILE* p_file = fopen (log_file_name, "ab+"); in xcam_print_log() local
103 if (NULL != p_file) { in xcam_print_log()
104 fwrite (buffer, sizeof (buffer[0]), strlen (buffer), p_file); in xcam_print_log()
105 fclose (p_file); in xcam_print_log()
/external/pdfium/third_party/libopenjpeg20/
Dopenjpeg.c92 FILE * p_file) in opj_read_from_file() argument
94 OPJ_SIZE_T l_nb_read = fread(p_buffer, 1, p_nb_bytes, p_file); in opj_read_from_file()
98 static OPJ_UINT64 opj_get_data_length_from_file(FILE * p_file) in opj_get_data_length_from_file() argument
102 OPJ_FSEEK(p_file, 0, SEEK_END); in opj_get_data_length_from_file()
103 file_length = (OPJ_OFF_T)OPJ_FTELL(p_file); in opj_get_data_length_from_file()
104 OPJ_FSEEK(p_file, 0, SEEK_SET); in opj_get_data_length_from_file()
110 FILE * p_file) in opj_write_from_file() argument
112 return fwrite(p_buffer, 1, p_nb_bytes, p_file); in opj_write_from_file()
1015 FILE *p_file; in opj_stream_create_file_stream() local
1028 p_file = fopen(fname, mode); in opj_stream_create_file_stream()
[all …]