Home
last modified time | relevance | path

Searched refs:datasync (Results 1 – 25 of 25) sorted by relevance

/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/ext4/ext4_sync_file_enter/
Dformat12 field:int datasync; offset:32; size:4; signed:1;
14datasync %d ", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U << 20) - 1)…
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/ext4/ext4_sync_file_enter/
Dformat12 field:int datasync; offset:20; size:4; signed:1;
14datasync %d ", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U << 20) - 1)…
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/ext3/ext3_sync_file_enter/
Dformat12 field:int datasync; offset:32; size:4; signed:1;
14datasync %d ", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U << 20) - 1)…
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/ext4/ext4_sync_file_enter/
Dformat12 field:int datasync; offset:32; size:4; signed:1;
14datasync %d ", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U << 20) - 1)…
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/ext3/ext3_sync_file_enter/
Dformat12 field:int datasync; offset:20; size:4; signed:1;
14datasync %d ", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U << 20) - 1)…
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/ext3/ext3_sync_file_enter/
Dformat13 field:int datasync; offset:24; size:4; signed:1;
15datasync %d ", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U << 20) - 1)…
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/ext4/ext4_sync_file_enter/
Dformat13 field:int datasync; offset:24; size:4; signed:1;
15datasync %d ", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U << 20) - 1)…
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/f2fs/f2fs_sync_file_exit/
Dformat12 field:int datasync; offset:28; size:4; signed:1;
15datasync = %d, ret = %d", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U …
/external/libfuse/include/
Dcuse_lowlevel.h60 void (*fsync) (fuse_req_t req, int datasync, struct fuse_file_info *fi);
Dfuse.h1148 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync,
1158 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync,
Dfuse_lowlevel.h667 void (*fsync) (fuse_req_t req, fuse_ino_t ino, int datasync,
782 void (*fsyncdir) (fuse_req_t req, fuse_ino_t ino, int datasync,
/external/libfuse/lib/
Dcuse_lowlevel.c73 static void cuse_fll_fsync(fuse_req_t req, fuse_ino_t ino, int datasync, in cuse_fll_fsync() argument
77 req_clop(req)->fsync(req, datasync, fi); in cuse_fll_fsync()
Dfuse.c1958 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync, in fuse_fs_fsync() argument
1965 (unsigned long long) fi->fh, datasync); in fuse_fs_fsync()
1967 return fs->op.fsync(path, datasync, fi); in fuse_fs_fsync()
1973 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync, in fuse_fs_fsyncdir() argument
1980 (unsigned long long) fi->fh, datasync); in fuse_fs_fsyncdir()
1982 return fs->op.fsyncdir(path, datasync, fi); in fuse_fs_fsyncdir()
3343 static void fuse_lib_fsync(fuse_req_t req, fuse_ino_t ino, int datasync, in fuse_lib_fsync() argument
3355 err = fuse_fs_fsync(f->fs, path, datasync, fi); in fuse_lib_fsync()
3785 static void fuse_lib_fsyncdir(fuse_req_t req, fuse_ino_t ino, int datasync, in fuse_lib_fsyncdir() argument
3799 err = fuse_fs_fsyncdir(f->fs, path, datasync, &fi); in fuse_lib_fsyncdir()
Dfuse_lowlevel.c1557 int datasync = arg->fsync_flags & 1; in do_fsync() local
1563 req->se->op.fsync(req, nodeid, datasync, &fi); in do_fsync()
1629 int datasync = arg->fsync_flags & 1; in do_fsyncdir() local
1635 req->se->op.fsyncdir(req, nodeid, datasync, &fi); in do_fsyncdir()
/external/crosvm/devices/src/virtio/fs/
Dpassthrough.rs779 fn do_fsync<F: AsRawDescriptor>(&self, file: &F, datasync: bool) -> io::Result<()> { in do_fsync()
782 if datasync { in do_fsync()
1765 fn fsync(&self, _ctx: Context, inode: Inode, datasync: bool, handle: Handle) -> io::Result<()> { in fsync()
1768 self.do_fsync(&*data, datasync) in fsync()
1773 self.do_fsync(&*file, datasync) in fsync()
1781 datasync: bool, in fsyncdir()
1786 self.do_fsync(&*data, datasync) in fsyncdir()
1791 self.do_fsync(&*file, datasync) in fsyncdir()
/external/crosvm/fuse/src/
Dfilesystem.rs804 datasync: bool, in fsync()
1021 datasync: bool, in fsyncdir()
Dserver.rs717 let datasync = fsync_flags & 0x1 != 0; in fsync() localVariable
722 datasync, in fsync()
1196 let datasync = fsync_flags & 0x1 != 0; in fsyncdir() localVariable
1201 datasync, in fsyncdir()
/external/perfetto/protos/perfetto/trace/ftrace/
Df2fs.proto116 optional int32 datasync = 4; field
Dext4.proto26 optional int32 datasync = 4; field
/external/vm_tools/p9/src/server/
Dtests.rs285 let tfsync = Tfsync { fid, datasync: 0 }; in write()
Dmod.rs892 if fsync.datasync == 0 { in fsync()
/external/vm_tools/p9/src/protocol/
Dmessages.rs442 pub datasync: u32, field
/external/e2fsprogs/misc/
Dfuse2fs.c2321 int datasync EXT2FS_ATTR((unused)), in op_fsync()
/external/cpuinfo/test/dmesg/
Doppo-a37.log893 … 2.976596] (0)[1:init]init: init.oppo.rc: 164: ignored duplicate definition of service 'datasync'
/external/perfetto/protos/perfetto/trace/
Dperfetto_trace.proto3270 optional int32 datasync = 4; field
4041 optional int32 datasync = 4; field