Lines Matching defs:basename
118 * Each call to that iterator's next() method returns the basename
119 * of an entry in the wildcard's directory. The basename's memory
342 wildcardConcat(const char *wildcard, const char *basename)
345 int baselen = (int)JLI_StrLen(basename);
347 /* Replace the trailing '*' with basename */
349 memcpy(filename+wildlen-1, basename, baselen+1);
356 const char *basename;
361 while ((basename = WildcardIterator_next(it)) != NULL)
362 if (isJarFileName(basename))
363 FileList_add(fl, wildcardConcat(wildcard, basename));