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

  /src/external/gpl2/texinfo/dist/info/
tilde.c 187 char *temp_name; local
204 temp_name = xmalloc (1 + strlen (&dirname[1])
207 strcpy (temp_name, temp_home);
209 temp_name[0] = 0;
210 strcat (temp_name, &dirname[1]);
212 dirname = xstrdup (temp_name);
213 free (temp_name);
241 temp_name = xmalloc (1 + strlen (expansion)
243 strcpy (temp_name, expansion);
244 strcat (temp_name, &dirname[i])
    [all...]
  /src/external/gpl3/binutils/dist/binutils/
arsup.c 40 static char *temp_name; variable
150 temp_name = make_tempname (real_name, &temp_fd);
152 if (temp_name == NULL)
160 obfd = bfd_fdopenw (temp_name, NULL, temp_fd);
166 program_name, temp_name);
358 smart_rename (temp_name, real_name, temp_fd, NULL, false);
360 free (temp_name);
  /src/external/gpl3/binutils.old/dist/binutils/
arsup.c 45 static char *temp_name; variable
155 temp_name = make_tempname (real_name, &temp_fd);
157 if (temp_name == NULL)
165 obfd = bfd_fdopenw (temp_name, NULL, temp_fd);
171 program_name, temp_name);
371 smart_rename (temp_name, real_name, temp_fd, NULL, false);
373 free (temp_name);
  /src/external/bsd/libarchive/dist/libarchive/
archive_util.c 248 struct archive_wstring temp_name; local
260 archive_string_init(&temp_name);
279 archive_wstrcpy(&temp_name, tmp);
282 if (archive_wstring_append_from_mbs(&temp_name, tmpdir,
285 if (temp_name.length == 0 ||
286 temp_name.s[temp_name.length-1] != L'/')
287 archive_wstrappend_wchar(&temp_name, L'/');
290 /* Check if temp_name is a directory. */
291 attr = GetFileAttributesW(temp_name.s)
502 struct archive_string temp_name; local
560 struct archive_string temp_name; local
    [all...]
  /src/external/mit/libuv/dist/src/unix/
ibmi.c 488 char* temp_name = uv__strdup(address->name); local
489 char* dot = strrchr(temp_name, '.');
492 if (strlen(temp_name) <= 10) {
493 rc = get_ibmi_physical_address(temp_name, &address->phys_addr);
496 uv__free(temp_name);
  /src/external/gpl3/gdb/dist/gdb/
darwin-nat.c 1861 gdb::char_vector temp_name = make_temp_filename (new_name); local
1862 scoped_fd to_fd = gdb_mkostemp_cloexec (&temp_name[0]);
1863 gdb::unlinker unlink_file_on_error (temp_name.data ());
1867 temp_name.data (), safe_strerror (errno));
1872 temp_name.data (), safe_strerror (errno));
1876 if (rename (temp_name.data (), new_name.c_str ()) != 0)
  /src/external/gpl3/gdb.old/dist/gdb/
darwin-nat.c 1858 gdb::char_vector temp_name = make_temp_filename (new_name); local
1859 scoped_fd to_fd = gdb_mkostemp_cloexec (&temp_name[0]);
1860 gdb::unlinker unlink_file_on_error (temp_name.data ());
1864 temp_name.data (), safe_strerror (errno));
1869 temp_name.data (), safe_strerror (errno));
1873 if (rename (temp_name.data (), new_name.c_str ()) != 0)
  /src/external/gpl3/gcc/dist/gcc/fortran/
iresolve.cc 51 char temp_name[15 + 2*GFC_MAX_SYMBOL_LEN + 5 + GFC_MAX_SYMBOL_LEN + 1]; local
67 ret = vsnprintf (temp_name, sizeof (temp_name), format, ap);
69 if (ret < 1 || ret >= (int) sizeof (temp_name)) /* Reject truncation. */
71 temp_name[sizeof (temp_name) - 1] = 0;
72 str = temp_name;
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
iresolve.cc 51 char temp_name[15 + 2*GFC_MAX_SYMBOL_LEN + 5 + GFC_MAX_SYMBOL_LEN + 1]; local
67 ret = vsnprintf (temp_name, sizeof (temp_name), format, ap);
69 if (ret < 1 || ret >= (int) sizeof (temp_name)) /* Reject truncation. */
71 temp_name[sizeof (temp_name) - 1] = 0;
72 str = temp_name;
  /src/external/gpl3/gcc/dist/gcc/
gcc.cc 2160 static struct temp_name {
2166 struct temp_name *next;
6373 struct temp_name *t;
6506 t = XNEW (struct temp_name);
2149 static struct temp_name { struct
  /src/external/gpl3/gcc.old/dist/gcc/
gcc.cc 2149 static struct temp_name {
2155 struct temp_name *next;
6260 struct temp_name *t;
6393 t = XNEW (struct temp_name);
2138 static struct temp_name { struct

Completed in 52 milliseconds