Lines Matching defs:file
5 * you may not use this file except in compliance with the License.
66 // handle of the file to play
67 FILE *file;
69 // has the app reached the end of the file
120 rewind(file);
193 nbRead = fread(pBufferData, BUFFER_SIZE, 1, file);
301 nbRead = fread(dataCache, BUFFER_SIZE, NB_BUFFERS, file);
349 // open the file to play
350 file = fopen(utf8, "rb");
351 if (file == NULL) {
499 // close the file
500 if (file != NULL) {
501 fclose(file);
502 file = NULL;
527 if (NULL != playerBQItf && NULL != file) {