OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fdatasync
(Results
1 - 25
of
77
) sorted by null
1
2
3
4
/bionic/libc/arch-arm/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
16
END(
fdatasync
)
/bionic/libc/arch-arm64/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
14
END(
fdatasync
)
/bionic/libc/arch-mips/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
19
END(
fdatasync
)
/bionic/libc/arch-x86_64/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
15
END(
fdatasync
)
/bionic/libc/arch-mips64/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
25
END(
fdatasync
)
/bionic/libc/arch-x86/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
29
END(
fdatasync
)
/external/toybox/toys/other/
fsync.c
25
if (((toys.optflags & FLAG_d) ?
fdatasync
(fd) : fsync(fd)))
/external/vboot_reference/scripts/image_signing/
strip_boot_from_image.sh
36
( sudo dd if=/dev/zero of="${rootfs}/filler" bs=4096 conv=
fdatasync
\
/external/libchrome/base/test/
test_file_util_linux.cc
52
if (
fdatasync
(fd.get()) != 0)
/external/ltp/testcases/kernel/syscalls/fdatasync/
fdatasync01.c
23
* TEST TITLE : Basic test for
fdatasync
(2)
34
* This is a Phase I test for the
fdatasync
(2) system call.
96
TEST(
fdatasync
(fd));
100
tst_resm(TFAIL, "
fdatasync
() failed, errno=%d : %s",
104
tst_resm(TPASS, "
fdatasync
() successful");
fdatasync02.c
23
* TEST TITLE : Checking error conditions for
fdatasync
(2)
35
* 1.
fdatasync
(2) returns -1 and sets errno to EBADF for invalid
37
* 2.
fdatasync
(2) returns -1 and sets errno to EINVAL for file
128
TEST(
fdatasync
(fd));
/art/libartpalette/system/
palette_android.cc
129
if (TEMP_FAILURE_RETRY(
fdatasync
(output_fd)) == -1 && errno != EINVAL) {
137
TEMP_FAILURE_RETRY(
fdatasync
(output_fd));
/external/perfetto/src/base/
file_utils.cc
92
return !PERFETTO_EINTR(
fdatasync
(fd));
/device/linaro/bootloader/edk2/StdLib/Include/
unistd.h
166
int
fdatasync
(int);
/external/libbrillo/brillo/
file_utils.cc
227
//
fdatasync
(). To be on the safe side, it is handled in both cases.
229
(data_sync ? HANDLE_EINTR(
fdatasync
(fd)) : HANDLE_EINTR(fsync(fd)));
244
LOG(WARNING) << "Long " << (data_sync ? "
fdatasync
" : "fsync") << "() of "
288
if (HANDLE_EINTR(
fdatasync
(fd)) < 0) {
/external/u-boot/tools/
mkimage.c
567
(void)
fdatasync
(ifd);
611
(void)
fdatasync
(ifd);
/bionic/libc/include/
unistd.h
245
int
fdatasync
(int __fd) __INTRODUCED_IN(9);
/external/autotest/client/cros/faft/utils/
os_interface.py
235
os.
fdatasync
(log_f)
/bionic/tests/headers/posix/
unistd_h.c
313
FUNCTION(
fdatasync
, int (*f)(int));
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
pyport.h
669
extern int
fdatasync
(int);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyport.h
692
extern int
fdatasync
(int);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
pyport.h
708
extern int
fdatasync
(int);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyport.h
669
extern int
fdatasync
(int);
/external/libchrome/base/files/
file_posix.cc
539
return !HANDLE_EINTR(
fdatasync
(file_.get()));
/external/python/cpython2/Include/
pyport.h
692
extern int
fdatasync
(int);
Completed in 1136 milliseconds
1
2
3
4