Searched defs:tempPath (Results 1 - 1 of 1) sorted by path

/system/core/init/
H A Dproperty_service.c251 const char *tempPath = PERSISTENT_PROPERTY_DIR "/.temp"; local
257 fd = open(tempPath, O_WRONLY|O_CREAT|O_TRUNC, 0600);
259 ERROR("Unable to write persistent property to temp file %s errno: %d\n", tempPath, errno);
265 if (rename(tempPath, path)) {
266 unlink(tempPath);
267 ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path);

Completed in 20 milliseconds