Home
last modified time | relevance | path

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

/system/core/init/
Dproperty_service.cpp154 char tempPath[PATH_MAX]; in write_persistent_property() local
158 snprintf(tempPath, sizeof(tempPath), "%s/.temp.XXXXXX", PERSISTENT_PROPERTY_DIR); in write_persistent_property()
159 fd = mkstemp(tempPath); in write_persistent_property()
161 … ERROR("Unable to write persistent property to temp file %s: %s\n", tempPath, strerror(errno)); in write_persistent_property()
169 if (rename(tempPath, path)) { in write_persistent_property()
170 unlink(tempPath); in write_persistent_property()
171 ERROR("Unable to rename persistent property file %s to %s\n", tempPath, path); in write_persistent_property()