Home | History | Annotate | Download | only in tts

Lines Matching refs:fileName

243     char* fileName = (char*)malloc(PICO_MAX_DATAPATH_NAME_SIZE + PICO_MAX_FILE_NAME_SIZE);
246 strcpy((char*)fileName, PICO_SYSTEM_LINGWARE_PATH);
247 strcat((char*)fileName, (const char*)picoInternalTaLingware[langIndex]);
248 pFile = fopen(fileName, "r");
253 strcpy((char*)fileName, PICO_SYSTEM_LINGWARE_PATH);
254 strcat((char*)fileName, (const char*)picoInternalSgLingware[langIndex]);
255 pFile = fopen(fileName, "r");
259 free(fileName);
266 strcpy((char*)fileName, pico_alt_lingware_path);
267 strcat((char*)fileName, (const char*)picoInternalTaLingware[langIndex]);
268 pFile = fopen(fileName, "r");
270 free(fileName);
276 strcpy((char*)fileName, pico_alt_lingware_path);
277 strcat((char*)fileName, (const char*)picoInternalSgLingware[langIndex]);
278 pFile = fopen(fileName, "r");
280 free(fileName);
284 free(fileName);