OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EINTR
(Results
1 - 25
of
857
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/bionic/libc/bionic/
close.cpp
36
if (rc == -1 && errno ==
EINTR
) {
37
// POSIX says that if close returns with
EINTR
, the fd must not be closed.
40
// with the state after
EINTR
being undefined, and EINPROGRESS for the case where close
45
// but succeeded. So returning
EINTR
is wrong (because Linux always closes) and EINPROGRESS
sigwait.cpp
41
// __rt_sigtimedwait can return EAGAIN or
EINTR
, we need to loop
49
if (errno != EAGAIN && errno !=
EINTR
) {
/external/google-breakpad/src/common/linux/
eintr_wrapper.h
36
// signal and return
EINTR
. See man 7 signal.
43
} while (eintr_wrapper_result == -1 && errno ==
EINTR
); \
51
if (eintr_wrapper_result == -1 && errno ==
EINTR
) { \
/external/libchrome/base/posix/
eintr_wrapper.h
6
// signal and return
EINTR
. See man 7 signal.
9
// caller will nonetheless see an
EINTR
in Debug builds.
31
} while (eintr_wrapper_result == -1 && errno ==
EINTR
); \
42
} while (eintr_wrapper_result == -1 && errno ==
EINTR
&& \
53
if (eintr_wrapper_result == -1 && errno ==
EINTR
) { \
/external/libweave/third_party/chromium/base/posix/
eintr_wrapper.h
6
// signal and return
EINTR
. See man 7 signal.
9
// caller will nonetheless see an
EINTR
in Debug builds.
31
} while (eintr_wrapper_result == -1 && errno ==
EINTR
); \
42
} while (eintr_wrapper_result == -1 && errno ==
EINTR
&& \
53
if (eintr_wrapper_result == -1 && errno ==
EINTR
) { \
/external/libvncserver/libvncclient/
tls_none.c
41
errno =
EINTR
;
49
errno =
EINTR
;
/frameworks/compile/libbcc/lib/Support/
OutputFile.cpp
46
} else if ((errno == EAGAIN) || (errno ==
EINTR
)) {
47
// If the errno is EAGAIN or
EINTR
, then we try to write again.
68
} while (errno ==
EINTR
);
80
if (errno !=
EINTR
) {
84
//
EINTR
FileBase.cpp
91
if (errno !=
EINTR
) {
109
} else if (errno !=
EINTR
) {
119
} else if (errno !=
EINTR
) {
189
if (errno ==
EINTR
) {
219
} while (errno ==
EINTR
);
255
} else if (errno !=
EINTR
) {
274
} while (errno ==
EINTR
);
290
} while (errno ==
EINTR
);
InputFile.cpp
42
} else if ((errno == EAGAIN) || (errno ==
EINTR
)) {
43
// If the errno is EAGAIN or
EINTR
, then we try to read again.
/bionic/libc/kernel/uapi/asm-generic/
errno-base.h
25
#define
EINTR
4
/development/ndk/platforms/android-21/include/asm-generic/
errno-base.h
25
#define
EINTR
4
/development/ndk/platforms/android-3/include/asm-generic/
errno-base.h
18
#define
EINTR
4
/external/kernel-headers/original/uapi/asm-generic/
errno-base.h
7
#define
EINTR
4 /* Interrupted system call */
/external/valgrind/gdbserver_tests/
fork_chain.c
26
if (errno !=
EINTR
) {
/external/valgrind/memcheck/tests/
post-syscall.c
31
if (ret != -1 || errno !=
EINTR
) {
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
errno-base.h
7
#define
EINTR
4 /* Interrupted system call */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
errno-base.h
7
#define
EINTR
4 /* Interrupted system call */
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/asm-generic/
errno-base.h
18
#define
EINTR
4
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/asm-generic/
errno-base.h
18
#define
EINTR
4
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/asm-generic/
errno-base.h
18
#define
EINTR
4
/prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/asm-generic/
errno-base.h
18
#define
EINTR
4
/prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/asm-generic/
errno-base.h
18
#define
EINTR
4
/prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/asm-generic/
errno-base.h
18
#define
EINTR
4
/prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/asm-generic/
errno-base.h
18
#define
EINTR
4
/prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/asm-generic/
errno-base.h
18
#define
EINTR
4
Completed in 747 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>