Lines Matching refs:fileName
255 char* fileName = (char*)malloc(PICO_MAX_DATAPATH_NAME_SIZE + PICO_MAX_FILE_NAME_SIZE);
258 strcpy((char*)fileName, PICO_SYSTEM_LINGWARE_PATH);
259 strcat((char*)fileName, (const char*)picoInternalTaLingware[langIndex]);
260 pFile = fopen(fileName, "r");
265 strcpy((char*)fileName, PICO_SYSTEM_LINGWARE_PATH);
266 strcat((char*)fileName, (const char*)picoInternalSgLingware[langIndex]);
267 pFile = fopen(fileName, "r");
271 free(fileName);
278 strcpy((char*)fileName, pico_alt_lingware_path);
279 strcat((char*)fileName, (const char*)picoInternalTaLingware[langIndex]);
280 pFile = fopen(fileName, "r");
282 free(fileName);
288 strcpy((char*)fileName, pico_alt_lingware_path);
289 strcat((char*)fileName, (const char*)picoInternalSgLingware[langIndex]);
290 pFile = fopen(fileName, "r");
292 free(fileName);
296 free(fileName);