Lines Matching defs:odp
410 struct odirect *odp;
419 for (odp = (struct odirect *)buf; odp < eodp; odp++)
420 if (odp->d_ino != 0) {
421 dcvt(odp, &cvtbuf);
495 dcvt(struct odirect *odp, struct direct *ndp)
499 ndp->d_ino = odp->d_ino;
500 /* Note that odp->d_name may not be null-terminated */
502 assert(sizeof (ndp->d_name) > sizeof (odp->d_name));
503 (void) strncpy(ndp->d_name, odp->d_name, sizeof (odp->d_name));
504 ndp->d_name[sizeof (odp->d_name)] = '\0';