Searched refs:to_desc (Results 1 - 3 of 3) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_link.c136 struct cat_desc to_desc; local
181 bzero(&to_desc, sizeof(to_desc));
182 to_desc.cd_parentcnid = hfsmp->hfs_private_desc[type].cd_cnid;
183 to_desc.cd_cnid = cp->c_fileid;
184 to_desc.cd_flags = (type == DIR_HARDLINKS) ? CD_ISDIR : 0;
203 to_desc.cd_nameptr = (const u_int8_t *)inodename;
204 to_desc.cd_namelen = strlen(inodename);
207 &to_desc, NULL);
235 err = cat_rename(hfsmp, &to_desc,
730 struct cat_desc to_desc; local
[all...]
H A Dhfs_vnops.c2074 struct cat_desc to_desc; local
2084 bzero(&to_desc, sizeof(to_desc));
2085 to_desc.cd_nameptr = (const u_int8_t *)delname;
2086 to_desc.cd_namelen = strlen(delname);
2087 to_desc.cd_parentcnid = hfsmp->hfs_private_desc[FILE_HARDLINKS].cd_cnid;
2088 to_desc.cd_flags = 0;
2089 to_desc.cd_cnid = cp->c_cnid;
2100 &to_desc, (struct cat_desc *)NULL);
2125 (void) cat_update(hfsmp, &to_desc,
2290 struct cat_desc to_desc; local
[all...]
H A Dhfs_vfsops.c5027 struct cat_desc to_desc; local
5040 bzero(&to_desc, sizeof(to_desc));
5049 to_desc.cd_nameptr = (const u_int8_t *)name;
5050 to_desc.cd_namelen = strlen(name);
5051 to_desc.cd_parentcnid = kHFSRootParentID;
5052 to_desc.cd_cnid = cp->c_cnid;
5053 to_desc.cd_flags = CD_ISDIR;
5060 error = cat_rename(hfsmp, &cp->c_desc, &todir_desc, &to_desc, &new_desc);

Completed in 47 milliseconds