Lines Matching refs:path_copy
1372 char *path_copy; in strip_trailing_slashes() local
1375 path_copy = g_strdup (path); in strip_trailing_slashes()
1376 len = strlen (path_copy); in strip_trailing_slashes()
1377 while (len > 1 && path_copy[len-1] == '/') in strip_trailing_slashes()
1378 path_copy[--len] = 0; in strip_trailing_slashes()
1380 return path_copy; in strip_trailing_slashes()
1428 char *path_copy; in get_parent() local
1430 path_copy = strip_trailing_slashes (path); in get_parent()
1432 parent = g_path_get_dirname (path_copy); in get_parent()
1434 strcmp (parent, path_copy) == 0) in get_parent()
1437 g_free (path_copy); in get_parent()
1440 g_free (path_copy); in get_parent()