Home
last modified time | relevance | path

Searched refs:apath (Results 1 – 2 of 2) sorted by relevance

/ndk/sources/host-tools/make-3.81/
Damiga.c95 struct AnchorPath * apath; in wildcard_expansion() local
97 if ( (apath = AllocMem (sizeof (struct AnchorPath) + PATH_SIZE, in wildcard_expansion()
101 apath->ap_Strlen = PATH_SIZE; in wildcard_expansion()
103 if (MatchFirst (wc, apath) == 0) in wildcard_expansion()
107 o = variable_buffer_output (o, apath->ap_Buf, in wildcard_expansion()
108 strlen (apath->ap_Buf)); in wildcard_expansion()
110 } while (MatchNext (apath) == 0); in wildcard_expansion()
113 MatchEnd (apath); in wildcard_expansion()
114 FreeMem (apath, sizeof (struct AnchorPath) + PATH_SIZE); in wildcard_expansion()
Dfunction.c1882 abspath (const char *name, char *apath) in abspath() argument
1887 if (name[0] == '\0' || apath == NULL) in abspath()
1890 apath_limit = apath + GET_PATH_MAX; in abspath()
1898 strcpy (apath, starting_directory); in abspath()
1900 dest = strchr (apath, '\0'); in abspath()
1904 apath[0] = '/'; in abspath()
1905 dest = apath + 1; in abspath()
1929 if (dest > apath + 1) in abspath()
1947 if (dest > apath + 1 && dest[-1] == '/') in abspath()
1952 return apath; in abspath()