Home
last modified time | relevance | path

Searched refs:gl_statv (Results 1 – 4 of 4) sorted by relevance

/dragonfly/lib/libssh/openbsd-compat/
H A Dglob.c194 pglob->gl_statv = NULL; in glob()
581 path_stat[i].gps_stat = pglob->gl_statv[o + i];
586 pglob->gl_statv[o + i] = path_stat[i].gps_stat;
821 free(pglob->gl_statv[i]);
825 free(pglob->gl_statv);
826 pglob->gl_statv = NULL;
851 pglob->gl_statv = statv;
987 if (pglob->gl_statv != NULL) {
989 free(pglob->gl_statv[i]);
991 free(pglob->gl_statv);
[all …]
H A Dglob.h62 struct stat **gl_statv; /* Stat entries corresponding to gl_pathv */ member
/dragonfly/crypto/openssh/
H A Dsftp-usergroup.c157 if (ruser_name(g->gl_statv[i]->st_uid) != NULL) in collect_ids_from_glob()
159 id = (u_int)g->gl_statv[i]->st_uid; in collect_ids_from_glob()
161 if (rgroup_name(g->gl_statv[i]->st_gid) != NULL) in collect_ids_from_glob()
163 id = (u_int)g->gl_statv[i]->st_gid; in collect_ids_from_glob()
H A Dsftp.c928 const struct stat *as = sort_glob->gl_statv[a]; in sglob_comp()
929 const struct stat *bs = sort_glob->gl_statv[b]; in sglob_comp()
987 if (g.gl_matchc == 1 && g.gl_statv[0] != NULL && in do_globbed_ls()
988 S_ISDIR(g.gl_statv[0]->st_mode)) { in do_globbed_ls()
1030 if (g.gl_statv[i] == NULL) { in do_globbed_ls()
1034 lname = ls_file(fname, g.gl_statv[i], 1, in do_globbed_ls()
1036 ruser_name(g.gl_statv[i]->st_uid), in do_globbed_ls()
1037 rgroup_name(g.gl_statv[i]->st_gid)); in do_globbed_ls()