Searched defs:pOther (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUISpecialControls.cpp166 void UIHelpButton::initFrom(QPushButton *pOther) argument
168 setIcon(pOther->icon());
169 setText(pOther->text());
170 setShortcut(pOther->shortcut());
171 setFlat(pOther->isFlat());
172 setAutoDefault(pOther->autoDefault());
173 setDefault(pOther->isDefault());
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPR3HardenedMain-win.cpp648 PVERIFIERCACHEENTRY pOther = *ppEntry; local
649 if (!pOther)
651 if ( pOther->uHash == pEntry->uHash
652 && pOther->cbPath == pEntry->cbPath
653 && supR3HardenedWinVerifyCacheIsMatch(pOther->wszPath, pEntry->wszPath, pEntry->cbPath / sizeof(RTUTF16)))
655 ppEntry = &pOther->pNext;
/vbox/src/VBox/Main/src-server/
H A DMediumImpl.cpp4883 * @param pOther The other medium to merge with.
4886 HRESULT Medium::i_queryPreferredMergeDirection(const ComObjPtr<Medium> &pOther, argument
4889 AssertReturn(pOther != NULL, E_FAIL);
4890 AssertReturn(pOther != this, E_FAIL);
4895 AutoCaller otherCaller(pOther);
4899 bool fThisParent = false; /**<< Flag whether this medium is the parent of pOther. */
4908 while (!pMedium.isNull() && pMedium != pOther)
4910 if (pMedium == pOther)
4914 pMedium = pOther->i_getParent();
4923 AutoReadLock alock(pOther COMMA_LOCKVAL_SRC_PO
[all...]

Completed in 136 milliseconds