Searched defs:pSelf (Results 1 - 18 of 18) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/freebsd/
H A Dprocess-r0drv-freebsd.c41 struct proc *pSelf = curproc; local
42 return pSelf->p_pid;
/vbox/src/VBox/Additions/os2/VBoxSF/
H A DVBoxSFInternal.h84 struct VBOXSFFSD *pSelf; member in struct:VBOXSFFSD
99 struct VBOXSFFS *pSelf; member in struct:VBOXSFFS
/vbox/src/VBox/Additions/x11/VBoxClient/
H A DVBoxClient.h65 static int VBClServiceDefaultHandler(struct VBCLSERVICE **pSelf) argument
H A Dseamless.cpp346 struct SEAMLESSSERVICE *pSelf = (struct SEAMLESSSERVICE *)ppInterface; local
347 if (pSelf->magic != SEAMLESSSERVICE_MAGIC)
349 return pSelf;
354 struct SEAMLESSSERVICE *pSelf = getClassFromInterface(ppInterface); local
357 if (pSelf->mIsInitialised)
363 rc = pSelf->mSeamless.init();
366 rc = pSelf->mSeamless.selfTest();
369 pSelf->mSeamless.stop();
372 pSelf->mIsInitialised = true;
378 struct SEAMLESSSERVICE *pSelf local
394 struct SEAMLESSSERVICE *pSelf = getClassFromInterface(ppInterface); local
401 struct SEAMLESSSERVICE *pSelf = getClassFromInterface(ppInterface); local
[all...]
H A Ddisplay.cpp345 struct DISPLAYSTATE *pSelf = (struct DISPLAYSTATE *)ppInterface; local
346 if (pSelf->magic != DISPLAYSTATE_MAGIC)
348 return pSelf;
353 struct DISPLAYSTATE *pSelf = getStateFromInterface(ppInterface); local
356 if (pSelf->mfInit)
358 rc = initDisplay(pSelf);
363 pSelf->mfInit = true;
369 struct DISPLAYSTATE *pSelf = getStateFromInterface(ppInterface); local
372 if (!pSelf->mfInit)
377 runDisplay(pSelf);
383 struct DISPLAYSTATE *pSelf = getStateFromInterface(ppInterface); local
392 struct DISPLAYSTATE *pSelf = getStateFromInterface(ppInterface); local
[all...]
H A Ddraganddrop.cpp2407 struct DRAGANDDROPSERVICE *pSelf = (struct DRAGANDDROPSERVICE *)ppInterface; local
2409 if (pSelf->magic != DRAGANDDROPSERVICE_MAGIC)
2411 return pSelf->mDragAndDrop.run(fDaemonised);
/vbox/src/VBox/Main/include/
H A DHGCMObjects.h34 HGCMObject *pSelf; member in struct:_ObjectAVLCore
/vbox/src/VBox/HostServices/DragAndDrop/
H A Dservice.cpp526 DragAndDropService *pSelf = static_cast<DragAndDropService *>(pvUser); local
527 AssertPtr(pSelf);
529 if (pSelf->m_pfnHostCallback)
539 return pSelf->m_pfnHostCallback(pSelf->m_pvHostData,
H A Ddndmanager.cpp467 DnDHGSendDataMessage *pSelf = static_cast<DnDHGSendDataMessage *>(pvUser); local
468 AssertPtr(pSelf);
471 pSelf->m_cbTransfered += cbDone;
475 if ( pSelf->m_pfnProgressCallback
476 && pSelf->m_cbTotal)
478 AssertMsg(pSelf->m_cbTransfered <= pSelf->m_cbTotal,
480 pSelf->m_cbTransfered, pSelf->m_cbTotal, cbDone));
482 unsigned uPercentage = (unsigned)((uint64_t)pSelf
[all...]
/vbox/src/VBox/Debugger/
H A DVBoxDbgConsole.h343 VBoxDbgConsole *pSelf; member in struct:VBoxDbgConsole::VBoxDbgConsoleBack
350 # define VBOXDBGCONSOLE_FROM_DBGCBACK(pBack) ( ((struct VBoxDbgConsoleBack *)(pBack))->pSelf )
/vbox/include/VBox/HostServices/
H A DService.h376 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
377 int rc = pSelf->uninit();
380 delete pSelf;
394 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
395 int rc = pSelf->clientConnect(u32ClientID, pvClient);
410 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
411 int rc = pSelf->clientDisconnect(u32ClientID, pvClient);
430 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
431 pSelf->guestCall(callHandle, u32ClientID, pvClient, u32Function, cParms, paParms);
446 SELF *pSelf local
462 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
[all...]
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dsemmutex-r0drv-linux.c165 struct task_struct *pSelf = current; local
177 Waiter.pTask = pSelf;
188 && signal_pending(pSelf))
198 set_task_state(pSelf, fInterruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
211 pThis->pOwnerTask = pSelf;
250 struct task_struct *pSelf = current; local
265 if (pThis->pOwnerTask == pSelf)
280 pThis->pOwnerTask = pSelf;
331 struct task_struct *pSelf = current; local
346 if (pThis->pOwnerTask == pSelf)
[all...]
/vbox/src/VBox/Main/src-server/linux/
H A DHostHardwareLinux.cpp914 static int iwAddWatch(inotifyWatch *pSelf, const char *pcszPath) argument
917 if ( pSelf->inotify_add_watch(pSelf->mhInotify, pcszPath, IN_FLAGS) >= 0
925 static int iwInit(inotifyWatch *pSelf) argument
931 AssertPtr(pSelf);
932 pSelf->mhInotify = -1;
937 *(void **)(&pSelf->inotify_add_watch)
939 if (!pSelf->inotify_add_watch)
962 pSelf->mhInotify = fd;
967 static void iwTerm(inotifyWatch *pSelf) argument
977 iwGetFD(inotifyWatch *pSelf) argument
[all...]
H A DUSBGetDevices.cpp809 static void USBDevInfoCleanup(USBDeviceInfo *pSelf) argument
811 RTStrFree(pSelf->mDevice);
812 RTStrFree(pSelf->mSysfsPath);
813 pSelf->mDevice = pSelf->mSysfsPath = NULL;
814 VEC_CLEANUP_PTR(&pSelf->mvecpszInterfaces);
817 static int USBDevInfoInit(USBDeviceInfo *pSelf, const char *aDevice, argument
820 pSelf->mDevice = aDevice ? RTStrDup(aDevice) : NULL;
821 pSelf->mSysfsPath = aSystemID ? RTStrDup(aSystemID) : NULL;
822 VEC_INIT_PTR(&pSelf
[all...]
/vbox/src/VBox/HostDrivers/Support/
H A DSUPDrv-dtrace.cpp168 struct VBDTSTACKDATA *pSelf; member in struct:VBDTSTACKDATA
195 pStackData->pSelf = pStackData
203 pStackData->pSelf = NULL; \
256 && pData->pSelf == pData)
/vbox/src/VBox/HostServices/GuestControl/
H A Dservice.cpp927 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
928 int rc = pSelf->uninit();
931 delete pSelf;
944 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
945 AssertPtrReturn(pSelf, VERR_INVALID_POINTER);
946 return pSelf->clientConnect(u32ClientID, pvClient);
958 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
959 AssertPtrReturn(pSelf, VERR_INVALID_POINTER);
960 return pSelf->clientDisconnect(u32ClientID, pvClient);
976 SELF *pSelf local
991 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
1005 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
[all...]
/vbox/src/VBox/HostServices/GuestProperties/
H A Dservice.cpp297 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
298 int rc = pSelf->uninit();
301 delete pSelf;
330 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
331 pSelf->call(callHandle, u32ClientID, pvClient, u32Function, cParms, paParms);
346 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
347 int rc = pSelf->hostCall(u32Function, cParms, paParms);
361 SELF *pSelf = reinterpret_cast<SELF *>(pvService); local
362 pSelf->mpfnHostCallback = pfnExtension;
363 pSelf
1349 SELF *pSelf = reinterpret_cast<SELF *>(pvUser); local
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/
H A DVBoxDTraceR0.cpp109 struct VBoxDtStackData *pSelf; member in struct:VBoxDtStackData
134 pStackData->pSelf = pStackData
142 pStackData->pSelf = NULL; \
198 && pData->pSelf == pData)

Completed in 112 milliseconds