Lines Matching defs:priv
118 struct _fts_private *priv;
137 if ((priv = calloc(1, sizeof(*priv))) == NULL)
139 sp = &priv->ftsp_fts;
1160 struct _fts_private *priv;
1163 priv = (struct _fts_private *)sp;
1170 if (priv->ftsp_dev != ent->fts_dev) {
1171 if (statfs(ent->fts_path, &priv->ftsp_statfs) != -1) {
1172 priv->ftsp_dev = ent->fts_dev;
1173 priv->ftsp_linksreliable = 0;
1176 if ((uint64_t)priv->ftsp_statfs.f_type == ufslike_filesystems[fsidx]) {
1177 priv->ftsp_linksreliable = 1;
1182 priv->ftsp_linksreliable = 0;
1185 return (priv->ftsp_linksreliable);