Lines Matching full:full_dir_name
219 char *ptr,full_dir_name [500],dir_name [500],temp [500],temp2 [500];
228 strncpy (full_dir_name,dir_entry_ptr->name,dir_entry_ptr->name_len);
229 full_dir_name [dir_entry_ptr->name_len]=0;
232 ptr=parse_word (ptr,full_dir_name);
234 ptr=strchr (full_dir_name,'/');
236 if (ptr==full_dir_name) { /* Pathname is from root - Let the general cd do the job */
237 sprintf (temp,"cd %s",full_dir_name);type_ext2___cd (temp);return;
241 strcpy (dir_name,full_dir_name);
242 full_dir_name [0]=0;
246 strncpy (dir_name,full_dir_name,ptr-full_dir_name);
247 dir_name [ptr-full_dir_name]=0;
248 strcpy (full_dir_name,++ptr);
251 /* full_dir_name contains the rest */
279 strcat (temp2,full_dir_name);
294 if (full_dir_name [0] != 0) { /* And call ourself with the rest of the pathname */
295 sprintf (temp,"cd %s",full_dir_name);