HomeSort by: relevance | last modified time | path
    Searched defs:tmp_name (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitProtExecAllocator.c 106 char tmp_name[256]; local in function:create_tempfile
114 if (len > 0 && len < sizeof(tmp_name)) {
115 strcpy(tmp_name, P_tmpdir);
119 strcpy(tmp_name, "/tmp");
123 strcpy(tmp_name, "/tmp");
130 if (len > 0 && len < sizeof(tmp_name)) {
131 strcpy(tmp_name, dir);
136 SLJIT_ASSERT(tmp_name_len > 0 && tmp_name_len < sizeof(tmp_name));
138 while (tmp_name_len > 0 && tmp_name[tmp_name_len - 1] == '/') {
140 tmp_name[tmp_name_len] = '\0'
    [all...]
  /src/bin/pax/
file_subs.c 147 arcn->tmp_name = malloc(arcn->nlen + 8);
148 if (arcn->tmp_name == NULL) {
154 xtmp_name = arcn->tmp_name;
163 (void)snprintf(arcn->tmp_name, arcn->nlen + 8, "%s.XXXXXX",
165 fd = mkstemp(arcn->tmp_name);
171 syswarn(1, oerrno, "Cannot create %s", arcn->tmp_name);
173 free(arcn->tmp_name);
174 arcn->tmp_name = NULL;
190 char *tmp_name; local in function:file_cleanup
195 tmp_name = (arcn->tmp_name != NULL) ? arcn->tmp_name : arcn->name
224 char *tmp_name; local in function:file_close
    [all...]
pax.h 115 char *tmp_name; /* tmp name used to restore */ member in struct:__anon7bda4eac0108

Completed in 15 milliseconds