Searched refs:fsync (Results 51 - 62 of 62) sorted by relevance

123

/freebsd-10.2-release/crypto/openssh/
H A Dsftp-server.c156 { "fsync", "fsync@openssh.com", 0, process_extended_fsync, 1 },
657 /* fsync extension */
658 buffer_put_cstring(&msg, "fsync@openssh.com");
1311 debug3("request %u: fsync (handle %u)", id, handle);
1312 verbose("fsync \"%s\"", handle_to_name(handle));
1316 ret = fsync(fd);
H A Dsftp-client.c393 } else if (strcmp(name, "fsync@openssh.com") == 0 &&
890 /* Send fsync request */
895 buffer_put_cstring(&msg, "fsync@openssh.com");
898 debug3("Sent message fsync@openssh.com I:%u", id);
1298 if (fsync(local_fd) == -1)
/freebsd-10.2-release/contrib/less/
H A Dscreen.c434 fsync(tty);
/freebsd-10.2-release/contrib/sendmail/src/
H A Ddeliver.c936 ** SYNC_DIR -- fsync a directory based on a filename
971 sm_syslog(LOG_INFO, NOQID, "sync_dir: %s: fsync(%d)",
975 if (fsync(dirfd) < 0)
978 syserr("!sync_dir: cannot fsync directory %s",
982 "sync_dir: cannot fsync directory %s: %s",
5667 fsync(sm_io_getinfo(f, SM_IO_WHAT_FD, NULL)) < 0) ||
H A Dconf.c2937 ** FSYNC -- dummy fsync
2942 fsync(fd) function
H A Dmilter.c1768 && fsync(afd) < 0)
H A Dsrvrsmtp.c3890 else if (fsync(afd) < 0)
3892 dferror(df, "fsync", e);
/freebsd-10.2-release/sbin/dhclient/
H A Ddhclient.c1872 fsync(fileno(leaseFile));
/freebsd-10.2-release/usr.sbin/syslogd/
H A Dsyslogd.c150 #define SYNC_FILE 0x002 /* do fsync on file after printing */
833 flags = ISKERNEL | SYNC_FILE | ADDDATE; /* fsync after write */
1075 (void)fsync(f->f_file);
2167 * fsync()'s or O_SYNC writes for all the boot messages.
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_subr/
H A Dio.c2129 rv = fsync(filehand);
2132 /* If the file is in a memory filesystem, fsync() may return
/freebsd-10.2-release/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c1103 ** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics.
1105 ** to use Mac OS X style fullsync instead of fsync().
1156 ** [SQLITE_SYNC_FULL]. The first choice is the normal fsync().
9581 #define SQLITE_FullFSync 0x00200000 /* Use full fsync on the backend */
9582 #define SQLITE_CkptFullFSync 0x00400000 /* Use full fsync for checkpoint */
27730 ** fsync(). If you know that your system does support fdatasync() correctly,
27734 # define fdatasync fsync
27750 ** The fsync() system call does not work as advertised on many
27754 ** The SQLITE_NO_SYNC macro disables all fsync()s. This is useful
27766 ** and fsync(), Te
[all...]
/freebsd-10.2-release/contrib/sqlite3/
H A Dsqlite3.c1165 ** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics.
1167 ** to use Mac OS X style fullsync instead of fsync().
1218 ** [SQLITE_SYNC_FULL]. The first choice is the normal fsync().
10167 #define SQLITE_FullFSync 0x00002000 /* Use full fsync on the backend */
10168 #define SQLITE_CkptFullFSync 0x00004000 /* Use full fsync for checkpoint */
26444 ** fsync(). If you know that your system does support fdatasync() correctly,
26448 # define fdatasync fsync
26464 ** The fsync() system call does not work as advertised on many
26468 ** The SQLITE_NO_SYNC macro disables all fsync()s. This is useful
26480 ** and fsync(), Te
[all...]

Completed in 816 milliseconds

123