Searched refs:stbuf (Results 1 – 7 of 7) sorted by relevance
/linux-6.3-rc2/net/9p/ |
A D | protocol.c | 366 &stbuf->size, &stbuf->type, in p9pdu_vreadf() 367 &stbuf->dev, &stbuf->qid, in p9pdu_vreadf() 368 &stbuf->mode, &stbuf->atime, in p9pdu_vreadf() 370 &stbuf->name, &stbuf->uid, in p9pdu_vreadf() 371 &stbuf->gid, &stbuf->muid, in p9pdu_vreadf() 373 &stbuf->n_uid, &stbuf->n_gid, in p9pdu_vreadf() 590 stbuf->size, stbuf->type, in p9pdu_vwritef() 591 stbuf->dev, &stbuf->qid, in p9pdu_vwritef() 592 stbuf->mode, stbuf->atime, in p9pdu_vwritef() 594 stbuf->name, stbuf->uid, in p9pdu_vwritef() [all …]
|
/linux-6.3-rc2/tools/perf/util/ |
A D | zlib.c | 22 struct stat stbuf; in gzip_decompress_to_file() local 36 if (fstat(input_fd, &stbuf) < 0) in gzip_decompress_to_file() 39 ptr = mmap(NULL, stbuf.st_size, PROT_READ, MAP_PRIVATE, input_fd, 0); in gzip_decompress_to_file() 47 zs.avail_in = stbuf.st_size; in gzip_decompress_to_file() 76 munmap(ptr, stbuf.st_size); in gzip_decompress_to_file()
|
A D | symbol-minimal.c | 229 struct stat stbuf; in sysfs__read_build_id() local 237 if (fstat(fd, &stbuf) < 0) in sysfs__read_build_id() 240 buf_size = stbuf.st_size; in sysfs__read_build_id()
|
A D | cgroup.c | 82 struct statfs stbuf; in cgroup_is_v2() local 87 if (statfs(mnt, &stbuf) < 0) in cgroup_is_v2() 90 return (stbuf.f_type == CGROUP2_SUPER_MAGIC); in cgroup_is_v2()
|
A D | s390-cpumsf.c | 1098 struct stat stbuf; in s390_cpumsf__config() local 1109 rc = stat(sf->logdir, &stbuf); in s390_cpumsf__config() 1110 if (rc == -1 || !S_ISDIR(stbuf.st_mode)) { in s390_cpumsf__config()
|
/linux-6.3-rc2/fs/fuse/ |
A D | inode.c | 514 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr) in convert_fuse_statfs() argument 516 stbuf->f_type = FUSE_SUPER_MAGIC; in convert_fuse_statfs() 517 stbuf->f_bsize = attr->bsize; in convert_fuse_statfs() 518 stbuf->f_frsize = attr->frsize; in convert_fuse_statfs() 519 stbuf->f_blocks = attr->blocks; in convert_fuse_statfs() 520 stbuf->f_bfree = attr->bfree; in convert_fuse_statfs() 521 stbuf->f_bavail = attr->bavail; in convert_fuse_statfs() 522 stbuf->f_files = attr->files; in convert_fuse_statfs() 523 stbuf->f_ffree = attr->ffree; in convert_fuse_statfs() 524 stbuf->f_namelen = attr->namelen; in convert_fuse_statfs()
|
/linux-6.3-rc2/include/net/9p/ |
A D | client.h | 287 void p9stat_free(struct p9_wstat *stbuf);
|
Completed in 14 milliseconds