Lines Matching refs:path
50 char *path; in __getcwd() local
68 path = malloc (alloc_size); in __getcwd()
69 if (path == NULL) in __getcwd()
76 path = buf; in __getcwd()
80 retval = INLINE_SYSCALL (getcwd, 2, path, alloc_size); in __getcwd()
81 if (retval > 0 && path[0] == '/') in __getcwd()
86 buf = realloc (path, (size_t) retval); in __getcwd()
91 buf = path; in __getcwd()
105 free (path); in __getcwd()
106 path = NULL; in __getcwd()
110 result = __getcwd_generic (path, size); in __getcwd()
114 free (path); in __getcwd()
127 free (path); in __getcwd()