/development/ndk/sources/android/libportable/arch-mips/ |
inotify.c | 47 int native_flags = 0; local 52 native_flags |= IN_NONBLOCK; 56 native_flags |= IN_CLOEXEC; 59 ALOGV("%s: return(native_flags:%d); }", __func__, native_flags); 60 return native_flags; 66 int native_flags; local 72 native_flags = in_flags_pton(portable_flags); 74 rv = syscall(__NR_inotify_init1, native_flags); 76 if (native_flags & IN_CLOEXEC) [all...] |
pipe.c | 46 int native_flags = 0; local 51 native_flags |= O_NONBLOCK; 55 native_flags |= O_CLOEXEC; 58 ALOGV("%s: return(native_flags:%d); }", __func__, native_flags); 59 return native_flags; 64 int native_flags; local 71 native_flags = tdf_flags_pton(portable_flags); 73 rv = REAL(pipe2)(pipefd, native_flags); 78 if (native_flags & O_CLOEXEC) [all...] |
timerfd.c | 44 int native_flags = 0; local 49 native_flags |= TFD_NONBLOCK; 53 native_flags |= TFD_CLOEXEC; 56 ALOGV("%s: return(native_flags:%d); }", __func__, native_flags); 57 return native_flags; 63 int native_flags; local 69 native_flags = tdf_flags_pton(portable_flags); 71 rv = REAL(syscall)(__NR_timerfd_create, clockid, native_flags); 73 if (native_flags & TFD_CLOEXEC) [all...] |
mmap.c | 49 int native_flags = 0; local 54 native_flags |= MAP_SHARED; 57 native_flags |= MAP_PRIVATE; 60 native_flags |= MAP_FIXED; 63 native_flags |= MAP_ANONYMOUS; 66 native_flags |= MAP_GROWSDOWN; 69 native_flags |= MAP_DENYWRITE; 72 native_flags |= MAP_EXECUTABLE; 75 native_flags |= MAP_LOCKED; 78 native_flags |= MAP_NORESERVE 94 int native_prot, native_flags; local [all...] |
eventfd.c | 41 int native_flags = 0; local 46 native_flags |= EFD_NONBLOCK; 51 native_flags |= EFD_CLOEXEC; 56 native_flags |= EFD_SEMAPHORE; 64 ALOGV("%s: return(native_flags:%d); }", __func__, native_flags); 65 return native_flags; 77 int native_flags; local 83 native_flags = efd_flags_pton(portable_flags); 85 rv = REAL(eventfd)(initval, native_flags); [all...] |
open.c | 79 int native_flags; local 96 native_flags = open_flags_pton(flags); 98 fd = __open(pathname, native_flags, mode); 101 ALOGV("%s: fd = %d = __open(pathname:%p, native_flags:0x%x, mode:0x%x);", __func__, 102 fd, pathname, native_flags, mode); 120 int native_flags; local 137 native_flags = open_flags_pton(flags); 139 fd = __openat(dirfd, pathname, native_flags, mode); 142 ALOGV("%s: fd = %d = __open(pathname:0x%p, native_flags:0x%x, mode:0x%d);", __func__, 143 fd, pathname, native_flags, mode) [all...] |
signal.c | 1254 int native_flags = 0; local [all...] |