/third_party/ntfs-3g/include/fuse-lite/ |
H A D | fuse.h | 232 * If the datasync parameter is non-zero, then only the user data 288 * If the datasync parameter is non-zero, then only the user data 582 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync, 592 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync,
|
H A D | fuse_lowlevel.h | 504 * If the datasync parameter is non-zero, then only the user data 512 * @param datasync flag indicating if only data should be flushed 515 void (*fsync) (fuse_req_t req, fuse_ino_t ino, int datasync, 587 * If the datasync parameter is non-zero, then only the directory 598 * @param datasync flag indicating if only data should be flushed 601 void (*fsyncdir) (fuse_req_t req, fuse_ino_t ino, int datasync,
|
/third_party/libfuse/include/ |
H A D | cuse_lowlevel.h | 60 void (*fsync) (fuse_req_t req, int datasync, struct fuse_file_info *fi);
|
H A D | fuse.h | 539 * If the datasync parameter is non-zero, then only the user data 603 * If the datasync parameter is non-zero, then only the user data 1207 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync, 1217 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync,
|
H A D | fuse_lowlevel.h | 674 * If the datasync parameter is non-zero, then only the user data 687 * @param datasync flag indicating if only data should be flushed 690 void (*fsync) (fuse_req_t req, fuse_ino_t ino, int datasync, 786 * If the datasync parameter is non-zero, then only the directory 802 * @param datasync flag indicating if only data should be flushed 805 void (*fsyncdir) (fuse_req_t req, fuse_ino_t ino, int datasync,
|
/third_party/libfuse/lib/ |
H A D | cuse_lowlevel.c | 73 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()
|
H A D | fuse.c | 1909 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync, in fuse_fs_fsync() argument 1915 fuse_log(FUSE_LOG_DEBUG, "fsync[%llu] datasync: %i\n", in fuse_fs_fsync() 1916 (unsigned long long) fi->fh, datasync); in fuse_fs_fsync() 1918 return fs->op.fsync(path, datasync, fi); in fuse_fs_fsync() 1924 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync, in fuse_fs_fsyncdir() argument 1930 fuse_log(FUSE_LOG_DEBUG, "fsyncdir[%llu] datasync: %i\n", in fuse_fs_fsyncdir() 1931 (unsigned long long) fi->fh, datasync); in fuse_fs_fsyncdir() 1933 return fs->op.fsyncdir(path, datasync, fi); in fuse_fs_fsyncdir() 3314 static void fuse_lib_fsync(fuse_req_t req, fuse_ino_t ino, int datasync, in fuse_lib_fsync() argument 3326 err = fuse_fs_fsync(f->fs, path, datasync, f in fuse_lib_fsync() 3763 fuse_lib_fsyncdir(fuse_req_t req, fuse_ino_t ino, int datasync, struct fuse_file_info *llfi) fuse_lib_fsyncdir() argument [all...] |
H A D | fuse_lowlevel.c | 1489 int datasync = arg->fsync_flags & 1; local 1495 req->se->op.fsync(req, nodeid, datasync, &fi); 1561 int datasync = arg->fsync_flags & 1; local 1567 req->se->op.fsyncdir(req, nodeid, datasync, &fi);
|
/third_party/libfuse/example/ |
H A D | passthrough_hp.cc | 842 static void sfs_fsyncdir(fuse_req_t req, fuse_ino_t ino, int datasync, in sfs_fsyncdir() argument 847 if (datasync) in sfs_fsyncdir() 912 static void sfs_fsync(fuse_req_t req, fuse_ino_t ino, int datasync, in sfs_fsync() argument 916 if (datasync) in sfs_fsync()
|
H A D | passthrough_ll.c | 785 static void lo_fsyncdir(fuse_req_t req, fuse_ino_t ino, int datasync, in lo_fsyncdir() argument 791 if (datasync) in lo_fsyncdir() 853 static void lo_fsync(fuse_req_t req, fuse_ino_t ino, int datasync, in lo_fsync() argument 858 if (datasync) in lo_fsync()
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse.c | 827 int fuse_fs_fsync(struct fuse_fs *fs, const char *path, int datasync, in fuse_fs_fsync() argument 832 return fs->op.fsync(path, datasync, fi); in fuse_fs_fsync() 837 int fuse_fs_fsyncdir(struct fuse_fs *fs, const char *path, int datasync, in fuse_fs_fsyncdir() argument 842 return fs->op.fsyncdir(path, datasync, fi); in fuse_fs_fsyncdir() 2009 static void fuse_lib_fsync(fuse_req_t req, fuse_ino_t ino, int datasync, in fuse_lib_fsync() argument 2024 err = fuse_fs_fsync(f->fs, path, datasync, fi); in fuse_lib_fsync() 2265 static void fuse_lib_fsyncdir(fuse_req_t req, fuse_ino_t ino, int datasync, in fuse_lib_fsyncdir() argument 2281 err = fuse_fs_fsyncdir(f->fs, path, datasync, &fi); in fuse_lib_fsyncdir()
|
/third_party/node/test/parallel/ |
H A D | test-fs-promises.js | 149 await handle.datasync();
|
/base/hiviewdfx/hitrace/tools/hitrace_converter/ |
H A D | parse_functions.py | 232 datasync = parse_int_field(one_event, "datasync", True)
234 return "dev %d,%d ino %d parent %d datasync %d " \
235 % (dev >> 20, dev & 0xfffff, ino, parent, datasync)
746 PRINT_FMT_EXT4_SYNC_FILE_ENTER = '"dev %d,%d ino %lu parent %lu datasync %d ", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) ((REC->dev) & ((1U << 20) - 1))), (unsigned long) REC->ino, (unsigned long) REC->parent, REC->datasync'
|
/third_party/node/lib/internal/fs/ |
H A D | promises.js | 160 datasync() {
|