/openbsd/gnu/usr.bin/perl/ext/File-Glob/ |
H A D | bsd_glob.c | 165 static DIR *g_opendir(Char *, glob_t *); 167 static int g_stat(Char *, Stat_t *, glob_t *); 168 static int glob0(const Char *, glob_t *); 171 glob_t *, size_t *); 177 static int globexp1(const Char *, glob_t *); 299 globexp1(const Char *pattern, glob_t *pglob) 323 glob_t *pglob, int *rv) 511 glob0(const Char *pattern, glob_t *pglob) 998 bsd_globfree(glob_t *pglob) 1014 g_opendir(Char *str, glob_t *pglob) [all …]
|
H A D | bsd_glob.h | 60 } glob_t; typedef 83 int bsd_glob(const char *, int, int (*)(const char *, int), glob_t *); 84 void bsd_globfree(glob_t *);
|
H A D | Glob.xs | 40 glob_t pglob; in doglob() 48 memset(&pglob, 0, sizeof(glob_t)); in doglob()
|
/openbsd/lib/libc/gen/ |
H A D | glob.c | 143 static int g_lstat(Char *, struct stat *, glob_t *); 144 static DIR *g_opendir(Char *, glob_t *); 147 static int g_stat(Char *, struct stat *, glob_t *); 151 glob_t *, struct glob_lim *); 153 Char *, Char *, glob_t *, struct glob_lim *); 157 globtilde(const Char *, Char *, size_t, glob_t *); 168 glob_t *pglob) in glob() 961 globfree(glob_t *pglob) in globfree() 983 g_opendir(Char *str, glob_t *pglob) in g_opendir() 1001 g_lstat(Char *fn, struct stat *sb, glob_t *pglob) in g_lstat() [all …]
|
/openbsd/include/ |
H A D | glob.h | 70 } glob_t; typedef 99 glob_t *__restrict); 100 void globfree(glob_t *);
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_platform_limits_freebsd.cpp | 406 CHECK_TYPE_SIZE(glob_t); 407 CHECK_SIZE_AND_OFFSET(glob_t, gl_pathc); 408 CHECK_SIZE_AND_OFFSET(glob_t, gl_pathv); 409 CHECK_SIZE_AND_OFFSET(glob_t, gl_offs); 410 CHECK_SIZE_AND_OFFSET(glob_t, gl_flags); 411 CHECK_SIZE_AND_OFFSET(glob_t, gl_closedir); 412 CHECK_SIZE_AND_OFFSET(glob_t, gl_readdir); 413 CHECK_SIZE_AND_OFFSET(glob_t, gl_opendir); 414 CHECK_SIZE_AND_OFFSET(glob_t, gl_lstat); 415 CHECK_SIZE_AND_OFFSET(glob_t, gl_stat);
|
H A D | sanitizer_platform_limits_solaris.cpp | 207 COMPILER_CHECK(sizeof(__sanitizer_glob_t) <= sizeof(glob_t)); 208 CHECK_SIZE_AND_OFFSET(glob_t, gl_pathc); 209 CHECK_SIZE_AND_OFFSET(glob_t, gl_pathv); 210 CHECK_SIZE_AND_OFFSET(glob_t, gl_offs);
|
H A D | sanitizer_platform_limits_posix.cpp | 1021 CHECK_TYPE_SIZE(glob_t); 1022 CHECK_SIZE_AND_OFFSET(glob_t, gl_pathc); 1023 CHECK_SIZE_AND_OFFSET(glob_t, gl_pathv); 1024 CHECK_SIZE_AND_OFFSET(glob_t, gl_offs); 1025 CHECK_SIZE_AND_OFFSET(glob_t, gl_flags); 1026 CHECK_SIZE_AND_OFFSET(glob_t, gl_closedir); 1027 CHECK_SIZE_AND_OFFSET(glob_t, gl_readdir); 1028 CHECK_SIZE_AND_OFFSET(glob_t, gl_opendir); 1029 CHECK_SIZE_AND_OFFSET(glob_t, gl_lstat); 1030 CHECK_SIZE_AND_OFFSET(glob_t, gl_stat);
|
H A D | sanitizer_platform_limits_netbsd.cpp | 2529 CHECK_TYPE_SIZE(glob_t); 2530 CHECK_SIZE_AND_OFFSET(glob_t, gl_pathc); 2531 CHECK_SIZE_AND_OFFSET(glob_t, gl_pathv); 2532 CHECK_SIZE_AND_OFFSET(glob_t, gl_offs); 2533 CHECK_SIZE_AND_OFFSET(glob_t, gl_flags); 2534 CHECK_SIZE_AND_OFFSET(glob_t, gl_closedir); 2535 CHECK_SIZE_AND_OFFSET(glob_t, gl_readdir); 2536 CHECK_SIZE_AND_OFFSET(glob_t, gl_opendir); 2537 CHECK_SIZE_AND_OFFSET(glob_t, gl_lstat); 2538 CHECK_SIZE_AND_OFFSET(glob_t, gl_stat);
|
/openbsd/usr.bin/ssh/ |
H A D | sftp-glob.c | 33 int (*)(const char *, int), glob_t *); 111 int (*errfunc)(const char *, int), glob_t *pglob) in sftp_glob()
|
H A D | sftp-usergroup.h | 20 void get_remote_user_groups_from_glob(struct sftp_conn *conn, glob_t *g);
|
H A D | sftp-usergroup.c | 150 collect_ids_from_glob(glob_t *g, int user, u_int **idsp, u_int *nidsp) in collect_ids_from_glob() 174 get_remote_user_groups_from_glob(struct sftp_conn *conn, glob_t *g) in get_remote_user_groups_from_glob()
|
H A D | sftp.c | 86 glob_t *sort_glob; 95 int (*)(const char *, int), glob_t *); /* proto for sftp-glob.c */ 632 glob_t g; in process_get() 719 glob_t g; in process_put() 947 glob_t g; in do_globbed_ls() 1537 glob_t g; in parse_dispatch_command() 1976 glob_t g; in complete_match()
|
H A D | auth2-pubkey.c | 322 glob_t gl; in match_principals_file() 809 glob_t gl; in user_key_allowed()
|
H A D | scp.c | 162 int (*)(const char *, int), glob_t *); /* proto for sftp-glob.c */ 1495 glob_t g; in sink_sftp() 1926 glob_t g; in throughlocal_sftp()
|
/openbsd/libexec/ftpd/ |
H A D | popen.c | 79 glob_t gl; in ftpd_ls()
|
/openbsd/lib/libutil/ |
H A D | login_fbtab.c | 137 glob_t g; in login_protect()
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
H A D | CFString.cpp | 146 glob_t globbuf; in GlobPath()
|
/openbsd/gnu/llvm/lldb/source/Host/macosx/cfcpp/ |
H A D | CFCString.cpp | 110 glob_t globbuf; in ExpandTildeInPath()
|
/openbsd/regress/lib/libc/glob/ |
H A D | globtest.c | 106 glob_t gl; in test_glob()
|
/openbsd/usr.bin/tmux/ |
H A D | cmd-source-file.c | 162 glob_t g; in cmd_source_file_exec()
|
/openbsd/usr.bin/less/ |
H A D | filename.c | 389 glob_t list; in lglob()
|
/openbsd/usr.bin/mail/ |
H A D | fio.c | 417 glob_t names; in expand()
|
/openbsd/sbin/restore/ |
H A D | interactive.c | 75 glob_t glob; /* globbing information */
|
/openbsd/bin/csh/ |
H A D | glob.c | 370 glob_t globv; in libglob()
|