Lines Matching defs:current
330 struct dirtree *current=tree, *that;
333 while (current) {
336 if (S_ISDIR(current->st.st_mode)) current->st.st_nlink = 2;
338 dev_t new = current->st.st_dev;
342 // Look for other copies of current node
343 current->st.st_nlink = 0;
345 if (current->st.st_ino == that->st.st_ino &&
346 current->st.st_dev == that->st.st_dev)
348 current->st.st_nlink++;
349 current->st.st_ino = inode;
353 current->st.st_ino = inode;
354 current = treenext(current);