Symbol: Char
lib/libc/gen/glob.c
154
#define CHAR(c) ((Char)((c)&M_CHAR))
lib/libc/gen/glob.c
155
#define META(c) ((Char)((c)|M_QUOTE))
lib/libc/gen/glob.c
166
static int g_Ctoc(const Char *, char *, size_t);
lib/libc/gen/glob.c
167
static int g_lstat(Char *, struct stat *, glob_t *);
lib/libc/gen/glob.c
168
static DIR *g_opendir(Char *, glob_t *);
lib/libc/gen/glob.c
169
static const Char *g_strchr(const Char *, wchar_t);
lib/libc/gen/glob.c
171
static Char *g_strcat(Char *, const Char *);
lib/libc/gen/glob.c
173
static int g_stat(Char *, struct stat *, glob_t *);
lib/libc/gen/glob.c
174
static int glob0(const Char *, glob_t *, struct glob_limit *);
lib/libc/gen/glob.c
175
static int glob1(Char *, glob_t *, struct glob_limit *);
lib/libc/gen/glob.c
176
static int glob2(Char *, Char *, Char *, Char *, glob_t *,
lib/libc/gen/glob.c
178
static int glob3(Char *, Char *, Char *, Char *, Char *, glob_t *,
lib/libc/gen/glob.c
180
static int globextend(const Char *, glob_t *, struct glob_limit *);
lib/libc/gen/glob.c
181
static const Char *
lib/libc/gen/glob.c
182
globtilde(const Char *, Char *, size_t, glob_t *);
lib/libc/gen/glob.c
183
static int globexp1(const Char *, glob_t *, struct glob_limit *);
lib/libc/gen/glob.c
184
static int globexp2(const Char *, const Char *, glob_t *, int *,
lib/libc/gen/glob.c
186
static int match(Char *, Char *, Char *);
lib/libc/gen/glob.c
188
static void qprintf(const char *, Char *);
lib/libc/gen/glob.c
197
Char *bufnext, *bufend, patbuf[MAXPATHLEN], prot;
lib/libc/gen/glob.c
266
globexp1(const Char *pattern, glob_t *pglob, struct glob_limit *limit)
lib/libc/gen/glob.c
268
const Char* ptr = pattern;
lib/libc/gen/glob.c
295
globexp2(const Char *ptr, const Char *pattern, glob_t *pglob, int *rv,
lib/libc/gen/glob.c
299
Char *lm, *ls;
lib/libc/gen/glob.c
300
const Char *pe, *pm, *pm1, *pl;
lib/libc/gen/glob.c
301
Char patbuf[MAXPATHLEN];
lib/libc/gen/glob.c
399
static const Char *
lib/libc/gen/glob.c
400
globtilde(const Char *pattern, Char *patbuf, size_t patbuf_len, glob_t *pglob)
lib/libc/gen/glob.c
404
const Char *p;
lib/libc/gen/glob.c
405
Char *b, *eb;
lib/libc/gen/glob.c
466
glob0(const Char *pattern, glob_t *pglob, struct glob_limit *limit)
lib/libc/gen/glob.c
468
const Char *qpatnext;
lib/libc/gen/glob.c
471
Char *bufnext, c, patbuf[MAXPATHLEN];
lib/libc/gen/glob.c
559
glob1(Char *pattern, glob_t *pglob, struct glob_limit *limit)
lib/libc/gen/glob.c
561
Char pathbuf[MAXPATHLEN];
lib/libc/gen/glob.c
576
glob2(Char *pathbuf, Char *pathend, Char *pathend_last, Char *pattern,
lib/libc/gen/glob.c
580
Char *p, *q;
lib/libc/gen/glob.c
643
glob3(Char *pathbuf, Char *pathend, Char *pathend_last,
lib/libc/gen/glob.c
644
Char *pattern, Char *restpattern,
lib/libc/gen/glob.c
682
Char *dc;
lib/libc/gen/glob.c
750
globextend(const Char *path, glob_t *pglob, struct glob_limit *limit)
lib/libc/gen/glob.c
755
const Char *p;
lib/libc/gen/glob.c
802
match(Char *name, Char *pat, Char *patend)
lib/libc/gen/glob.c
805
Char c, k;
lib/libc/gen/glob.c
871
g_opendir(Char *str, glob_t *pglob)
lib/libc/gen/glob.c
889
g_lstat(Char *fn, struct stat *sb, glob_t *pglob)
lib/libc/gen/glob.c
903
g_stat(Char *fn, struct stat *sb, glob_t *pglob)
lib/libc/gen/glob.c
916
static const Char *
lib/libc/gen/glob.c
917
g_strchr(const Char *str, wchar_t ch)
lib/libc/gen/glob.c
928
g_Ctoc(const Char *str, char *buf, size_t len)
lib/libc/gen/glob.c
949
qprintf(const char *str, Char *s)
lib/libc/gen/glob.c
951
Char *p;
lib/libssh/openbsd-compat/glob.c
1015
g_lstat(Char *fn, struct stat *sb, glob_t *pglob)
lib/libssh/openbsd-compat/glob.c
1027
g_stat(Char *fn, struct stat *sb, glob_t *pglob)
lib/libssh/openbsd-compat/glob.c
1038
static Char *
lib/libssh/openbsd-compat/glob.c
1039
g_strchr(const Char *str, int ch)
lib/libssh/openbsd-compat/glob.c
1043
return ((Char *)str);
lib/libssh/openbsd-compat/glob.c
1049
g_Ctoc(const Char *str, char *buf, size_t len)
lib/libssh/openbsd-compat/glob.c
1061
qprintf(const char *str, Char *s)
lib/libssh/openbsd-compat/glob.c
1063
Char *p;
lib/libssh/openbsd-compat/glob.c
129
#define CHAR(c) ((Char)((c)&M_ASCII))
lib/libssh/openbsd-compat/glob.c
130
#define META(c) ((Char)((c)|M_QUOTE))
lib/libssh/openbsd-compat/glob.c
157
static int g_Ctoc(const Char *, char *, size_t);
lib/libssh/openbsd-compat/glob.c
158
static int g_lstat(Char *, struct stat *, glob_t *);
lib/libssh/openbsd-compat/glob.c
159
static DIR *g_opendir(Char *, glob_t *);
lib/libssh/openbsd-compat/glob.c
160
static Char *g_strchr(const Char *, int);
lib/libssh/openbsd-compat/glob.c
161
static int g_strncmp(const Char *, const char *, size_t);
lib/libssh/openbsd-compat/glob.c
162
static int g_stat(Char *, struct stat *, glob_t *);
lib/libssh/openbsd-compat/glob.c
163
static int glob0(const Char *, glob_t *, struct glob_lim *);
lib/libssh/openbsd-compat/glob.c
164
static int glob1(Char *, Char *, glob_t *, struct glob_lim *);
lib/libssh/openbsd-compat/glob.c
165
static int glob2(Char *, Char *, Char *, Char *, Char *, Char *,
lib/libssh/openbsd-compat/glob.c
167
static int glob3(Char *, Char *, Char *, Char *, Char *,
lib/libssh/openbsd-compat/glob.c
168
Char *, Char *, glob_t *, struct glob_lim *);
lib/libssh/openbsd-compat/glob.c
169
static int globextend(const Char *, glob_t *, struct glob_lim *,
lib/libssh/openbsd-compat/glob.c
171
static const Char *
lib/libssh/openbsd-compat/glob.c
172
globtilde(const Char *, Char *, size_t, glob_t *);
lib/libssh/openbsd-compat/glob.c
173
static int globexp1(const Char *, glob_t *, struct glob_lim *);
lib/libssh/openbsd-compat/glob.c
174
static int globexp2(const Char *, const Char *, glob_t *,
lib/libssh/openbsd-compat/glob.c
176
static int match(Char *, Char *, Char *);
lib/libssh/openbsd-compat/glob.c
178
static void qprintf(const char *, Char *);
lib/libssh/openbsd-compat/glob.c
187
Char *bufnext, *bufend, patbuf[PATH_MAX];
lib/libssh/openbsd-compat/glob.c
240
globexp1(const Char *pattern, glob_t *pglob, struct glob_lim *limitp)
lib/libssh/openbsd-compat/glob.c
242
const Char* ptr = pattern;
lib/libssh/openbsd-compat/glob.c
248
if ((ptr = (const Char *) g_strchr(ptr, LBRACE)) != NULL)
lib/libssh/openbsd-compat/glob.c
261
globexp2(const Char *ptr, const Char *pattern, glob_t *pglob,
lib/libssh/openbsd-compat/glob.c
265
Char *lm, *ls;
lib/libssh/openbsd-compat/glob.c
266
const Char *pe, *pm, *pl;
lib/libssh/openbsd-compat/glob.c
267
Char patbuf[PATH_MAX];
lib/libssh/openbsd-compat/glob.c
365
static const Char *
lib/libssh/openbsd-compat/glob.c
366
globtilde(const Char *pattern, Char *patbuf, size_t patbuf_len, glob_t *pglob)
lib/libssh/openbsd-compat/glob.c
370
const Char *p;
lib/libssh/openbsd-compat/glob.c
371
Char *b, *eb;
lib/libssh/openbsd-compat/glob.c
426
g_strncmp(const Char *s1, const char *s2, size_t n)
lib/libssh/openbsd-compat/glob.c
431
rv = *(Char *)s1 - *(const unsigned char *)s2++;
lib/libssh/openbsd-compat/glob.c
441
g_charclass(const Char **patternp, Char **bufnextp)
lib/libssh/openbsd-compat/glob.c
443
const Char *pattern = *patternp + 1;
lib/libssh/openbsd-compat/glob.c
444
Char *bufnext = *bufnextp;
lib/libssh/openbsd-compat/glob.c
445
const Char *colon;
lib/libssh/openbsd-compat/glob.c
460
*bufnext++ = (Char)(cc - &cclasses[0]);
lib/libssh/openbsd-compat/glob.c
475
glob0(const Char *pattern, glob_t *pglob, struct glob_lim *limitp)
lib/libssh/openbsd-compat/glob.c
477
const Char *qpatnext;
lib/libssh/openbsd-compat/glob.c
480
Char *bufnext, patbuf[PATH_MAX];
lib/libssh/openbsd-compat/glob.c
614
glob1(Char *pattern, Char *pattern_last, glob_t *pglob, struct glob_lim *limitp)
lib/libssh/openbsd-compat/glob.c
616
Char pathbuf[PATH_MAX];
lib/libssh/openbsd-compat/glob.c
632
glob2(Char *pathbuf, Char *pathbuf_last, Char *pathend, Char *pathend_last,
lib/libssh/openbsd-compat/glob.c
633
Char *pattern, Char *pattern_last, glob_t *pglob, struct glob_lim *limitp)
lib/libssh/openbsd-compat/glob.c
636
Char *p, *q;
lib/libssh/openbsd-compat/glob.c
700
glob3(Char *pathbuf, Char *pathbuf_last, Char *pathend, Char *pathend_last,
lib/libssh/openbsd-compat/glob.c
701
Char *pattern, Char *restpattern, Char *restpattern_last, glob_t *pglob,
lib/libssh/openbsd-compat/glob.c
743
Char *dc;
lib/libssh/openbsd-compat/glob.c
800
globextend(const Char *path, glob_t *pglob, struct glob_lim *limitp,
lib/libssh/openbsd-compat/glob.c
806
const Char *p;
lib/libssh/openbsd-compat/glob.c
906
match(Char *name, Char *pat, Char *patend)
lib/libssh/openbsd-compat/glob.c
909
Char c, k;
lib/libssh/openbsd-compat/glob.c
910
Char *nextp = NULL;
lib/libssh/openbsd-compat/glob.c
911
Char *nextn = NULL;
lib/libssh/openbsd-compat/glob.c
939
Char idx = *pat & M_MASK;
lib/libssh/openbsd-compat/glob.c
997
g_opendir(Char *str, glob_t *pglob)