Home | History | Annotate | Download | only in import

Lines Matching refs:tmp_dir

54   char *tmp_dir;
59 tmp_dir = strdup (dir);
60 if (!tmp_dir)
66 strip_trailing_slashes (tmp_dir);
70 tmp_dir = (char *) dir;
75 char *last = last_component (tmp_dir);
80 if (stat (tmp_dir, &st) == 0 || errno == EOVERFLOW)
87 ret_val = mkdir (tmp_dir, mode);
89 if (tmp_dir != dir)
90 free (tmp_dir);