Searched defs:pcszPath (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstRTUri.cpp183 const char *pcszPath; member in struct:URIFILETEST
370 tstFilePath(i+1, g_apCreateFileURIs[i].pcszUri, g_apCreateFileURIs[i].pcszPath, g_apCreateFileURIs[i].uFormat);
375 tstFileCreate(i+1, g_apCreateFileURIs[i].pcszPath, g_apCreateFileURIs[i].pcszUri);
/vbox/src/bldprogs/
H A Dfilesplitter.cpp88 * @param pcszPath The path to the file.
92 static int openMakefileList(const char *pcszPath, const char *pcszVariableName, FILE **ppFile) argument
96 FILE *pFile= fopen(pcszPath, "w");
/vbox/src/VBox/GuestHost/DragAndDrop/
H A DDnDURIList.cpp223 int DnDURIList::appendPathRecursive(const char *pcszPath, size_t cbBaseLen, argument
226 AssertPtrReturn(pcszPath, VERR_INVALID_POINTER);
229 int rc = RTPathQueryInfo(pcszPath, &objInfo, RTFSOBJATTRADD_NOTHING);
246 rc = RTFileQuerySize(pcszPath, &cbSize);
256 pcszPath, &pcszPath[cbBaseLen], local
261 pcszPath, &pcszPath[cbBaseLen], objInfo.Attr.fMode, cbSize, m_cbTotal));
267 rc = RTDirOpen(&hDir, pcszPath);
295 char *pszRecDir = RTPathJoinA(pcszPath, DirEntr
[all...]
/vbox/include/iprt/cpp/
H A Dxml.h564 /** Finds the first decendant matching the name at the end of @a pcszPath and
568 * @param pcszPath The attribute name. Slashes can be used to make a
575 const ElementNode *findChildElementP(const char *pcszPath, const char *pcszNamespace = NULL) const;
581 * @param pcszPath The attribute name. Slashes can be used to make a
588 const char *findChildElementValueP(const char *pcszPath, const char *pcszNamespace = NULL) const argument
590 const ElementNode *pElem = findChildElementP(pcszPath, pcszNamespace);
600 * @param pcszPath The attribute name. Slashes can be used to make a
603 * @param pcszPathNamespace The namespace to match @pcszPath with, NULL
610 const char *findChildElementAttributeValueP(const char *pcszPath, const char *pcszAttribute, argument
614 const ElementNode *pElem = findChildElementP(pcszPath, pcszPathNamespac
750 getChildElementValueP(const char *pcszPath, int32_t *piValue, const char *pcszNamespace = NULL) const argument
755 getChildElementValueP(const char *pcszPath, uint32_t *puValue, const char *pcszNamespace = NULL) const argument
760 getChildElementValueP(const char *pcszPath, int64_t *piValue, const char *pcszNamespace = NULL) const argument
765 getChildElementValueP(const char *pcszPath, uint64_t *puValue, const char *pcszNamespace = NULL) const argument
770 getChildElementValueP(const char *pcszPath, bool *pfValue, const char *pcszNamespace = NULL) const argument
783 getChildElementValueDefP(const char *pcszPath, int32_t iDefault, int32_t *piValue, const char *pcszNamespace = NULL) const argument
791 getChildElementValueDefP(const char *pcszPath, uint32_t uDefault, uint32_t *puValue, const char *pcszNamespace = NULL) const argument
799 getChildElementValueDefP(const char *pcszPath, int64_t iDefault, int64_t *piValue, const char *pcszNamespace = NULL) const argument
807 getChildElementValueDefP(const char *pcszPath, uint64_t uDefault, uint64_t *puValue, const char *pcszNamespace = NULL) const argument
815 getChildElementValueDefP(const char *pcszPath, bool fDefault, bool *pfValue, const char *pcszNamespace = NULL) const argument
[all...]
/vbox/src/VBox/Main/src-server/linux/
H A DHostHardwareLinux.cpp804 static int maybeAddPathToVector(const char *pcszPath, const char *pcszEntry, argument
809 if (!pcszPath)
813 pszPath = RTStrDup(pcszPath);
824 static int readFilePathsFromDir(const char *pcszPath, DIR *pDir, argument
835 if (snprintf(szPath, sizeof(szPath), "%s/%s", pcszPath,
854 * @param pcszPath the path to dump.
859 static int readFilePaths(const char *pcszPath, VECTOR_PTR(char *) *pvecpchDevs, argument
867 AssertPtrReturn(pcszPath, EINVAL);
869 pDir = opendir(pcszPath);
872 err = readFilePathsFromDir(pcszPath, pDi
914 iwAddWatch(inotifyWatch *pSelf, const char *pcszPath) argument
[all...]
H A DUSBGetDevices.cpp841 static unsigned usbGetBusFromSysfsPath(const char *pcszPath) argument
843 const char *pcszFile = strrchr(pcszPath, '/');
972 static int readFilePathsFromDir(const char *pcszPath, DIR *pDir, argument
984 if (snprintf(szPath, sizeof(szPath), "%s/%s", pcszPath,
1002 * @param pcszPath the path to dump.
1007 static int readFilePaths(const char *pcszPath, VECTOR_PTR(char *) *pvecpchDevs) argument
1014 AssertPtrReturn(pcszPath, EINVAL);
1016 pDir = opendir(pcszPath);
1019 rc = readFilePathsFromDir(pcszPath, pDir, pvecpchDevs);
1506 static int testAccess(const char *pcszPath, in argument
[all...]
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceToolBox.cpp1219 const char *pcszPath = NULL; local
1260 pcszPath = ValueUnion.psz;
1306 if (pcszPath && !RTPathStartsWithRoot(pcszPath))
1309 pcszPath, true, VERR_INVALID_PARAMETER,
1313 if (pcszPath)
1316 pcszPath);
1319 toolboxMkTempReport("Path '%s' too long.\n", pcszPath, true,
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstSharedFolderService.cpp646 const char *pcszPath, void *pvBuf, uint32_t cbBuf,
657 if (pcszPath)
659 fillTestShflString(&Path, pcszPath);
644 listDir(VBOXHGCMSVCFNTABLE *psvcTable, SHFLROOT root, SHFLHANDLE handle, uint32_t fFlags, uint32_t cb, const char *pcszPath, void *pvBuf, uint32_t cbBuf, uint32_t resumePoint, uint32_t *pcFiles) argument
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp838 const ElementNode *ElementNode::findChildElementP(const char *pcszPath, const char *pcszNamespace /*= NULL*/) const argument
840 size_t cchThis = strchr(pcszPath, '/') - pcszPath;
841 if (cchThis == (size_t)((const char *)0 - pcszPath))
842 return findChildElementNS(pcszNamespace, pcszPath);
852 if (pElm->nameEqualsN(pcszPath, cchThis, pcszNamespace))
854 pElm = findChildElementP(pcszPath + cchThis, pcszNamespace);

Completed in 70 milliseconds