Lines Matching full:temp

86   char *temp;  in info_find_fullpath()  local
105 temp = info_absolute_file (partial); in info_find_fullpath()
111 temp = info_absolute_file (expansion); in info_find_fullpath()
115 temp = expansion; in info_find_fullpath()
136 temp = info_absolute_file (local_temp_filename); /* try extensions */ in info_find_fullpath()
137 if (!temp) in info_find_fullpath()
141 temp = info_file_in_path (partial, infopath); in info_find_fullpath()
143 if (temp) in info_find_fullpath()
145 remember_info_filename (partial, temp); in info_find_fullpath()
146 if (strlen (temp) > (unsigned int) local_temp_filename_size) in info_find_fullpath()
149 (local_temp_filename_size = (50 + strlen (temp)))); in info_find_fullpath()
150 strcpy (local_temp_filename, temp); in info_find_fullpath()
151 free (temp); in info_find_fullpath()
178 char *temp; in info_file_in_path() local
190 temp = (char *)xmalloc (30 + strlen (temp_dirname) + strlen (filename)); in info_file_in_path()
191 strcpy (temp, temp_dirname); in info_file_in_path()
192 if (!IS_SLASH (temp[(strlen (temp)) - 1])) in info_file_in_path()
193 strcat (temp, "/"); in info_file_in_path()
194 strcat (temp, filename); in info_file_in_path()
196 pre_suffix_length = strlen (temp); in info_file_in_path()
202 strcpy (temp + pre_suffix_length, info_suffixes[i]); in info_file_in_path()
204 statable = (stat (temp, &finfo) == 0); in info_file_in_path()
212 return (temp); in info_file_in_path()
218 newpath = xstrdup (temp); in info_file_in_path()
225 free (temp); in info_file_in_path()
236 pre_compress_suffix_length = strlen (temp); in info_file_in_path()
240 strcpy (temp + pre_compress_suffix_length, in info_file_in_path()
243 statable = (stat (temp, &finfo) == 0); in info_file_in_path()
245 return (temp); in info_file_in_path()
249 free (temp); in info_file_in_path()
395 char *temp = xstrdup (infopath); in info_add_path() local
398 strcat (infopath, temp); in info_add_path()
399 free (temp); in info_add_path()
538 char *temp; in filesys_read_compressed() local
540 temp = (char *)xmalloc (5 + strlen (command)); in filesys_read_compressed()
541 sprintf (temp, "%s...", command); in filesys_read_compressed()
542 message_in_echo_area ("%s", temp, NULL); in filesys_read_compressed()
543 free (temp); in filesys_read_compressed()