/vbox/src/VBox/Runtime/r3/ |
H A D | process.cpp | 53 RTPROCESS Self = g_ProcessSelf; local 54 if (Self != NIL_RTPROCESS) 55 return Self; 59 Self = _getpid(); /* crappy ansi compiler */ 61 Self = getpid(); 63 g_ProcessSelf = Self; 64 return Self;
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/PyUtility/ |
H A D | PyUtility.c | 24 PyObject *Self, 23 SaveFileToDisk( PyObject *Self, PyObject *Args ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/PyEfiCompressor/ |
H A D | EfiCompressor.c | 23 PyObject *Self, 100 PyObject *Self, 177 PyObject *Self, 188 PyObject *Self, 22 UefiDecompress( PyObject *Self, PyObject *Args ) argument 99 FrameworkDecompress( PyObject *Self, PyObject *Args ) argument 176 UefiCompress( PyObject *Self, PyObject *Args ) argument 187 FrameworkCompress( PyObject *Self, PyObject *Args ) argument
|
/vbox/src/VBox/Runtime/r0drv/freebsd/ |
H A D | thread2-r0drv-freebsd.c | 121 const struct thread *Self = curthread; local 125 rc = rtThreadMain(pThreadInt, (RTNATIVETHREAD)Self, &pThreadInt->szName[0]);
|
/vbox/src/VBox/Runtime/r0drv/haiku/ |
H A D | thread2-r0drv-haiku.c | 113 const thread_id Self = find_thread(NULL); local 116 int rc = rtThreadMain(pThread, (RTNATIVETHREAD)Self, &pThread->szName[0]);
|
/vbox/src/VBox/Runtime/r0drv/nt/ |
H A D | thread2-r0drv-nt.cpp | 113 PETHREAD Self = PsGetCurrentThread(); local 116 rtThreadMain(pThread, (RTNATIVETHREAD)Self, &pThread->szName[0]); 118 ObDereferenceObject(Self); /* the rtThreadNativeCreate ref. */
|
/vbox/src/VBox/Runtime/r0drv/darwin/ |
H A D | thread2-r0drv-darwin.cpp | 162 const thread_t Self = current_thread(); local 165 rtThreadMain(pThread, (RTNATIVETHREAD)Self, &pThread->szName[0]); 167 kern_return_t kr = thread_terminate(Self);
|
/vbox/src/VBox/Runtime/r3/posix/ |
H A D | semmutex-posix.cpp | 237 pthread_t Self = pthread_self(); local 238 if ( pThis->Owner == Self 319 pThis->Owner = Self; 386 pthread_t Self = pthread_self(); 387 if (RT_UNLIKELY( pThis->Owner != Self 390 AssertMsgFailed(("Not owner of mutex %p!! Self=%08x Owner=%08x cNesting=%d\n", 391 pThis, Self, pThis->Owner, pThis->cNesting));
|
H A D | thread-posix.cpp | 293 pthread_t Self = pthread_self(); local 294 Assert((uintptr_t)Self == (RTNATIVETHREAD)Self && (uintptr_t)Self != NIL_RTNATIVETHREAD); 317 g_pfnThreadSetName(Self, pThread->szName); 324 rc = rtThreadMain(pThread, (uintptr_t)Self, &pThread->szName[0]);
|
H A D | sched-posix.cpp | 458 pthread_t Self = pthread_self(); local 464 if (pthread_setschedparam(Self, SavedPriority.iPthreadPolicy, &SchedParam)) 590 pthread_t Self = pthread_self(); local 596 rc = pthread_setschedparam(Self, SavedPriority.iPthreadPolicy, &SchedParam); 755 pthread_t Self = pthread_self(); local 756 rc = pthread_getschedparam(Self, &iPolicy, &SchedParam); 762 rc = pthread_setschedparam(Self, iPolicy, &SchedParam); 776 (void *)Self, iPolicy, SchedParam.sched_priority, rcNative, rc)); NOREF(rcNative);
|
H A D | semrw-posix.cpp | 240 pthread_t Self = pthread_self(); local 243 if (Writer == Self) 379 pthread_t Self = pthread_self(); local 382 if (Writer == Self) 435 pthread_t Self = pthread_self(); local 438 if (Writer == Self) 512 ATOMIC_SET_PTHREAD_T(&pThis->Writer, Self); 576 pthread_t Self = pthread_self(); local 579 AssertMsgReturn(Writer == Self, ("pThis=%p\n", pThis), VERR_NOT_OWNER); 629 pthread_t Self local 648 pthread_t Self = pthread_self(); local [all...] |
/vbox/src/VBox/Runtime/r3/linux/ |
H A D | semmutex-linux.cpp | 214 pthread_t Self = pthread_self(); local 215 if ( pThis->Owner == Self 341 pThis->Owner = Self; 410 pthread_t Self = pthread_self(); 411 if (RT_UNLIKELY( pThis->Owner != Self 414 AssertMsgFailed(("Not owner of mutex %p!! Self=%08x Owner=%08x cNestings=%d\n", 415 pThis, Self, pThis->Owner, pThis->cNestings));
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rcthread.cpp | 134 PRThread *RCThread::Self() function in class:RCThread
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Enquire/ |
H A D | Enquire.c | 2158 #undef Self macro 2214 #define Self fSelf macro 2302 #define Self dSelf macro 2386 #define Self ldSelf macro 2646 Number Self ARGS1(Number, a) {Number r; Store(a, &r); return r; } 2997 f_epsilon == Self(F_EPSILON), 3081 f_min == Self(F_MIN), 3170 f_max == Self(F_MAX),
|
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ |
H A D | winnt.h | 2264 struct _NT_TIB *Self; member in struct:_NT_TIB
|
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/ |
H A D | winnt.h | 2473 struct _NT_TIB *Self; member in struct:_NT_TIB
|