Searched refs:finfo (Results 1 - 9 of 9) sorted by relevance

/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_cnode.c1581 u_int8_t *finfo = NULL; local
1584 finfo = (u_int8_t*)attrp->ca_finderinfo;
1585 finfo = finfo + 16;
1594 struct FndrExtendedFileInfo *extinfo = (struct FndrExtendedFileInfo *)finfo;
1599 struct FndrExtendedDirInfo *extinfo = (struct FndrExtendedDirInfo *)finfo;
1609 u_int8_t *finfo = NULL; local
1619 finfo = (u_int8_t*)cp->c_finderinfo;
1620 finfo = finfo
[all...]
H A Dhfs_xattr.c238 u_int8_t *finfo = finderinfo; local
240 /* Advance finfo by 16 bytes to the 2nd half of the finderinfo */
241 finfo = finfo + 16;
244 struct FndrExtendedFileInfo *extinfo = (struct FndrExtendedFileInfo *)finfo;
248 struct FndrExtendedDirInfo *extinfo = (struct FndrExtendedDirInfo *)finfo;
692 u_int8_t *finfo = NULL; local
758 finfo = &finderinfo[16];
761 struct FndrExtendedFileInfo *extinfo = (struct FndrExtendedFileInfo *)finfo;
765 struct FndrExtendedDirInfo *extinfo = (struct FndrExtendedDirInfo *)finfo;
1340 u_int8_t *finfo = NULL; local
[all...]
H A Dhfs_attrlist.c670 u_int8_t *finfo = NULL; local
672 finfo = (u_int8_t*)attrbufptr;
684 finfo = finfo + 16;
686 struct FndrExtendedFileInfo *extinfo = (struct FndrExtendedFileInfo *)finfo;
690 struct FndrExtendedDirInfo *extinfo = (struct FndrExtendedDirInfo *)finfo;
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_xattr.c1291 apple_double_entry_t entries[2]; /* 'finfo' & 'rsrc' always exist */
1292 u_int8_t finfo[FINDERINFOSIZE]; /* Must start with Finder Info (32 bytes) */ member in struct:apple_double_header
1660 char finfo[FINDERINFOSIZE]; local
1679 * NOTE: this copies the Finder Info data into the "finfo" local.
1689 error = uiomove(finfo, datalen, uio);
1693 bcmp(finfo, emptyfinfo, FINDERINFOSIZE) == 0) {
1730 if (options != 0 && bcmp(finfo, emptyfinfo, FINDERINFOSIZE) == 0) {
1752 bcopy(finfo, attrdata, datalen);
2826 ainfop->finderinfo->offset == offsetof(apple_double_header_t, finfo)) {
2950 xah->appledouble.entries[0].offset = SWAP32 (offsetof(apple_double_header_t, finfo));
[all...]
H A Dvfs_fsevents.c1915 const fse_info *finfo, *dest_finfo; local
1930 finfo = (const fse_info *)ptr;
1949 err = add_fsevent(type, ctx, FSE_ARG_STRING, path_len, path, FSE_ARG_FINFO, finfo, FSE_ARG_DONE);
1957 // if we're here we have to slurp up the destination finfo
1986 FSE_ARG_STRING, path_len, path, FSE_ARG_FINFO, finfo,
1991 FSE_ARG_STRING, path_len, path, FSE_ARG_FINFO, finfo,
H A Dvfs_syscalls.c3606 fse_info finfo; local
3734 if (get_fse_info(vp, &finfo, ctx) == 0) {
3736 finfo.mode |= FSE_TRUNCATED_PATH;
3742 FSE_ARG_FINFO, &finfo,
3955 fse_info finfo; local
4023 get_fse_info(vp, &finfo, ctx);
4098 get_fse_info(vp, &finfo, ctx);
4100 vnode_get_fse_info_from_vap(vp, &finfo, vap);
4103 finfo.mode |= FSE_TRUNCATED_PATH;
4107 FSE_ARG_FINFO, &finfo,
6706 fse_info finfo; local
[all...]
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_serv.c2444 fse_info finfo; local
2449 get_fse_info(vp, &finfo, ctx);
2463 FSE_ARG_FINFO, &finfo,
3204 fse_info finfo; local
3211 if (get_fse_info(vp, &finfo, ctx) == 0) {
3213 finfo.mode |= FSE_TRUNCATED_PATH;
3217 FSE_ARG_FINFO, &finfo,
3793 fse_info finfo; local
3798 get_fse_info(vp, &finfo, ctx);
3813 FSE_ARG_FINFO, &finfo,
[all...]
H A Dnfs4_vnops.c7755 uint8_t finfo[FINDERINFOSIZE]; local
7789 if (uio_resid(uio) != sizeof(finfo))
7791 error = uiomove((char*)&finfo, sizeof(finfo), uio);
7796 for (i=0, finfop=(uint32_t*)&finfo; i < (int)(sizeof(finfo)/sizeof(uint32_t)); i++)
7846 * For FinderInfo, we've already copied the data to finfo, so do I/O from there.
7855 uio_addiov(auio, (uintptr_t)&finfo, sizeof(finfo));
/darwin-on-arm/xnu/bsd/kern/
H A Dproc_info.c137 void fill_fileinfo(struct fileproc * fp, int closeonexec, struct proc_fileinfo * finfo);

Completed in 73 milliseconds