Lines Matching defs:buf
445 INT fatfs_virstatfs_internel(struct Vnode *mountpt, const char *relpath, struct statfs *buf)
481 (void)memset_s((void *)buf, sizeof(struct statfs), 0, sizeof(struct statfs));
482 buf->f_type = MSDOS_SUPER_MAGIC;
483 buf->f_bfree = freClust;
484 buf->f_bavail = freClust;
485 buf->f_blocks = allClust;
487 buf->f_bsize = fat->ssize * fat->csize;
489 buf->f_bsize = FF_MIN_SS * fat->csize;
492 buf->f_namelen = FF_MAX_LFN; /* Maximum length of filenames */
498 buf->f_namelen = (8 + 1 + 3);