HomeSort by: relevance | last modified time | path
    Searched refs:archive_pathmatch (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/libarchive/dist/libarchive/test/
test_archive_pathmatch.c 28 #include "archive_pathmatch.h"
48 assertEqualInt(1, archive_pathmatch("a/b/c", "a/b/c", 0));
49 assertEqualInt(0, archive_pathmatch("a/b/", "a/b/c", 0));
50 assertEqualInt(0, archive_pathmatch("a/b", "a/b/c", 0));
51 assertEqualInt(0, archive_pathmatch("a/b/c", "a/b/", 0));
52 assertEqualInt(0, archive_pathmatch("a/b/c", "a/b", 0));
55 assertEqualInt(0, archive_pathmatch("a/b/c", NULL, 0));
59 assertEqualInt(1, archive_pathmatch("","", 0));
60 assertEqualInt(0, archive_pathmatch("","a", 0));
61 assertEqualInt(1, archive_pathmatch("*","", 0))
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_pathmatch.h 47 #define archive_pathmatch(p, s, f) __archive_pathmatch(p, s, f) macro
archive_match.c 45 #include "archive_pathmatch.h"
794 return (archive_pathmatch(p, (const char *)pn, flag));
825 return (archive_pathmatch(p, (const char *)pn, flag));
  /src/external/bsd/libarchive/lib/libarchive/
Makefile 47 archive_pathmatch.c \

Completed in 21 milliseconds