OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tmpFileName
(Results
1 - 2
of
2
) sorted by null
/external/svox/pico/tts/
com_svox_picottsengine.cpp
360
char*
tmpFileName
= (char*)malloc(PICO_MAX_DATAPATH_NAME_SIZE + PICO_MAX_FILE_NAME_SIZE);
361
strcpy((char*)
tmpFileName
, pico_alt_lingware_path);
362
strcat((char*)
tmpFileName
, (const char*)picoInternalTaLingware[langIndex]);
363
pFile = fopen(
tmpFileName
, "r");
369
free(
tmpFileName
);
[
all
...]
/system/security/keystore/
keystore.cpp
612
const char*
tmpFileName
= ".tmp";
613
int out = TEMP_FAILURE_RETRY(open(
tmpFileName
,
616
ALOGW("could not open file: %s: %s",
tmpFileName
, strerror(errno));
625
unlink(
tmpFileName
);
628
if (rename(
tmpFileName
, filename) == -1) {
[
all
...]
Completed in 210 milliseconds