Lines Matching refs:path
246 char *path, *s; in xcoff64_core_file_matches_executable_p() local
263 path = bfd_malloc (alloc); in xcoff64_core_file_matches_executable_p()
264 if (path == NULL) in xcoff64_core_file_matches_executable_p()
267 s = path; in xcoff64_core_file_matches_executable_p()
277 if (s == path + alloc) in xcoff64_core_file_matches_executable_p()
282 n = bfd_realloc (path, alloc); in xcoff64_core_file_matches_executable_p()
286 s = n + (path - s); in xcoff64_core_file_matches_executable_p()
287 path = n; in xcoff64_core_file_matches_executable_p()
291 str1 = strrchr (path, '/'); in xcoff64_core_file_matches_executable_p()
295 str1 = str1 != NULL ? str1 + 1 : path; in xcoff64_core_file_matches_executable_p()
302 free (path); in xcoff64_core_file_matches_executable_p()