Lines Matching defs:stat64Info
485 static void PrintFileInfo64(const struct stat64 *stat64Info, const char *name, const char *linkName)
493 mode = stat64Info->st_mode >> (uint)(USER_MODE_SHIFT - i * UGO_NUMS);
499 if (S_ISDIR(stat64Info->st_mode)) {
501 } else if (S_ISLNK(stat64Info->st_mode)) {
507 if (S_ISLNK(stat64Info->st_mode)) {
509 str[0], str[1], str[UGO_NUMS - 1], stat64Info->st_size,
510 stat64Info->st_uid, stat64Info->st_gid, name, linkName);
513 str[0], str[1], str[UGO_NUMS - 1], stat64Info->st_size,
514 stat64Info->st_uid, stat64Info->st_gid, name);
553 struct stat64 stat64Info;
557 if (stat64(path, &stat64Info) == 0) {
558 if (S_ISLNK(stat64Info.st_mode)) {
561 PrintFileInfo64(&stat64Info, path, (const char *)linkName);
577 struct stat64 stat64Info = { 0 };
599 (void)memset_s(&stat64Info, sizeof(struct stat), 0, sizeof(struct stat));
608 if (stat64(fullpath, &stat64Info) == 0) {
609 if (S_ISLNK(stat64Info.st_mode)) {
612 PrintFileInfo64(&stat64Info, pdirent->d_name, linkName);