mode               90 coordinatorapi.cpp static jalib::JSocket createNewSocketToCoordinator(CoordinatorMode mode)
mode              402 coordinatorapi.cpp void CoordinatorAPI::startNewCoordinator(CoordinatorMode mode)
mode              406 coordinatorapi.cpp   Util::getCoordHostAndPort(mode, &host, &port);
mode              453 coordinatorapi.cpp void CoordinatorAPI::createNewConnToCoord(CoordinatorMode mode)
mode              455 coordinatorapi.cpp   if (mode & COORD_JOIN) {
mode              456 coordinatorapi.cpp     _coordinatorSocket = createNewSocketToCoordinator(mode);
mode              459 coordinatorapi.cpp   } else if (mode & COORD_NEW) {
mode              460 coordinatorapi.cpp     startNewCoordinator(mode);
mode              461 coordinatorapi.cpp     _coordinatorSocket = createNewSocketToCoordinator(mode);
mode              464 coordinatorapi.cpp   } else if (mode & COORD_ANY) {
mode              465 coordinatorapi.cpp     _coordinatorSocket = createNewSocketToCoordinator(mode);
mode              468 coordinatorapi.cpp       startNewCoordinator(mode);
mode              469 coordinatorapi.cpp       _coordinatorSocket = createNewSocketToCoordinator(mode);
mode              519 coordinatorapi.cpp void CoordinatorAPI::connectToCoordOnStartup(CoordinatorMode mode,
mode              527 coordinatorapi.cpp   if (mode & COORD_NONE) {
mode              533 coordinatorapi.cpp   createNewConnToCoord(mode);
mode              580 coordinatorapi.cpp void CoordinatorAPI::connectToCoordOnRestart(CoordinatorMode  mode,
mode              589 coordinatorapi.cpp   if (mode & COORD_NONE) {
mode              594 coordinatorapi.cpp   createNewConnToCoord(mode);
mode               63 coordinatorapi.h       void connectToCoordOnStartup(CoordinatorMode  mode,
mode               69 coordinatorapi.h       void connectToCoordOnRestart(CoordinatorMode  mode,
mode              107 coordinatorapi.h       void startNewCoordinator(CoordinatorMode mode);
mode              108 coordinatorapi.h       void createNewConnToCoord(CoordinatorMode mode);
mode              318 miscwrappers.cpp       SYSCALL_GET_ARGS_3(const char*,pathname,int,flags,mode_t,mode);
mode              319 miscwrappers.cpp       ret = open(pathname, flags, mode);
mode              231 mtcp/mtcp_sys.h # define mtcp_sys_access(path,mode)  \
mode              232 mtcp/mtcp_sys.h          mtcp_inline_syscall(faccessat,4,AT_FDCWD,path,mode,AT_EACCESS)
mode              389 nosyscallsreal.c   mode_t mode = 0;
mode              394 nosyscallsreal.c     mode = va_arg (arg, int);
mode              397 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH (open) (pathname, flags, mode);
mode              401 nosyscallsreal.c   mode_t mode = 0;
mode              406 nosyscallsreal.c     mode = va_arg (arg, int);
mode              409 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH (open) (pathname, flags, mode);
mode              412 nosyscallsreal.c FILE * _real_fopen(const char *path, const char *mode) {
mode              413 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE *, fopen) (path, mode);
mode              416 nosyscallsreal.c FILE * _real_fopen64(const char *path, const char *mode) {
mode              417 nosyscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE *, fopen64) (path, mode);
mode              229 plugin/ipc/file/fileconnection.cpp                                     int flags, mode_t mode, int type)
mode              232 plugin/ipc/file/fileconnection.cpp   , _mode(mode)
mode               60 plugin/ipc/file/fileconnection.h       PtyConnection(int fd, const char *path, int flags, mode_t mode, int type);
mode              126 plugin/ipc/file/fileconnection.h       FileConnection(const string& path, int flags, mode_t mode,
mode              183 plugin/ipc/file/fileconnection.h       FifoConnection(const string& path, int flags, mode_t mode)
mode              224 plugin/ipc/file/fileconnection.h       inline PosixMQConnection(const char *name, int oflag, mode_t mode,
mode              229 plugin/ipc/file/fileconnection.h           , _mode(mode)
mode              451 plugin/ipc/file/fileconnlist.cpp                                                 int flags, mode_t mode)
mode              470 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_DEV_TTY);
mode              475 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_BSD_MASTER);
mode              478 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_BSD_SLAVE);
mode              482 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_MASTER);
mode              485 plugin/ipc/file/fileconnlist.cpp     c = new PtyConnection(fd, path, flags, mode, PtyConnection::PTY_SLAVE);
mode              493 plugin/ipc/file/fileconnlist.cpp     c = new FileConnection(path, flags, mode, type);
mode              496 plugin/ipc/file/fileconnlist.cpp     c = new FifoConnection(path, flags, mode);
mode               59 plugin/ipc/file/fileconnlist.h       void processFileConnection(int fd, const char *path, int flags, mode_t mode);
mode              361 plugin/ipc/file/filewrappers.cpp                              const char *path, int flags, mode_t mode)
mode              374 plugin/ipc/file/filewrappers.cpp   int fd = (*fn) (newpath, flags, mode);
mode              377 plugin/ipc/file/filewrappers.cpp     FileConnList::instance().processFileConnection(fd, newpath, flags, mode);
mode              389 plugin/ipc/file/filewrappers.cpp   mode_t mode = 0;
mode              394 plugin/ipc/file/filewrappers.cpp     mode = va_arg(arg, int);
mode              397 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open, path, flags, mode);
mode              415 plugin/ipc/file/filewrappers.cpp   mode_t mode = 0;
mode              420 plugin/ipc/file/filewrappers.cpp     mode = va_arg(arg, int);
mode              423 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open64, path, flags, mode);
mode              431 plugin/ipc/file/filewrappers.cpp extern "C" int creat(const char *path, mode_t mode)
mode              434 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open, path, O_CREAT|O_WRONLY|O_TRUNC, mode);
mode              437 plugin/ipc/file/filewrappers.cpp extern "C" int creat64(const char *path, mode_t mode)
mode              440 plugin/ipc/file/filewrappers.cpp   return _open_open64_work(_real_open64, path, O_CREAT|O_WRONLY|O_TRUNC, mode);
mode              443 plugin/ipc/file/filewrappers.cpp static FILE *_fopen_fopen64_work(FILE*(*fn) (const char *path, const char *mode),
mode              444 plugin/ipc/file/filewrappers.cpp                                  const char *path, const char *mode)
mode              457 plugin/ipc/file/filewrappers.cpp   FILE *file =(*fn) (newpath, mode);
mode              468 plugin/ipc/file/filewrappers.cpp extern "C" FILE *fopen(const char* path, const char* mode)
mode              470 plugin/ipc/file/filewrappers.cpp   return _fopen_fopen64_work(_real_fopen, path, mode);
mode              473 plugin/ipc/file/filewrappers.cpp extern "C" FILE *fopen64(const char* path, const char* mode)
mode              475 plugin/ipc/file/filewrappers.cpp   return _fopen_fopen64_work(_real_fopen64, path, mode);
mode              478 plugin/ipc/file/filewrappers.cpp extern "C" FILE *freopen(const char *path, const char *mode, FILE *stream)
mode              491 plugin/ipc/file/filewrappers.cpp   FILE *file = _real_freopen(newpath, mode, stream);
mode              506 plugin/ipc/file/filewrappers.cpp   mode_t mode = va_arg(arg, int);
mode              509 plugin/ipc/file/filewrappers.cpp   int fd = _real_openat(dirfd, path, flags, mode);
mode              514 plugin/ipc/file/filewrappers.cpp                                                      flags, mode);
mode              534 plugin/ipc/file/filewrappers.cpp   mode_t mode = va_arg(arg, int);
mode              537 plugin/ipc/file/filewrappers.cpp   int fd = _real_openat64(dirfd, path, flags, mode);
mode              542 plugin/ipc/file/filewrappers.cpp                                                      flags, mode);
mode              729 plugin/ipc/file/filewrappers.cpp extern "C" int access(const char *path, int mode)
mode              735 plugin/ipc/file/filewrappers.cpp     int ret = _real_access(currPtsDevName, mode);
mode              739 plugin/ipc/file/filewrappers.cpp   return _real_access(path, mode);
mode               36 plugin/ipc/file/posixipcwrappers.cpp   mode_t mode = 0;
mode               43 plugin/ipc/file/posixipcwrappers.cpp     mode = va_arg(arg, mode_t);
mode               49 plugin/ipc/file/posixipcwrappers.cpp   int res = _real_mq_open(name, oflag, mode, attr);
mode               52 plugin/ipc/file/posixipcwrappers.cpp                                                                   mode, attr);
mode              100 plugin/pid/pid_filewrappers.cpp   mode_t mode = 0;
mode              105 plugin/pid/pid_filewrappers.cpp     mode = va_arg (arg, int);
mode              111 plugin/pid/pid_filewrappers.cpp   return _real_open(newpath, flags, mode);
mode              117 plugin/pid/pid_filewrappers.cpp   mode_t mode = 0;
mode              122 plugin/pid/pid_filewrappers.cpp     mode = va_arg (arg, int);
mode              128 plugin/pid/pid_filewrappers.cpp   return _real_open64(newpath, flags, mode);
mode              131 plugin/pid/pid_filewrappers.cpp extern "C" FILE *fopen (const char* path, const char* mode)
mode              136 plugin/pid/pid_filewrappers.cpp   return _real_fopen(newpath, mode);
mode              139 plugin/pid/pid_filewrappers.cpp extern "C" FILE *fopen64 (const char* path, const char* mode)
mode              144 plugin/pid/pid_filewrappers.cpp   return _real_fopen64(newpath, mode);
mode              255 plugin/pid/pid_filewrappers.cpp extern "C" int access(const char *path, int mode)
mode              260 plugin/pid/pid_filewrappers.cpp   return NEXT_FNC(access) (newpath, mode);
mode              359 plugin/pid/pid_syscallsreal.c   mode_t mode = 0;
mode              364 plugin/pid/pid_syscallsreal.c     mode = va_arg (arg, int);
mode              367 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(open) (path, flags, mode);
mode              371 plugin/pid/pid_syscallsreal.c   mode_t mode = 0;
mode              376 plugin/pid/pid_syscallsreal.c     mode = va_arg (arg, int);
mode              379 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH(open64) (path, flags, mode);
mode              382 plugin/pid/pid_syscallsreal.c FILE* _real_fopen(const char *path, const char *mode) {
mode              383 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED(FILE*, fopen) (path, mode);
mode              386 plugin/pid/pid_syscallsreal.c FILE* _real_fopen64(const char *path, const char *mode) {
mode              387 plugin/pid/pid_syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED(FILE*, fopen) (path, mode);
mode              216 plugin/pid/pidwrappers.h   FILE* _real_fopen(const char *path, const char *mode);
mode              217 plugin/pid/pidwrappers.h   FILE* _real_fopen64(const char *path, const char *mode);
mode              542 plugin/svipc/sysvipc.cpp     _flags = shminfo.shm_perm.mode;
mode              575 plugin/svipc/sysvipc.cpp   _mode = shminfo.shm_perm.mode;
mode              709 plugin/svipc/sysvipc.cpp     _flags = se.buf->sem_perm.mode;
mode              833 plugin/svipc/sysvipc.cpp     _flags = buf.msg_perm.mode;
mode               44 popen.cpp      FILE *popen(const char *command, const char *mode)
mode               55 popen.cpp        while (*mode != '\0') {
mode               56 popen.cpp          switch (*mode++) {
mode              614 syscallsreal.c FILE *_real_popen(const char *command, const char *mode) {
mode              615 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE*, popen) (command, mode);
mode              804 syscallsreal.c   mode_t mode = 0;
mode              809 syscallsreal.c     mode = va_arg (arg, int);
mode              812 syscallsreal.c   REAL_FUNC_PASSTHROUGH (open) (pathname, flags, mode);
mode              828 syscallsreal.c   mode_t mode = 0;
mode              833 syscallsreal.c     mode = va_arg (arg, int);
mode              836 syscallsreal.c   REAL_FUNC_PASSTHROUGH (open) (pathname, flags, mode);
mode              840 syscallsreal.c FILE * _real_fopen(const char *path, const char *mode) {
mode              841 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE *, fopen) (path, mode);
mode              845 syscallsreal.c FILE * _real_fopen64(const char *path, const char *mode) {
mode              846 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (FILE *, fopen64) (path, mode);
mode              850 syscallsreal.c int _real_openat(int dirfd, const char *pathname, int flags, mode_t mode) {
mode              851 syscallsreal.c   REAL_FUNC_PASSTHROUGH (openat) (dirfd, pathname, flags, mode);
mode              855 syscallsreal.c int _real_openat64(int dirfd, const char *pathname, int flags, mode_t mode) {
mode              856 syscallsreal.c   REAL_FUNC_PASSTHROUGH (openat64) (dirfd, pathname, flags, mode);
mode             1034 syscallsreal.c mqd_t _real_mq_open(const char *name, int oflag, mode_t mode,
mode             1036 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (mqd_t, mq_open) (name, oflag, mode, attr);
mode              312 syscallwrappers.h   FILE *_real_popen(const char *command, const char *mode);
mode              320 syscallwrappers.h   FILE* _real_fopen(const char *path, const char *mode);
mode              321 syscallwrappers.h   FILE* _real_fopen64(const char *path, const char *mode);
mode              322 syscallwrappers.h   int _real_openat(int dirfd, const char *pathname, int flags, mode_t mode);
mode              323 syscallwrappers.h   int _real_openat64(int dirfd, const char *pathname, int flags, mode_t mode);
mode              466 syscallwrappers.h   mqd_t _real_mq_open(const char *name, int oflag, mode_t mode,
mode               75 util_exec.cpp  int Util::safeMkdir(const char *pathname, mode_t mode)
mode               39 util_init.cpp  void Util::getCoordHostAndPort(CoordinatorMode mode,
mode               42 util_init.cpp    JASSERT(mode & COORD_JOIN || mode & COORD_NEW || mode & COORD_ANY);
mode               73 util_init.cpp        } else if (mode & COORD_NEW) {