attr              569 miscwrappers.cpp pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr)
attr              571 miscwrappers.cpp   return _real_pthread_cond_init(cond, attr);
attr             1123 plugin/ipc/file/fileconnection.cpp   struct mq_attr attr;
attr             1124 plugin/ipc/file/fileconnection.cpp   JASSERT(mq_getattr(_fds[0], &attr) != -1) (JASSERT_ERRNO);
attr             1125 plugin/ipc/file/fileconnection.cpp   _attr = attr;
attr             1126 plugin/ipc/file/fileconnection.cpp   if (attr.mq_curmsgs < 0) {
attr             1133 plugin/ipc/file/fileconnection.cpp   _qnum = attr.mq_curmsgs;
attr             1134 plugin/ipc/file/fileconnection.cpp   char *buf =(char*) JALLOC_HELPER_MALLOC(attr.mq_msgsize);
attr             1137 plugin/ipc/file/fileconnection.cpp     ssize_t numBytes = _real_mq_receive(_fds[0], buf, attr.mq_msgsize, &prio);
attr              225 plugin/ipc/file/fileconnection.h                                struct mq_attr *attr)
attr              233 plugin/ipc/file/fileconnection.h       if (attr != NULL) {
attr              234 plugin/ipc/file/fileconnection.h         _attr = *attr;
attr               37 plugin/ipc/file/posixipcwrappers.cpp   struct mq_attr *attr = NULL;
attr               44 plugin/ipc/file/posixipcwrappers.cpp     attr = va_arg(arg, struct mq_attr*);
attr               49 plugin/ipc/file/posixipcwrappers.cpp   int res = _real_mq_open(name, oflag, mode, attr);
attr               52 plugin/ipc/file/posixipcwrappers.cpp                                                                   mode, attr);
attr               48 plugin/timer/timer_create.cpp   pthread_attr_t attr;
attr              116 plugin/timer/timer_create.cpp   (void) pthread_attr_init (&newp->attr);
attr              121 plugin/timer/timer_create.cpp   (void) pthread_attr_setdetachstate (&newp->attr, PTHREAD_CREATE_DETACHED);
attr              225 plugin/timer/timer_create.cpp             (void) pthread_create (&th, &tk->attr, timer_sigev_thread, td);
attr              244 plugin/timer/timer_create.cpp   pthread_attr_t attr;
attr              245 plugin/timer/timer_create.cpp   (void) pthread_attr_init (&attr);
attr              246 plugin/timer/timer_create.cpp   (void) pthread_attr_setstacksize (&attr, 2 * 1024 * 1024);
attr              261 plugin/timer/timer_create.cpp   int res = pthread_create (&th, &attr, timer_helper_thread, NULL);
attr              271 plugin/timer/timer_create.cpp   (void) pthread_attr_destroy (&attr);
attr               71 syscallsreal.c   pthread_mutexattr_t attr;
attr               72 syscallsreal.c   pthread_mutexattr_init(&attr);
attr               73 syscallsreal.c   pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
attr               74 syscallsreal.c   pthread_mutex_init (&theMutex, &attr);
attr               75 syscallsreal.c   pthread_mutexattr_destroy(&attr);
attr              465 syscallsreal.c                             const pthread_condattr_t *attr)
attr              468 syscallsreal.c   int result = NEXT_FNC_DEFAULT(pthread_cond_init)(cond,attr);
attr              471 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (int,pthread_cond_init) (cond,attr);
attr              936 syscallsreal.c int _real_pthread_create(pthread_t *thread, const pthread_attr_t *attr,
attr              939 syscallsreal.c     (thread,attr,start_routine,arg);
attr             1035 syscallsreal.c                       struct mq_attr *attr) {
attr             1036 syscallsreal.c   REAL_FUNC_PASSTHROUGH_TYPED (mqd_t, mq_open) (name, oflag, mode, attr);
attr              384 syscallwrappers.h   int _real_pthread_create(pthread_t *thread, const pthread_attr_t *attr,
attr              437 syscallwrappers.h                               const pthread_condattr_t *attr);
attr              467 syscallwrappers.h                       struct mq_attr *attr);
attr              176 threadwrappers.cpp extern "C" int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
attr              215 threadwrappers.cpp   retval = _real_pthread_create(thread, attr, pthread_start, threadArg);