Searched defs:pCurFile (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIDnDDataObject_win.cpp349 uint8_t *pCurFile = (uint8_t *)pDropFiles + pDropFiles->pFiles; local
350 AssertPtr(pCurFile);
361 memcpy(pCurFile, pwszFile, cchCurFile * sizeof(RTUTF16));
367 pCurFile += cchCurFile * sizeof(RTUTF16);
370 *pCurFile = L'\0';
371 pCurFile += sizeof(RTUTF16);
376 *pCurFile = L'\0'; /* Final list terminator. */
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxDnDDataObject.cpp318 uint8_t *pCurFile = (uint8_t *)pBuf + pBuf->pFiles; local
319 AssertPtr(pCurFile);
330 memcpy(pCurFile, pwszFile, cchCurFile * sizeof(RTUTF16));
336 pCurFile += cchCurFile * sizeof(RTUTF16);
339 *pCurFile = L'\0';
340 pCurFile += sizeof(RTUTF16);
345 *pCurFile = L'\0'; /* Final list terminator. */
/vbox/src/VBox/Main/src-client/
H A DGuestSessionImpl.cpp1181 ComObjPtr<GuestFile> pCurFile = pFile; local
1184 HRESULT hr = pCurFile->COMGETTER(FileName)(strName.asOutParam());
1197 fireGuestFileRegisteredEvent(mEventSource, this, pCurFile,
1199 pCurFile.setNull();
/vbox/src/VBox/Runtime/common/zip/
H A Dxarvfs.cpp100 xml::ElementNode const *pCurFile; member in class:RTZIPXARREADER::xml
638 * @param pCurFile The current element.
642 static xml::ElementNode const *rtZipXarGetNextFileElement(xml::ElementNode const *pCurFile, uint32_t *pcCurDepth) argument
647 xml::ElementNode const *pChild = pCurFile->findChildElement("file");
659 xml::ElementNode const *pSibling = pCurFile->findNextSibilingElement("file");
666 pCurFile = static_cast<const xml::ElementNode *>(pCurFile->getParent());
667 AssertBreak(pCurFile);
668 Assert(pCurFile->nameEquals("file"));
1476 xml::ElementNode const *pCurFile member in class:xml
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageGuestCtrl.cpp3453 ComPtr<IGuestFile> pCurFile = collFiles[a]; local
3454 if (!pCurFile.isNull())
3456 CHECK_ERROR_BREAK(pCurFile, COMGETTER(Id)(&uID));
3457 CHECK_ERROR_BREAK(pCurFile, COMGETTER(FileName)(strName.asOutParam()));
3459 CHECK_ERROR_BREAK(pCurFile, COMGETTER(Status)(&fileStatus));

Completed in 68 milliseconds