Lines Matching defs:dt
38 struct dirtree *dt = 0;
58 dt = xmalloc((len = sizeof(struct dirtree)+len+1)+linklen);
59 memset(dt, 0, statless ? offsetof(struct dirtree, again)
61 dt->parent = parent;
62 dt->again = statless ? 2 : 0;
63 if (!statless) memcpy(&dt->st, &st, sizeof(struct stat));
64 strcpy(dt->name, name ? name : "");
65 if (linklen) dt->symlink = memcpy(len+(char *)dt, libbuf, linklen);
67 return dt;
77 free(dt);