Searched defs:Self (Results 1 - 16 of 16) sorted by relevance

/vbox/src/VBox/Runtime/r3/
H A Dprocess.cpp53 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 DPyUtility.c24 PyObject *Self,
23 SaveFileToDisk( PyObject *Self, PyObject *Args ) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/PyEfiCompressor/
H A DEfiCompressor.c23 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 Dthread2-r0drv-freebsd.c121 const struct thread *Self = curthread; local
125 rc = rtThreadMain(pThreadInt, (RTNATIVETHREAD)Self, &pThreadInt->szName[0]);
/vbox/src/VBox/Runtime/r0drv/haiku/
H A Dthread2-r0drv-haiku.c113 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 Dthread2-r0drv-nt.cpp113 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 Dthread2-r0drv-darwin.cpp162 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 Dsemmutex-posix.cpp237 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 Dthread-posix.cpp293 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 Dsched-posix.cpp458 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 Dsemrw-posix.cpp240 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 Dsemmutex-linux.cpp214 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 Drcthread.cpp134 PRThread *RCThread::Self() function in class:RCThread
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Enquire/
H A DEnquire.c2158 #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 Dwinnt.h2264 struct _NT_TIB *Self; member in struct:_NT_TIB
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dwinnt.h2473 struct _NT_TIB *Self; member in struct:_NT_TIB

Completed in 139 milliseconds