Home
last modified time | relevance | path

Searched refs:tempPath (Results 1 – 1 of 1) sorted by relevance

/system/core/init/
Dproperty_service.cpp120 char tempPath[PATH_MAX]; in write_persistent_property() local
124 snprintf(tempPath, sizeof(tempPath), "%s/.temp.XXXXXX", PERSISTENT_PROPERTY_DIR); in write_persistent_property()
125 fd = mkstemp(tempPath); in write_persistent_property()
127 PLOG(ERROR) << "Unable to write persistent property to temp file " << tempPath; in write_persistent_property()
135 if (rename(tempPath, path)) { in write_persistent_property()
136 PLOG(ERROR) << "Unable to rename persistent property file " << tempPath << " to " << path; in write_persistent_property()
137 unlink(tempPath); in write_persistent_property()