Home | History | Annotate | Download | only in posix

Lines Matching refs:udl

398         } *udl;
402 udl = xmalloc(sizeof(*udl));
403 dlist_add_nomalloc(&TT.argdata, (void *)udl);
405 if (*s == 'u') udl->u.uid = xgetpwnamid(ss[1])->pw_uid;
406 else if (*s == 'g') udl->u.gid = xgetgrnamid(ss[1])->gr_gid;
411 udl->u.tm = st.st_mtim;
415 udl = (void *)llist_pop(&argdata);
417 if (*s == 'u') test = new->st.st_uid == udl->u.uid;
418 else if (*s == 'g') test = new->st.st_gid == udl->u.gid;
420 test = new->st.st_mtim.tv_sec > udl->u.tm.tv_sec;
421 if (new->st.st_mtim.tv_sec == udl->u.tm.tv_sec)
422 test = new->st.st_mtim.tv_nsec > udl->u.tm.tv_nsec;