HomeSort by relevance Sort by last modified time
    Searched refs:p_file (Results 1 - 4 of 4) sorted by null

  /hardware/broadcom/libbt/src/
conf.c 95 FILE *p_file; local
103 if ((p_file = fopen(p_path, "r")) != NULL)
106 while (fgets(line, CONF_MAX_LINE_LEN+1, p_file) != NULL)
140 fclose(p_file);
  /external/bluetooth/bluedroid/bta/include/
bta_fs_ci.h 40 const char *p_file; member in struct:__anon5373
240 ** p_file - The file name associated with fd
248 BTA_API extern void bta_fs_ci_resume_op(int fd, tBTA_FS_CO_STATUS status, const char *p_file,
  /external/bluetooth/bluedroid/bta/fs/
bta_fs_ci.c 131 p_evt->p_file = NULL;
251 ** p_file - The file name associated with fd
259 void bta_fs_ci_resume_op(int fd, tBTA_FS_CO_STATUS status, const char *p_file,
263 UINT16 file_len = strlen(p_file) + 1;
274 BCM_STRNCPY_S (p, file_len, p_file, file_len-1);
276 p_evt->p_file = (const char *)p;
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
openjpeg.c 91 static OPJ_SIZE_T opj_read_from_file (void * p_buffer, OPJ_SIZE_T p_nb_bytes, FILE * p_file)
93 OPJ_SIZE_T l_nb_read = fread(p_buffer,1,p_nb_bytes,p_file);
97 static OPJ_UINT64 opj_get_data_length_from_file (FILE * p_file)
101 OPJ_FSEEK(p_file, 0, SEEK_END);
102 file_length = (OPJ_OFF_T)OPJ_FTELL(p_file);
103 OPJ_FSEEK(p_file, 0, SEEK_SET);
108 static OPJ_SIZE_T opj_write_from_file (void * p_buffer, OPJ_SIZE_T p_nb_bytes, FILE * p_file)
110 return fwrite(p_buffer,1,p_nb_bytes,p_file);
931 FILE *p_file; local
940 p_file = fopen(fname, mode)
    [all...]

Completed in 397 milliseconds