Searched defs:relro_tmp (Results 1 - 1 of 1) sorted by relevance

/frameworks/webview/chromium/loader/
H A Dloader.cpp77 char relro_tmp[strlen(relro) + sizeof(tmpsuffix)]; local
78 strlcpy(relro_tmp, relro, sizeof(relro_tmp));
79 strlcat(relro_tmp, tmpsuffix, sizeof(relro_tmp));
80 int tmp_fd = TEMP_FAILURE_RETRY(mkstemp(relro_tmp));
82 ALOGE("Failed to create temporary file %s: %s", relro_tmp, strerror(errno));
94 unlink(relro_tmp);
98 chmod(relro_tmp, S_IRUSR | S_IRGRP | S_IROTH) != 0 ||
99 rename(relro_tmp, relr
[all...]

Completed in 58 milliseconds