Searched refs:pElem (Results 1 - 7 of 7) sorted by relevance

/vbox/include/iprt/cpp/
H A Dxml.h590 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
591 if (pElem)
592 return pElem->getValue();
614 const ElementNode *pElem = findChildElementP(pcszPath, pcszPathNamespace); local
615 if (pElem)
616 return pElem->findAttributeValue(pcszAttribute, pcszAttributeNamespace);
752 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
753 return pElem && pElem->getElementValue(piValue);
757 const ElementNode *pElem local
762 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
767 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
772 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
785 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
793 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
801 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
809 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
817 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace); local
[all...]
/vbox/src/VBox/Devices/VirtIO/
H A DVirtio.cpp66 // void vqueueElemFree(PVQUEUEELEM pElem)
127 bool vqueueGet(PVPCISTATE pState, PVQUEUE pQueue, PVQUEUEELEM pElem, bool fRemove) argument
132 pElem->nIn = pElem->nOut = 0;
141 pElem->uIndex = idx;
150 QUEUENAME(pState, pQueue), pElem->nIn, idx, desc.u64Addr, desc.uLen));
151 pSeg = &pElem->aSegsIn[pElem->nIn++];
156 QUEUENAME(pState, pQueue), pElem->nOut, idx, desc.u64Addr, desc.uLen));
157 pSeg = &pElem
199 vqueuePut(PVPCISTATE pState, PVQUEUE pQueue, PVQUEUEELEM pElem, uint32_t uLen, uint32_t uReserved) argument
[all...]
H A DVirtio.h302 bool vqueueGet(PVPCISTATE pState, PVQUEUE pQueue, PVQUEUEELEM pElem, bool fRemove = true);
303 void vqueuePut(PVPCISTATE pState, PVQUEUE pQueue, PVQUEUEELEM pElem, uint32_t uLen, uint32_t uReserved = 0);
307 DECLINLINE(bool) vqueuePeek(PVPCISTATE pState, PVQUEUE pQueue, PVQUEUEELEM pElem) argument
309 return vqueueGet(pState, pQueue, pElem, /* fRemove */ false);
/vbox/src/VBox/Devices/Network/
H A DDevVirtioNet.cpp1389 static uint8_t vnetControlRx(PVNETSTATE pThis, PVNETCTLHDR pCtlHdr, PVQUEUEELEM pElem) argument
1394 pElem->aSegsOut[1].addr,
1415 static uint8_t vnetControlMac(PVNETSTATE pThis, PVNETCTLHDR pCtlHdr, PVQUEUEELEM pElem) argument
1420 || pElem->nOut != 3
1421 || pElem->aSegsOut[1].cb < sizeof(nMacs)
1422 || pElem->aSegsOut[2].cb < sizeof(nMacs))
1426 pCtlHdr->u8Command, pElem->nOut,
1427 pElem->aSegsOut[1].cb, pElem->aSegsOut[2].cb));
1433 pElem
1500 vnetControlVlan(PVNETSTATE pThis, PVNETCTLHDR pCtlHdr, PVQUEUEELEM pElem) argument
[all...]
/vbox/src/VBox/Main/xml/
H A Dovfreader.cpp131 const xml::ElementNode *pElem; local
132 while ((pElem = loopChildren.forAllNodes()))
134 const char *pcszElemName = pElem->getName();
135 const xml::AttributeNode *pTypeAttr = pElem->findAttribute("type");
144 HandleDiskSection(pReferencesElem, pElem);
152 HandleNetworkSection(pElem);
176 HandleVirtualSystemContent(pElem);
187 LoopThruSections(pReferencesElem, pElem);
/vbox/src/VBox/Runtime/common/zip/
H A Dxarvfs.cpp402 xml::ElementNode const *pElem = pElement->findChildElement("offset"); member in class:xml
403 if (!pElem)
405 const char *pszValue = pElem->getValue();
419 pElem = pElement->findChildElement("size");
420 if (!pElem)
423 pszValue = pElem->getValue();
441 pElem = pElement->findChildElement("length");
442 if (!pElem)
445 pszValue = pElem->getValue();
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp928 const ElementNode *pElem = static_cast<const ElementNode *>(pSibling); local
929 if (pElem->nameEqualsNS(pcszNamespace, pcszMatch))
930 return pElem;
947 const ElementNode *pElem = static_cast<const ElementNode *>(pSibling); local
948 if (pElem->nameEqualsNS(pcszNamespace, pcszMatch))
949 return pElem;

Completed in 70 milliseconds