flags 204 ckptserializer.cpp int flags = O_CREAT | O_TRUNC | O_WRONLY; flags 205 ckptserializer.cpp int fd = _real_open(tempCkptFilename, flags, 0600); flags 343 execwrappers.cpp int flags = fcntl(i, F_GETFD, NULL); flags 344 execwrappers.cpp if (flags != -1) { flags 345 execwrappers.cpp fcntl(i, F_SETFD, flags & ~FD_CLOEXEC); flags 134 miscwrappers.cpp extern "C" int pipe2 ( int fds[2], int flags ) flags 139 miscwrappers.cpp if ((flags & O_NONBLOCK) != 0) newFlags |= SOCK_NONBLOCK; flags 140 miscwrappers.cpp if ((flags & O_CLOEXEC) != 0) newFlags |= SOCK_CLOEXEC; flags 226 miscwrappers.cpp extern "C" int __clone ( int ( *fn ) ( void *arg ), void *child_stack, int flags, void *arg, int *parent_tidptr, struct user_desc *newtls, int *child_tidptr ); flags 292 miscwrappers.cpp SYSCALL_GET_ARGS_7(fnc, fn, void*, child_stack, int, flags, void*, arg, flags 294 miscwrappers.cpp ret = __clone(fn, child_stack, flags, arg, pid, tls, ctid); flags 318 miscwrappers.cpp SYSCALL_GET_ARGS_3(const char*,pathname,int,flags,mode_t,mode); flags 319 miscwrappers.cpp ret = open(pathname, flags, mode); flags 407 miscwrappers.cpp SYSCALL_GET_ARGS_4(int,sockfd,struct sockaddr*,addr,socklen_t*,addrlen,int,flags); flags 408 miscwrappers.cpp ret = accept4(sockfd, addr, addrlen, flags); flags 436 miscwrappers.cpp SYSCALL_GET_ARGS_2(int*,fds,int,flags); flags 437 miscwrappers.cpp ret = pipe2(fds, flags); flags 499 miscwrappers.cpp SYSCALL_GET_ARGS_3(int,fd,sigset_t *,mask,int,flags); flags 500 miscwrappers.cpp ret = signalfd(fd, mask, flags); flags 507 miscwrappers.cpp SYSCALL_GET_ARGS_3(int,fd,sigset_t *,mask,int,flags); flags 508 miscwrappers.cpp ret = signalfd(fd, mask, flags); flags 515 miscwrappers.cpp SYSCALL_GET_ARGS_2(unsigned int,initval,int,flags); flags 516 miscwrappers.cpp ret = eventfd(initval, flags); flags 523 miscwrappers.cpp SYSCALL_GET_ARGS_2(unsigned int,initval,int,flags); flags 524 miscwrappers.cpp ret = eventfd(initval, flags); flags 531 miscwrappers.cpp SYSCALL_GET_ARG(int,flags); flags 532 miscwrappers.cpp ret = epoll_create(flags); flags 537 miscwrappers.cpp SYSCALL_GET_ARG(int,flags); flags 538 miscwrappers.cpp ret = inotify_init1(flags); flags 510 mtcp/mtcp_restart.c ( area.flags & MAP_SHARED ? 's' flags 511 mtcp/mtcp_restart.c : ( area.flags & MAP_ANONYMOUS ? 'p' : '-' ) ), flags 630 mtcp/mtcp_restart.c area.name, area.flags, area.addr, area.size, flags 814 mtcp/mtcp_restart.c if (area.flags & MAP_SHARED) { flags 815 mtcp/mtcp_restart.c area.flags = area.flags ^ MAP_SHARED; flags 816 mtcp/mtcp_restart.c area.flags = area.flags | MAP_PRIVATE | MAP_ANONYMOUS; flags 827 mtcp/mtcp_restart.c area.flags | MAP_FIXED, -1, 0); flags 841 mtcp/mtcp_restart.c else if (area.flags & MAP_ANONYMOUS) { flags 853 mtcp/mtcp_restart.c area.flags ^= MAP_ANONYMOUS; flags 856 mtcp/mtcp_restart.c if (area.flags & MAP_ANONYMOUS) { flags 872 mtcp/mtcp_restart.c area.flags, imagefd, area.offset); flags 895 mtcp/mtcp_restart.c if (!(area.flags & MAP_ANONYMOUS)) mtcp_sys_close (imagefd); flags 274 mtcp/mtcp_sys.h # define mtcp_sys_mmap(addr,length,prot,flags,fd,offset) \ flags 275 mtcp/mtcp_sys.h (void *)mtcp_inline_syscall(mmap2,6,addr,length,prot,flags,fd,offset/4096) flags 468 mtcp/mtcp_util.c area -> flags = MAP_FIXED; flags 469 mtcp/mtcp_util.c if (sflag == 's') area -> flags |= MAP_SHARED; flags 470 mtcp/mtcp_util.c if (sflag == 'p') area -> flags |= MAP_PRIVATE; flags 471 mtcp/mtcp_util.c if (area -> name[0] == '\0') area -> flags |= MAP_ANONYMOUS; flags 349 nosyscallsreal.c void *_real_mmap(void *addr, size_t length, int prot, int flags, flags 351 nosyscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (void*, mmap) (addr,length,prot,flags,fd,offset); flags 388 nosyscallsreal.c int _real_open (const char *pathname, int flags, ...) { flags 391 nosyscallsreal.c if (flags & O_CREAT) { flags 393 nosyscallsreal.c va_start (arg, flags); flags 397 nosyscallsreal.c REAL_FUNC_PASSTHROUGH (open) (pathname, flags, mode); flags 400 nosyscallsreal.c int _real_open64 (const char *pathname, int flags, ...) { flags 403 nosyscallsreal.c if (flags & O_CREAT) { flags 405 nosyscallsreal.c va_start (arg, flags); flags 409 nosyscallsreal.c REAL_FUNC_PASSTHROUGH (open) (pathname, flags, mode); flags 29 plugin/alloc/mmapwrappers.cpp extern "C" void *mmap(void *addr, size_t length, int prot, int flags, flags 33 plugin/alloc/mmapwrappers.cpp void *retval = _real_mmap(addr, length, prot, flags, fd, offset); flags 38 plugin/alloc/mmapwrappers.cpp extern "C" void *mmap64 (void *addr, size_t length, int prot, int flags, flags 42 plugin/alloc/mmapwrappers.cpp void *retval = _real_mmap64(addr, length, prot, flags, fd, offset); flags 57 plugin/alloc/mmapwrappers.cpp size_t new_size, int flags, ...) flags 61 plugin/alloc/mmapwrappers.cpp if (flags == MREMAP_FIXED) { flags 63 plugin/alloc/mmapwrappers.cpp va_start( ap, flags ); flags 66 plugin/alloc/mmapwrappers.cpp retval = _real_mremap(old_address, old_size, new_size, flags, new_address); flags 68 plugin/alloc/mmapwrappers.cpp retval = _real_mremap(old_address, old_size, new_size, flags); flags 75 plugin/alloc/mmapwrappers.cpp size_t new_size, int flags) flags 78 plugin/alloc/mmapwrappers.cpp void *retval = _real_mremap(old_address, old_size, new_size, flags); flags 113 plugin/ipc/event/eventconnection.h inline EventFdConnection(unsigned int initval, int flags) flags 116 plugin/ipc/event/eventconnection.h _flags(flags) flags 139 plugin/ipc/event/eventconnection.h inline SignalFdConnection(int signalfd, const sigset_t* mask, int flags) flags 142 plugin/ipc/event/eventconnection.h _flags(flags) flags 178 plugin/ipc/event/eventconnection.h inline InotifyConnection (int flags) flags 180 plugin/ipc/event/eventconnection.h _flags (flags), flags 129 plugin/ipc/event/eventwrappers.cpp extern "C" int signalfd(int fd, const sigset_t *mask, int flags) flags 132 plugin/ipc/event/eventwrappers.cpp int ret = _real_signalfd(fd, mask, flags); flags 134 plugin/ipc/event/eventwrappers.cpp JTRACE("signalfd created") (fd) (flags); flags 135 plugin/ipc/event/eventwrappers.cpp EventConnList::instance().add(ret, new SignalFdConnection(fd, mask, flags)); flags 143 plugin/ipc/event/eventwrappers.cpp extern "C" int eventfd(EVENTFD_VAL_TYPE initval, int flags) flags 146 plugin/ipc/event/eventwrappers.cpp int ret = _real_eventfd(initval, flags); flags 148 plugin/ipc/event/eventwrappers.cpp JTRACE("eventfd created") (ret) (initval) (flags); flags 149 plugin/ipc/event/eventwrappers.cpp EventConnList::instance().add(ret, new EventFdConnection(initval, flags)); flags 169 plugin/ipc/event/eventwrappers.cpp extern "C" int epoll_create1(int flags) flags 172 plugin/ipc/event/eventwrappers.cpp int ret = _real_epoll_create1(flags); flags 174 plugin/ipc/event/eventwrappers.cpp JTRACE("epoll fd created1") (ret) (flags); flags 175 plugin/ipc/event/eventwrappers.cpp EventConnList::instance().add(ret, new EpollConnection(flags)); flags 241 plugin/ipc/event/eventwrappers.cpp EXTERNC int inotify_init1(int flags) flags 280 plugin/ipc/event/eventwrappers.cpp EXTERNC int inotify_init1(int flags) flags 283 plugin/ipc/event/eventwrappers.cpp int ret = _real_inotify_init1(flags); flags 285 plugin/ipc/event/eventwrappers.cpp JTRACE("inotify1 fd created") (ret) (flags); flags 286 plugin/ipc/event/eventwrappers.cpp Connection *con = new InotifyConnection(flags); flags 287 plugin/ipc/event/eventwrappers.cpp EventConnList::instance().add(ret, flags); flags 229 plugin/ipc/file/fileconnection.cpp int flags, mode_t mode, int type) flags 231 plugin/ipc/file/fileconnection.cpp , _flags(flags) flags 60 plugin/ipc/file/fileconnection.h PtyConnection(int fd, const char *path, int flags, mode_t mode, int type); flags 126 plugin/ipc/file/fileconnection.h FileConnection(const string& path, int flags, mode_t mode, flags 131 plugin/ipc/file/fileconnection.h , _flags(flags) flags 183 plugin/ipc/file/fileconnection.h FifoConnection(const string& path, int flags, mode_t mode) flags 229 plugin/ipc/file/fileconnlist.cpp if ((area.flags & MAP_SHARED) && area.prot != 0) { flags 256 plugin/ipc/file/fileconnlist.cpp int flags = Util::memProtToOpenFlags(area.prot); flags 257 plugin/ipc/file/fileconnlist.cpp int fd = _real_open(area.name, flags, 0); flags 260 plugin/ipc/file/fileconnlist.cpp new FileConnection(area.name, flags, 0, FileConnection::FILE_SHM); flags 343 plugin/ipc/file/fileconnlist.cpp MAP_FIXED | area.flags, fd, area.offset); flags 344 plugin/ipc/file/fileconnlist.cpp JASSERT(addr != MAP_FAILED) (area.flags) (area.prot) (JASSERT_ERRNO) flags 357 plugin/ipc/file/fileconnlist.cpp MAP_FIXED | area->flags, flags 359 plugin/ipc/file/fileconnlist.cpp JASSERT(addr != MAP_FAILED) (area->flags) (area->prot) (JASSERT_ERRNO) .Text("mmap failed"); flags 451 plugin/ipc/file/fileconnlist.cpp int flags, mode_t mode) flags 470 plugin/ipc/file/fileconnlist.cpp c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_DEV_TTY); flags 475 plugin/ipc/file/fileconnlist.cpp c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_BSD_MASTER); flags 478 plugin/ipc/file/fileconnlist.cpp c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_BSD_SLAVE); flags 482 plugin/ipc/file/fileconnlist.cpp c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_MASTER); flags 485 plugin/ipc/file/fileconnlist.cpp c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_SLAVE); flags 493 plugin/ipc/file/fileconnlist.cpp c = new FileConnection(path, flags, mode, type); flags 496 plugin/ipc/file/fileconnlist.cpp c = new FifoConnection(path, flags, mode); flags 59 plugin/ipc/file/fileconnlist.h void processFileConnection(int fd, const char *path, int flags, mode_t mode); flags 165 plugin/ipc/file/filewrappers.cpp extern "C" int dup3(int oldfd, int newfd, int flags) flags 168 plugin/ipc/file/filewrappers.cpp int res = _real_dup3(oldfd, newfd, flags); flags 293 plugin/ipc/file/filewrappers.cpp extern "C" int posix_openpt(int flags) flags 296 plugin/ipc/file/filewrappers.cpp int fd = _real_posix_openpt(flags); flags 299 plugin/ipc/file/filewrappers.cpp flags, -1); flags 327 plugin/ipc/file/filewrappers.cpp extern "C" int mkostemp(char *ttemplate, int flags) flags 330 plugin/ipc/file/filewrappers.cpp int fd = _real_mkostemp(ttemplate, flags); flags 332 plugin/ipc/file/filewrappers.cpp FileConnList::instance().processFileConnection(fd, NULL, flags, 0600); flags 349 plugin/ipc/file/filewrappers.cpp extern "C" int mkostemps(char *ttemplate, int suffixlen, int flags) flags 352 plugin/ipc/file/filewrappers.cpp int fd = _real_mkostemps(ttemplate, suffixlen, flags); flags 354 plugin/ipc/file/filewrappers.cpp FileConnList::instance().processFileConnection(fd, NULL, flags, 0600); flags 360 plugin/ipc/file/filewrappers.cpp static int _open_open64_work(int(*fn) (const char *path, int flags, ...), flags 361 plugin/ipc/file/filewrappers.cpp const char *path, int flags, mode_t mode) flags 374 plugin/ipc/file/filewrappers.cpp int fd = (*fn) (newpath, flags, mode); flags 377 plugin/ipc/file/filewrappers.cpp FileConnList::instance().processFileConnection(fd, newpath, flags, mode); flags 387 plugin/ipc/file/filewrappers.cpp extern "C" int open(const char *path, int flags, ...) flags 391 plugin/ipc/file/filewrappers.cpp if (flags & O_CREAT) { flags 393 plugin/ipc/file/filewrappers.cpp va_start(arg, flags); flags 397 plugin/ipc/file/filewrappers.cpp return _open_open64_work(_real_open, path, flags, mode); flags 400 plugin/ipc/file/filewrappers.cpp extern "C" int __open_2(const char *path, int flags) flags 402 plugin/ipc/file/filewrappers.cpp return _open_open64_work(_real_open, path, flags, 0); flags 413 plugin/ipc/file/filewrappers.cpp extern "C" int open64(const char *path, int flags, ...) flags 417 plugin/ipc/file/filewrappers.cpp if (flags & O_CREAT) { flags 419 plugin/ipc/file/filewrappers.cpp va_start(arg, flags); flags 423 plugin/ipc/file/filewrappers.cpp return _open_open64_work(_real_open64, path, flags, mode); flags 426 plugin/ipc/file/filewrappers.cpp extern "C" int __open64_2(const char *path, int flags) flags 428 plugin/ipc/file/filewrappers.cpp return _open_open64_work(_real_open64, path, flags, 0); flags 502 plugin/ipc/file/filewrappers.cpp extern "C" int openat(int dirfd, const char *path, int flags, ...) flags 505 plugin/ipc/file/filewrappers.cpp va_start(arg, flags); flags 509 plugin/ipc/file/filewrappers.cpp int fd = _real_openat(dirfd, path, flags, mode); flags 514 plugin/ipc/file/filewrappers.cpp flags, mode); flags 520 plugin/ipc/file/filewrappers.cpp extern "C" int openat_2(int dirfd, const char *path, int flags) flags 522 plugin/ipc/file/filewrappers.cpp return openat(dirfd, path, flags, 0); flags 525 plugin/ipc/file/filewrappers.cpp extern "C" int __openat_2(int dirfd, const char *path, int flags) flags 527 plugin/ipc/file/filewrappers.cpp return openat(dirfd, path, flags, 0); flags 530 plugin/ipc/file/filewrappers.cpp extern "C" int openat64(int dirfd, const char *path, int flags, ...) flags 533 plugin/ipc/file/filewrappers.cpp va_start(arg, flags); flags 537 plugin/ipc/file/filewrappers.cpp int fd = _real_openat64(dirfd, path, flags, mode); flags 542 plugin/ipc/file/filewrappers.cpp flags, mode); flags 548 plugin/ipc/file/filewrappers.cpp extern "C" int openat64_2(int dirfd, const char *path, int flags) flags 550 plugin/ipc/file/filewrappers.cpp return openat64(dirfd, path, flags, 0); flags 553 plugin/ipc/file/filewrappers.cpp extern "C" int __openat64_2(int dirfd, const char *path, int flags) flags 555 plugin/ipc/file/filewrappers.cpp return openat64(dirfd, path, flags, 0); flags 139 plugin/ipc/ipc.cpp extern "C" int dup3(int oldfd, int newfd, int flags) flags 142 plugin/ipc/ipc.cpp int res = _real_dup3(oldfd, newfd, flags); flags 46 plugin/ipc/socket/connectionrewirer.cpp int flags = _real_fcntl(sockfd, F_GETFL, NULL); flags 47 plugin/ipc/socket/connectionrewirer.cpp JASSERT(flags != -1); flags 49 plugin/ipc/socket/connectionrewirer.cpp (void*) (long) (flags | O_NONBLOCK)) != -1); flags 55 plugin/ipc/socket/connectionrewirer.cpp int flags = _real_fcntl(sockfd, F_GETFL, NULL); flags 56 plugin/ipc/socket/connectionrewirer.cpp JASSERT(flags != -1); flags 58 plugin/ipc/socket/connectionrewirer.cpp (void*) (long) (flags & ~O_NONBLOCK)) != -1); flags 215 plugin/ipc/socket/socketwrappers.cpp socklen_t *addrlen, int flags) flags 225 plugin/ipc/socket/socketwrappers.cpp int ret = _real_accept4(sockfd, addr, addrlen, flags); flags 303 plugin/ipc/socket/socketwrappers.cpp char *serv, size_t servlen, int flags) flags 307 plugin/ipc/socket/socketwrappers.cpp int ret = _real_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags); flags 99 plugin/pid/pid.cpp static int openSharedFile(string name, int flags) flags 109 plugin/pid/pid.cpp if ((fd = _real_open(name.c_str(), O_EXCL|O_CREAT|O_TRUNC | flags, 0600)) >= 0) { flags 114 plugin/pid/pid.cpp JTRACE("_real_open: ")(strerror(errno))(fd)(flags); flags 118 plugin/pid/pid.cpp if ((fd = _real_open(name.c_str(), flags, 0600)) >= 0) { flags 98 plugin/pid/pid_filewrappers.cpp extern "C" int open (const char *path, int flags, ... ) flags 102 plugin/pid/pid_filewrappers.cpp if (flags & O_CREAT) { flags 104 plugin/pid/pid_filewrappers.cpp va_start (arg, flags); flags 111 plugin/pid/pid_filewrappers.cpp return _real_open(newpath, flags, mode); flags 115 plugin/pid/pid_filewrappers.cpp extern "C" int open64 (const char *path, int flags, ... ) flags 119 plugin/pid/pid_filewrappers.cpp if (flags & O_CREAT) { flags 121 plugin/pid/pid_filewrappers.cpp va_start (arg, flags); flags 128 plugin/pid/pid_filewrappers.cpp return _real_open64(newpath, flags, mode); flags 114 plugin/pid/pid_miscwrappers.cpp flags, void *arg, int *parent_tidptr, flags 117 plugin/pid/pid_miscwrappers.cpp extern "C" int __clone(int (*fn) (void *arg), void *child_stack, int flags, flags 149 plugin/pid/pid_miscwrappers.cpp pid_t tid = _real_clone(clone_start, child_stack, flags, threadArg, flags 266 plugin/pid/pid_miscwrappers.cpp extern "C" int __clone (int (*fn) (void *arg), void *child_stack, int flags, void *arg, int *parent_tidptr, struct user_desc *newtls, int *child_tidptr); flags 288 plugin/pid/pid_syscallsreal.c int _real_clone ( int ( *function ) (void *), void *child_stack, int flags, void *arg, int *parent_tidptr, struct user_desc *newtls, int *child_tidptr ) flags 290 plugin/pid/pid_syscallsreal.c REAL_FUNC_PASSTHROUGH ( __clone ) ( function, child_stack, flags, arg, flags 358 plugin/pid/pid_syscallsreal.c int _real_open(const char *path, int flags, ...) { flags 361 plugin/pid/pid_syscallsreal.c if (flags & O_CREAT) { flags 363 plugin/pid/pid_syscallsreal.c va_start (arg, flags); flags 367 plugin/pid/pid_syscallsreal.c REAL_FUNC_PASSTHROUGH(open) (path, flags, mode); flags 370 plugin/pid/pid_syscallsreal.c int _real_open64(const char *path, int flags, ...) { flags 373 plugin/pid/pid_syscallsreal.c if (flags & O_CREAT) { flags 375 plugin/pid/pid_syscallsreal.c va_start (arg, flags); flags 379 plugin/pid/pid_syscallsreal.c REAL_FUNC_PASSTHROUGH(open64) (path, flags, mode); flags 154 plugin/pid/pidwrappers.h int _real_clone ( int ( *fn ) ( void *arg ), void *child_stack, int flags, flags 214 plugin/pid/pidwrappers.h int _real_open(const char *pathname, int flags, ...); flags 215 plugin/pid/pidwrappers.h int _real_open64(const char *pathname, int flags, ...); flags 169 plugin/svipc/sysvipc.h SysVObj(int id, int realId, int key, int flags) { flags 171 plugin/svipc/sysvipc.h _flags = flags; flags 174 plugin/timer/timerlist.cpp if (tinfo.flags & TIMER_ABSTIME) { flags 185 plugin/timer/timerlist.cpp JASSERT(_real_timer_settime(realId, tinfo.flags, &tspec, NULL) == 0) flags 236 plugin/timer/timerlist.cpp void TimerList::on_timer_settime(timer_t timerid, int flags, flags 241 plugin/timer/timerlist.cpp _timerInfo[timerid].flags = flags; flags 51 plugin/timer/timerlist.h int flags; flags 97 plugin/timer/timerlist.h void on_timer_settime(timer_t timerid, int flags, flags 65 plugin/timer/timerwrappers.cpp extern "C" int timer_settime(timer_t timerid, int flags, flags 71 plugin/timer/timerwrappers.cpp int ret = _real_timer_settime(realId, flags, new_value, old_value); flags 73 plugin/timer/timerwrappers.cpp TimerList::instance().on_timer_settime(timerid, flags, new_value); flags 154 plugin/timer/timerwrappers.cpp extern "C" int clock_nanosleep(clockid_t clock_id, int flags, flags 160 plugin/timer/timerwrappers.cpp int ret = _real_clock_nanosleep(realId, flags, request, remain); flags 204 procselfmaps.cpp area -> flags = MAP_FIXED; flags 206 procselfmaps.cpp area -> flags |= MAP_SHARED; flags 209 procselfmaps.cpp area -> flags |= MAP_PRIVATE; flags 212 procselfmaps.cpp area -> flags |= MAP_ANONYMOUS; flags 559 syscallsreal.c int flags) flags 561 syscallsreal.c REAL_FUNC_PASSTHROUGH (accept4) (sockfd,addr,addrlen,flags); flags 654 syscallsreal.c int _real_dup3 (int oldfd, int newfd, int flags) flags 656 syscallsreal.c REAL_FUNC_PASSTHROUGH (dup3) (oldfd, newfd, flags); flags 678 syscallsreal.c int _real_posix_openpt (int flags) flags 680 syscallsreal.c REAL_FUNC_PASSTHROUGH (posix_openpt) (flags); flags 803 syscallsreal.c int _real_open(const char *pathname, int flags, ...) { flags 806 syscallsreal.c if (flags & O_CREAT) { flags 808 syscallsreal.c va_start (arg, flags); flags 812 syscallsreal.c REAL_FUNC_PASSTHROUGH (open) (pathname, flags, mode); flags 827 syscallsreal.c int _real_open64(const char *pathname, int flags, ...) { flags 830 syscallsreal.c if (flags & O_CREAT) { flags 832 syscallsreal.c va_start (arg, flags); flags 836 syscallsreal.c REAL_FUNC_PASSTHROUGH (open) (pathname, flags, mode); flags 850 syscallsreal.c int _real_openat(int dirfd, const char *pathname, int flags, mode_t mode) { flags 851 syscallsreal.c REAL_FUNC_PASSTHROUGH (openat) (dirfd, pathname, flags, mode); flags 855 syscallsreal.c int _real_openat64(int dirfd, const char *pathname, int flags, mode_t mode) { flags 856 syscallsreal.c REAL_FUNC_PASSTHROUGH (openat64) (dirfd, pathname, flags, mode); flags 918 syscallsreal.c int _real_clone (int (*function) (void *), void *child_stack, int flags, void *arg, int *parent_tidptr, struct user_desc *newtls, int *child_tidptr) flags 920 syscallsreal.c REAL_FUNC_PASSTHROUGH (__clone) (function, child_stack, flags, arg, flags 1067 syscallsreal.c void *_real_mmap(void *addr, size_t length, int prot, int flags, flags 1069 syscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (void*, mmap) (addr,length,prot,flags,fd,offset); flags 1073 syscallsreal.c void *_real_mmap64(void *addr, size_t length, int prot, int flags, flags 1075 syscallsreal.c REAL_FUNC_PASSTHROUGH_TYPED (void*,mmap64) (addr,length,prot,flags,fd,offset); flags 1081 syscallsreal.c int flags, ... /* void *new_address*/) { flags 1082 syscallsreal.c if (flags == MREMAP_FIXED) { flags 1084 syscallsreal.c va_start(ap, flags); flags 1088 syscallsreal.c (old_address, old_size, new_size, flags, new_address); flags 1091 syscallsreal.c (old_address, old_size, new_size, flags); flags 1097 syscallsreal.c int flags) { flags 1099 syscallsreal.c (old_address, old_size, new_size, flags); flags 297 syscallwrappers.h int flags); flags 316 syscallwrappers.h int _real_clone (int (*fn) (void *arg), void *child_stack, int flags, void *arg, int *parent_tidptr, struct user_desc *newtls, int *child_tidptr); flags 318 syscallwrappers.h int _real_open(const char *pathname, int flags, ...); flags 319 syscallwrappers.h int _real_open64(const char *pathname, int flags, ...); flags 322 syscallwrappers.h int _real_openat(int dirfd, const char *pathname, int flags, mode_t mode); flags 323 syscallwrappers.h int _real_openat64(int dirfd, const char *pathname, int flags, mode_t mode); flags 332 syscallwrappers.h int _real_dup3 (int oldfd, int newfd, int flags); flags 338 syscallwrappers.h int _real_posix_openpt (int flags); flags 406 syscallwrappers.h void *_real_mmap(void *addr, size_t length, int prot, int flags, flags 408 syscallwrappers.h void *_real_mmap64(void *addr, size_t length, int prot, int flags, flags 412 syscallwrappers.h int flags, ... /* void *new_address */); flags 415 syscallwrappers.h int flags); flags 71 threadinfo.h int flags; flags 180 threadlist.cpp void ThreadList::initThread(Thread* th, int (*fn)(void*), void *arg, int flags, flags 186 threadlist.cpp th->flags = flags; flags 704 threadlist.cpp thread->flags & ~CLONE_SETTLS, flags 38 threadlist.h void initThread(Thread* th, int (*fn)(void*), void *arg, int flags, flags 97 threadwrappers.cpp extern "C" int __clone(int (*fn) (void *arg), void *child_stack, int flags, flags 105 threadwrappers.cpp ThreadList::initThread(thread, fn, arg, flags, ptid, ctid); flags 111 threadwrappers.cpp pid_t tid = _real_clone(clone_start, child_stack, flags, thread, flags 480 util_misc.cpp area -> flags = MAP_FIXED; flags 481 util_misc.cpp if (sflag == 's') area -> flags |= MAP_SHARED; flags 482 util_misc.cpp if (sflag == 'p') area -> flags |= MAP_PRIVATE; flags 483 util_misc.cpp if (area -> name[0] == '\0') area -> flags |= MAP_ANONYMOUS; flags 210 writeckpt.cpp area.flags = MAP_PRIVATE | MAP_ANONYMOUS; flags 214 writeckpt.cpp area.flags = MAP_PRIVATE | MAP_ANONYMOUS; flags 219 writeckpt.cpp area.flags = MAP_PRIVATE | MAP_ANONYMOUS; flags 241 writeckpt.cpp if ((area.flags & MAP_PRIVATE) /*&& (area.prot & PROT_WRITE)*/) { flags 242 writeckpt.cpp area.flags |= MAP_ANONYMOUS; flags 384 writeckpt.cpp if (!(area -> flags & MAP_ANONYMOUS)) flags 409 writeckpt.cpp ((area->flags & MAP_ANONYMOUS) != 0) && flags 410 writeckpt.cpp ((area->flags & MAP_PRIVATE) != 0))) { flags 422 writeckpt.cpp JASSERT((area->flags & MAP_ANONYMOUS) || (area->flags & MAP_SHARED));