Lines Matching defs:dt
30 struct dirtree *dt = 0;
50 dt = xmalloc((len = sizeof(struct dirtree)+len+1)+linklen);
51 memset(dt, 0, statless ? offsetof(struct dirtree, again)
53 dt->parent = parent;
54 dt->again = statless ? 2 : 0;
55 if (!statless) memcpy(&dt->st, &st, sizeof(struct stat));
56 strcpy(dt->name, name ? name : "");
57 if (linklen) dt->symlink = memcpy(len+(char *)dt, libbuf, linklen);
59 return dt;
69 free(dt);