Lines Matching refs:linkName
485 static void PrintFileInfo64(const struct stat64 *stat64Info, const char *name, const char *linkName)
510 stat64Info->st_uid, stat64Info->st_gid, name, linkName);
518 static void PrintFileInfo(const struct stat *statInfo, const char *name, const char *linkName)
543 statInfo->st_uid, statInfo->st_gid, name, linkName);
555 char linkName[NAME_MAX] = { 0 };
559 readlink(path, linkName, NAME_MAX);
561 PrintFileInfo64(&stat64Info, path, (const char *)linkName);
564 readlink(path, linkName, NAME_MAX);
566 PrintFileInfo(&statInfo, path, (const char *)linkName);
578 char linkName[NAME_MAX] = { 0 };
600 (void)memset_s(&linkName, sizeof(linkName), 0, sizeof(linkName));
610 readlink(fullpath, linkName, NAME_MAX);
612 PrintFileInfo64(&stat64Info, pdirent->d_name, linkName);
615 readlink(fullpath, linkName, NAME_MAX);
617 PrintFileInfo(&statInfo, pdirent->d_name, linkName);