Searched refs:stbuf (Results 1 – 8 of 8) sorted by relevance
/linux/net/9p/ |
A D | protocol.c | 200 &stbuf->size, &stbuf->type, in p9pdu_vreadf() 201 &stbuf->dev, &stbuf->qid, in p9pdu_vreadf() 202 &stbuf->mode, &stbuf->atime, in p9pdu_vreadf() 204 &stbuf->name, &stbuf->uid, in p9pdu_vreadf() 205 &stbuf->gid, &stbuf->muid, in p9pdu_vreadf() 207 &stbuf->n_uid, &stbuf->n_gid, in p9pdu_vreadf() 424 stbuf->size, stbuf->type, in p9pdu_vwritef() 425 stbuf->dev, &stbuf->qid, in p9pdu_vwritef() 426 stbuf->mode, stbuf->atime, in p9pdu_vwritef() 428 stbuf->name, stbuf->uid, in p9pdu_vwritef() [all …]
|
/linux/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 | 1097 struct stat stbuf; in s390_cpumsf__config() local 1108 rc = stat(sf->logdir, &stbuf); in s390_cpumsf__config() 1109 if (rc == -1 || !S_ISDIR(stbuf.st_mode)) { in s390_cpumsf__config()
|
/linux/fs/fuse/ |
A D | inode.c | 493 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr) in convert_fuse_statfs() argument 495 stbuf->f_type = FUSE_SUPER_MAGIC; in convert_fuse_statfs() 496 stbuf->f_bsize = attr->bsize; in convert_fuse_statfs() 497 stbuf->f_frsize = attr->frsize; in convert_fuse_statfs() 498 stbuf->f_blocks = attr->blocks; in convert_fuse_statfs() 499 stbuf->f_bfree = attr->bfree; in convert_fuse_statfs() 500 stbuf->f_bavail = attr->bavail; in convert_fuse_statfs() 501 stbuf->f_files = attr->files; in convert_fuse_statfs() 502 stbuf->f_ffree = attr->ffree; in convert_fuse_statfs() 503 stbuf->f_namelen = attr->namelen; in convert_fuse_statfs()
|
/linux/include/net/9p/ |
A D | client.h | 246 void p9stat_free(struct p9_wstat *stbuf);
|
/linux/tools/perf/pmu-events/ |
A D | jevents.c | 1210 struct stat stbuf; in main() local 1235 if (stat(ldirname, &stbuf) < 0) { in main()
|
Completed in 25 milliseconds