Lines Matching defs:side
84 * for files that have been newly created on one side,
86 * file that has been newly deleted on the same side.
92 int stype, dtype, btype, side;
104 /* a rename must be a file that is new on only one side */
106 side = stype ? OPT_SRC : OPT_DST;
107 rp = find_oldname(fp, np, side);
109 errs |= note_rename(fp, np, rp, side);
131 * which side the rename is believed to have happened on
142 side_t side)
147 side_t otherside = (side == OPT_SRC) ? OPT_DST : OPT_SRC;
150 inum = new->f_info[side].f_ino;
151 maj = new->f_info[side].f_d_maj;
152 min = new->f_info[side].f_d_min;
153 size = new->f_info[side].f_size;
160 /* previous name on changed side must no longer exist */
161 if (fp->f_info[side].f_type != 0)
164 /* previous name on the other side must still exist */
169 if (fp->f_info[OPT_BASE].f_type != new->f_info[side].f_type)
171 if (((side == OPT_SRC) ? fp->f_s_inum : fp->f_d_inum) != inum)
173 if (((side == OPT_SRC) ? fp->f_s_maj : fp->f_d_maj) != maj)
175 if (((side == OPT_SRC) ? fp->f_s_min : fp->f_d_min) != min)
212 * which side the rename is believed to have happened on
219 struct file *old, side_t side)
225 dir = new->f_info[side].f_type == S_IFDIR;
231 sidenames[side]);
238 if (side == OPT_SRC) {