Lines Matching refs:temp

88   char *temp;  in info_find_fullpath()  local
107 temp = info_absolute_file (partial); in info_find_fullpath()
113 temp = info_absolute_file (expansion); in info_find_fullpath()
117 temp = expansion; in info_find_fullpath()
138 temp = info_absolute_file (local_temp_filename); /* try extensions */ in info_find_fullpath()
139 if (!temp) in info_find_fullpath()
143 temp = info_file_in_path (partial, infopath); in info_find_fullpath()
145 if (temp) in info_find_fullpath()
147 remember_info_filename (partial, temp); in info_find_fullpath()
148 if (strlen (temp) > (unsigned int) local_temp_filename_size) in info_find_fullpath()
151 (local_temp_filename_size = (50 + strlen (temp)))); in info_find_fullpath()
152 strcpy (local_temp_filename, temp); in info_find_fullpath()
153 free (temp); in info_find_fullpath()
180 char *temp; in info_file_in_path() local
192 temp = (char *)xmalloc (30 + strlen (temp_dirname) + strlen (filename)); in info_file_in_path()
193 strcpy (temp, temp_dirname); in info_file_in_path()
194 if (!IS_SLASH (temp[(strlen (temp)) - 1])) in info_file_in_path()
195 strcat (temp, "/"); in info_file_in_path()
196 strcat (temp, filename); in info_file_in_path()
198 pre_suffix_length = strlen (temp); in info_file_in_path()
204 strcpy (temp + pre_suffix_length, info_suffixes[i]); in info_file_in_path()
206 statable = (stat (temp, &finfo) == 0); in info_file_in_path()
214 return (temp); in info_file_in_path()
220 newpath = xstrdup (temp); in info_file_in_path()
227 free (temp); in info_file_in_path()
238 pre_compress_suffix_length = strlen (temp); in info_file_in_path()
242 strcpy (temp + pre_compress_suffix_length, in info_file_in_path()
245 statable = (stat (temp, &finfo) == 0); in info_file_in_path()
247 return (temp); in info_file_in_path()
251 free (temp); in info_file_in_path()
397 char *temp = xstrdup (infopath); in info_add_path() local
400 strcat (infopath, temp); in info_add_path()
401 free (temp); in info_add_path()
540 char *temp; in filesys_read_compressed() local
542 temp = (char *)xmalloc (5 + strlen (command)); in filesys_read_compressed()
543 sprintf (temp, "%s...", command); in filesys_read_compressed()
544 message_in_echo_area ("%s", temp, NULL); in filesys_read_compressed()
545 free (temp); in filesys_read_compressed()