Lines Matching refs:lstatbuf

1491 			lstatbuf;  local
1509 lstatbuf = *statp;
1510 if (S_ISLNK(lstatbuf.st_mode)) {
1518 lstatus = lstat_filter(whole_path, &lstatbuf);
1543 lstatbuf = root_statbuf;
1545 if (S_ISLNK(lstatbuf.st_mode)) {
1574 statbuf.st_mode = lstatbuf.st_mode;
1618 lstatbuf = statbuf;
1631 lstatbuf = statbuf;
1643 lstatbuf = statbuf;
1657 if (!S_ISDIR(lstatbuf.st_mode) && (statbuf.st_fab_rfm != FAB$C_FIX &&
1665 if (S_ISREG(lstatbuf.st_mode) &&
1673 if (S_ISREG(lstatbuf.st_mode) && (lstatbuf.st_size >= maxnonlarge) &&
1679 if (S_ISREG(lstatbuf.st_mode) && (lstatbuf.st_size >= (off_t)0x7FFFFFFF)) {
1695 S_ISDIR(lstatbuf.st_mode) &&
1708 if (!S_ISCHR(lstatbuf.st_mode) && !S_ISBLK(lstatbuf.st_mode) &&
1709 !S_ISFIFO(lstatbuf.st_mode) && !S_ISSOCK(lstatbuf.st_mode) &&
1710 !S_ISLNK(lstatbuf.st_mode) && !S_ISREG(lstatbuf.st_mode) &&
1711 !S_ISDIR(lstatbuf.st_mode)) {
1714 filetype((int)lstatbuf.st_mode), whole_path);
1784 lstatbuf.st_mode =
1785 (lstatbuf.st_mode & ~S_IFMT) | S_IFREG;
1808 if (S_ISREG(lstatbuf.st_mode) && !have_rsrc && apple_both && !x_hfs) {
1860 if (S_ISLNK(lstatbuf.st_mode))
2029 s_entry->hfs_ent->u.file.rsize = lstatbuf.st_size;
2034 s_entry->hfs_ent->crdate = lstatbuf.st_ctime;
2035 s_entry->hfs_ent->mddate = lstatbuf.st_mtime;
2040 s_entry->hfs_ent->u.file.dsize = lstatbuf.st_size;
2041 s_entry->hfs_ent->crdate = lstatbuf.st_ctime;
2042 s_entry->hfs_ent->mddate = lstatbuf.st_mtime;
2086 if (S_ISCHR(lstatbuf.st_mode) || S_ISBLK(lstatbuf.st_mode) ||
2087 S_ISFIFO(lstatbuf.st_mode) ||
2088 S_ISSOCK(lstatbuf.st_mode) ||
2090 (S_ISLNK(lstatbuf.st_mode) && !create_udfsymlinks)) {
2161 switch (lstatbuf.st_mode & S_IFMT) {
2258 lstatbuf.st_mode =
2259 (lstatbuf.st_mode & ~S_IFMT) | S_IFREG;
2280 if (S_ISREG(lstatbuf.st_mode)) { /* it's a regular file */
2349 &statbuf, &lstatbuf, deep_flag | (statp?DID_CHDIR:0));
2363 &statbuf, &lstatbuf, deep_flag | (statp?DID_CHDIR:0));
2368 s_entry->mode = lstatbuf.st_mode;
2369 s_entry->rdev = lstatbuf.st_rdev;
2370 s_entry->uid = lstatbuf.st_uid;
2371 s_entry->gid = lstatbuf.st_gid;
2372 s_entry->atime.tv_sec = lstatbuf.st_atime;
2373 s_entry->atime.tv_nsec = stat_ansecs(&lstatbuf);
2374 s_entry->mtime.tv_sec = lstatbuf.st_mtime;
2375 s_entry->mtime.tv_nsec = stat_mnsecs(&lstatbuf);
2376 s_entry->ctime.tv_sec = lstatbuf.st_ctime;
2377 s_entry->ctime.tv_nsec = stat_cnsecs(&lstatbuf);