Searched defs:pszDropDir (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/GuestHost/DragAndDrop/
H A DDnDDir.cpp30 char *pszDropDir, size_t cbDropDir)
33 AssertPtrReturn(pszDropDir, VERR_INVALID_POINTER);
36 if (RTStrPrintf(pszDropDir, cbDropDir, "%s", pszPath) <= 0)
44 int rc = RTPathAppend(pszDropDir, cbDropDir, "VirtualBox Dropped Files");
49 if (!RTDirExists(pszDropDir))
51 rc = RTDirCreateFullPath(pszDropDir, RTFS_UNIX_IRWXU);
66 rc = RTPathAppend(pszDropDir, cbDropDir, pszTime);
71 return RTDirCreateUniqueNumbered(pszDropDir, cbDropDir, RTFS_UNIX_IRWXU, 3, '-');
74 int DnDDirCreateDroppedFiles(char *pszDropDir, size_t cbDropDir) argument
76 AssertPtrReturn(pszDropDir, VERR_INVALID_POINTE
29 DnDDirCreateDroppedFilesEx(const char *pszPath, char *pszDropDir, size_t cbDropDir) argument
[all...]
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibDragAndDrop.cpp286 char pszDropDir[RTPATH_MAX]; local
287 int rc = DnDDirCreateDroppedFiles(pszDropDir, sizeof(pszDropDir));
304 RTCString strData = lstURI.RootToString(pszDropDir);
343 char *pszNewDir = RTPathJoinA(pszDropDir, szPathName);
377 char *pszPathAbs = RTPathJoinA(pszDropDir, szPathName);
450 RTDirRemove(pszDropDir);

Completed in 57 milliseconds