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

/system/core/libcutils/
H A Dashmem-host.c43 char template[PATH_MAX]; local
44 snprintf(template, sizeof(template), "/tmp/android-ashmem-%d-XXXXXXXXX", getpid());
45 int fd = mkstemp(template);
46 if (fd != -1 && TEMP_FAILURE_RETRY(ftruncate(fd, size)) != -1 && unlink(template) != -1) {

Completed in 60 milliseconds