HomeSort by relevance Sort by last modified time
    Searched refs:portable_flags (Results 1 - 8 of 8) sorted by null

  /development/ndk/sources/android/libportable/arch-mips/
eventfd.c 39 static inline int efd_flags_pton(int portable_flags)
43 ALOGV("%s(portable_flags:0x%x) {", __func__, portable_flags);
45 if (portable_flags & EFD_NONBLOCK_PORTABLE) {
47 portable_flags &= ~EFD_NONBLOCK_PORTABLE;
50 if (portable_flags & EFD_CLOEXEC_PORTABLE) {
52 portable_flags &= EFD_CLOEXEC_PORTABLE;
55 if (portable_flags & EFD_SEMAPHORE_PORTABLE) {
57 portable_flags &= EFD_SEMAPHORE_PORTABLE;
60 if (portable_flags != 0)
    [all...]
inotify.c 45 static inline int in_flags_pton(int portable_flags)
49 ALOGV("%s(portable_flags:0x%x) {", __func__, portable_flags);
51 if (portable_flags & IN_NONBLOCK_PORTABLE) {
55 if (portable_flags & IN_CLOEXEC_PORTABLE) {
64 int WRAP(inotify_init1)(int portable_flags) {
69 ALOGV("%s(portable_flags:%d) {", __func__,
70 portable_flags);
72 native_flags = in_flags_pton(portable_flags);
pipe.c 44 static inline int tdf_flags_pton(int portable_flags)
48 ALOGV("%s(portable_flags:0x%x) {", __func__, portable_flags);
50 if (portable_flags & O_NONBLOCK_PORTABLE) {
54 if (portable_flags & O_CLOEXEC_PORTABLE) {
63 int WRAP(pipe2)(int pipefd[2], int portable_flags) {
68 ALOGV("%s(pipefd[2]:%p, portable_flags:0x%x) {", __func__,
69 pipefd, portable_flags);
71 native_flags = tdf_flags_pton(portable_flags);
timerfd.c 42 static inline int tdf_flags_pton(int portable_flags)
46 ALOGV("%s(portable_flags:0x%x) {", __func__, portable_flags);
48 if (portable_flags & TFD_NONBLOCK_PORTABLE) {
52 if (portable_flags & TFD_CLOEXEC_PORTABLE) {
61 int WRAP(timerfd_create)(int clockid, int portable_flags) {
66 ALOGV("%s(clockid:%d, portable_flags:%d) {", __func__,
67 clockid, portable_flags);
69 native_flags = tdf_flags_pton(portable_flags);
mmap.c 47 static inline int mmap_flags_pton(int portable_flags)
51 ALOGV("%s(portable_flags:0x%x) {", __func__, portable_flags);
53 if (portable_flags & MAP_SHARED_PORTABLE) {
56 if (portable_flags & MAP_PRIVATE_PORTABLE) {
59 if (portable_flags & MAP_FIXED_PORTABLE) {
62 if (portable_flags & MAP_ANONYMOUS_PORTABLE) {
65 if (portable_flags & MAP_GROWSDOWN_PORTABLE) {
68 if (portable_flags & MAP_DENYWRITE_PORTABLE) {
71 if (portable_flags & MAP_EXECUTABLE_PORTABLE)
    [all...]
signal.c 1045 int portable_flags = 0; local
    [all...]
syscall.c 227 int portable_flags; local
230 portable_flags = va_arg(ap, int);
233 ret = WRAP(inotify_init1)(portable_flags);
265 int portable_flags; local
269 portable_flags = va_arg(ap, int);
272 ret = WRAP(pipe2)(pipefd_ptr, portable_flags);
  /development/ndk/sources/android/libportable/common/include/
filefd_portable.h 42 extern int WRAP(pipe2)(int pipefd[2], int portable_flags);

Completed in 60 milliseconds