• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/bsd/hfs/

Lines Matching refs:entry

464 			/* Account for ourself and our "." entry */
593 * c_cnid belongs to the active directory entry (ie the link)
1689 /* Remove the entry from the namei cache: */
1710 /* Remove entry from catalog */
1754 * remove catalog entry
1940 /* Remove our entry from the namei cache. */
2179 truncated = 0; // because the catalog entry is gone
2898 /* structures to hold a "." or ".." directory entry */
2928 * u_int32_t d_fileno; // file number of entry
3018 struct hfs_extdotentry *entry = &dotentry[0].ext;
3020 entry->d_fileno = cp->c_cnid;
3021 entry->d_reclen = sizeof(struct hfs_extdotentry);
3022 entry->d_type = DT_DIR;
3023 entry->d_namlen = 1;
3024 entry->d_name[0] = '.';
3025 entry->d_name[1] = '\0';
3026 entry->d_name[2] = '\0';
3027 entry->d_seekoff = 1;
3029 ++entry;
3030 entry->d_fileno = cp->c_parentcnid;
3031 entry->d_reclen = sizeof(struct hfs_extdotentry);
3032 entry->d_type = DT_DIR;
3033 entry->d_namlen = 2;
3034 entry->d_name[0] = '.';
3035 entry->d_name[1] = '.';
3036 entry->d_name[2] = '\0';
3037 entry->d_seekoff = 2;
3040 struct hfs_stddotentry *entry = &dotentry[0].std;
3042 entry->d_fileno = cp->c_cnid;
3043 entry->d_reclen = sizeof(struct hfs_stddotentry);
3044 entry->d_type = DT_DIR;
3045 entry->d_namlen = 1;
3046 *(int *)&entry->d_name[0] = 0;
3047 entry->d_name[0] = '.';
3049 ++entry;
3050 entry->d_fileno = cp->c_parentcnid;
3051 entry->d_reclen = sizeof(struct hfs_stddotentry);
3052 entry->d_type = DT_DIR;
3053 entry->d_namlen = 2;
3054 *(int *)&entry->d_name[0] = 0;
3055 entry->d_name[0] = '.';
3056 entry->d_name[1] = '.';