Home
last modified time | relevance | path

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

/system/core/init/
Dproperty_service.cpp124 char tempPath[PATH_MAX]; in write_persistent_property() local
128 snprintf(tempPath, sizeof(tempPath), "%s/.temp.XXXXXX", PERSISTENT_PROPERTY_DIR); in write_persistent_property()
129 fd = mkstemp(tempPath); in write_persistent_property()
131 … ERROR("Unable to write persistent property to temp file %s: %s\n", tempPath, strerror(errno)); in write_persistent_property()
139 if (rename(tempPath, path)) { in write_persistent_property()
140 unlink(tempPath); in write_persistent_property()
141 ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path); in write_persistent_property()