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
145
) sorted by null
1
2
3
4
5
6
/bionic/libc/arch-arm/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
14
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-x86/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
21
END(
fdatasync
)
/bionic/libc/arch-mips64/syscalls/
fdatasync.S
5
ENTRY(
fdatasync
)
function
25
END(
fdatasync
)
/external/chromium_org/base/test/
test_file_util_linux.cc
21
if (
fdatasync
(fd.get()) != 0)
/external/chromium_org/third_party/leveldatabase/src/port/
port_posix.h
67
// Use fsync() on platforms without
fdatasync
()
68
#define
fdatasync
fsync
macro
72
//
fdatasync
() was only introduced in API level 9 on Android. Use fsync()
74
#define
fdatasync
fsync
macro
/libcore/luni/src/main/native/
Portability.h
41
// TODO: Darwin appears to have an
fdatasync
syscall.
42
static inline int
fdatasync
(int fd) { return fsync(fd); }
function
/external/sqlite/dist/
Android.mk
35
-Dfdatasync=
fdatasync
\
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
mock_kernel_proxy.h
32
MOCK_METHOD1(
fdatasync
, int(int));
/external/fio/
configure
727
#
fdatasync
() probe
728
fdatasync
="no"
734
return
fdatasync
(0);
737
if compile_prog "" "" "
fdatasync
"; then
738
fdatasync
="yes"
740
echo "
fdatasync
$
fdatasync
"
1230
if test "$
fdatasync
" = "yes" ; then
/bionic/libc/include/
unistd.h
153
extern int
fdatasync
(int);
/development/ndk/platforms/android-12/include/
unistd.h
147
extern int
fdatasync
(int);
/development/ndk/platforms/android-3/include/
unistd.h
187
extern int
fdatasync
(int);
/development/ndk/platforms/android-8/include/
unistd.h
192
extern int
fdatasync
(int);
/development/ndk/platforms/android-9/include/
unistd.h
145
extern int
fdatasync
(int);
/development/ndk/platforms/android-L/include/
unistd.h
156
extern int
fdatasync
(int);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_bionic.cc
124
OP(
fdatasync
); \
176
int WRAP(
fdatasync
)(int fd) NOTHROW {
369
CHECK_REAL(
fdatasync
);
370
return REAL(
fdatasync
)(fd);
/external/fio/os/
os-mac.h
166
* For some reason, there's no header definition for
fdatasync
(), even
169
extern int
fdatasync
(int fd);
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
unistd.h
142
extern int
fdatasync
(int);
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
unistd.h
142
extern int
fdatasync
(int);
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
unistd.h
142
extern int
fdatasync
(int);
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
unistd.h
142
extern int
fdatasync
(int);
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
unistd.h
146
extern int
fdatasync
(int);
Completed in 510 milliseconds
1
2
3
4
5
6