retVal            522 execwrappers.cpp   int retVal = _real_execve (newFilename, newArgv, (char* const*)&newEnv[0]);
retVal            528 execwrappers.cpp   return retVal;
retVal            559 execwrappers.cpp   int retVal = _real_execvp (newFilename, newArgv);
retVal            565 execwrappers.cpp   return retVal;
retVal            591 execwrappers.cpp   int retVal = _real_execvpe(newFilename, newArgv, (char* const*)&newEnv[0]);
retVal            597 execwrappers.cpp   return retVal;
retVal            838 plugin/ipc/file/fileconnection.cpp   bool retVal = false;
retVal            846 plugin/ipc/file/fileconnection.cpp       retVal = true;
retVal            851 plugin/ipc/file/fileconnection.cpp   return retVal;
retVal            206 plugin/ipc/file/filewrappers.cpp   int retVal = ptsname_r_work(fd, buf, buflen);
retVal            210 plugin/ipc/file/filewrappers.cpp   return retVal;
retVal            233 plugin/ipc/file/filewrappers.cpp   int retVal = ptsname_r_work(fd, buf, buflen);
retVal            237 plugin/ipc/file/filewrappers.cpp   return retVal;
retVal            250 plugin/pid/pidwrappers.cpp   int retVal = _real_setpgid (currPid, currPgid);
retVal            254 plugin/pid/pidwrappers.cpp   return retVal;
retVal            351 plugin/pid/pidwrappers.cpp   int retVal = _real_kill (currPid, sig);
retVal            355 plugin/pid/pidwrappers.cpp   return retVal;
retVal            366 plugin/pid/pidwrappers.cpp   int retVal = _real_tkill (realTid, sig);
retVal            370 plugin/pid/pidwrappers.cpp   return retVal;
retVal            382 plugin/pid/pidwrappers.cpp   int retVal = _real_tgkill (realTgid, realTid, sig);
retVal            386 plugin/pid/pidwrappers.cpp   return retVal;
retVal            148 plugin/pid/virtualpidtable.cpp   pid_t retVal = VirtualIdTable<pid_t>::virtualToReal(id);
retVal            149 plugin/pid/virtualpidtable.cpp   if (retVal == id) {
retVal            150 plugin/pid/virtualpidtable.cpp     retVal = SharedData::getRealPid(id);
retVal            151 plugin/pid/virtualpidtable.cpp     if (retVal == -1) {
retVal            152 plugin/pid/virtualpidtable.cpp       retVal = id;
retVal            155 plugin/pid/virtualpidtable.cpp   retVal = virtualId < -1 ? -retVal : retVal;
retVal            156 plugin/pid/virtualpidtable.cpp   return retVal;
retVal            383 threadsync.cpp       int retVal = _real_pthread_rwlock_tryrdlock(&_wrapperExecutionLock);
retVal            384 threadsync.cpp       if (retVal != 0 && retVal == EBUSY) {
retVal            390 threadsync.cpp       if (retVal != 0 && retVal != EDEADLK) {
retVal            396 threadsync.cpp       lockAcquired = retVal == 0 ? true : false;
retVal            452 threadsync.cpp     int retVal = _real_pthread_rwlock_wrlock(&_wrapperExecutionLock);
retVal            453 threadsync.cpp     if (retVal != 0 && retVal != EDEADLK) {
retVal            458 threadsync.cpp     lockAcquired = retVal == 0 ? true : false;
retVal            511 threadsync.cpp       int retVal = _real_pthread_rwlock_tryrdlock(&_threadCreationLock);
retVal            512 threadsync.cpp       if (retVal != 1 && retVal == EBUSY) {
retVal            518 threadsync.cpp       if (retVal != 0 && retVal != EDEADLK) {
retVal            524 threadsync.cpp       lockAcquired = retVal == 0 ? true : false;