OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tmpFileName
(Results
1 - 4
of
4
) sorted by null
/system/security/keystore/
blob.cpp
130
const char*
tmpFileName
= ".tmp";
132
TEMP_FAILURE_RETRY(open(
tmpFileName
, O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR));
134
ALOGW("could not open file: %s: %s",
tmpFileName
, strerror(errno));
143
unlink(
tmpFileName
);
146
if (rename(
tmpFileName
, filename) == -1) {
keystore.cpp
670
const char*
tmpFileName
= ".metadata.tmp";
672
TEMP_FAILURE_RETRY(open(
tmpFileName
, O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR));
683
rename(
tmpFileName
, sMetaDataFile);
/external/deqp/framework/qphelper/
qpCrashHandler.c
535
char
tmpFileName
[] = "backtrace-XXXXXX";
536
int tmpFile = mkstemp(
tmpFileName
);
540
writeInfoFormat(writeInfo, userPtr, "Failed to create tmpfile '%s' for the backtrace %s.",
tmpFileName
, strerror(errno));
550
remove(
tmpFileName
);
613
writeInfoFormat(writeInfo, userPtr, "Unexpected EOF reading backtrace file '%s'",
tmpFileName
);
/external/svox/pico/tts/
com_svox_picottsengine.cpp
359
char*
tmpFileName
= (char*)malloc(PICO_MAX_DATAPATH_NAME_SIZE + PICO_MAX_FILE_NAME_SIZE);
360
strcpy((char*)
tmpFileName
, pico_alt_lingware_path);
361
strcat((char*)
tmpFileName
, (const char*)picoInternalTaLingware[langIndex]);
362
pFile = fopen(
tmpFileName
, "r");
368
free(
tmpFileName
);
[
all
...]
Completed in 266 milliseconds