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

/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxSharedFolders.cpp65 char *pszShareName; local
66 if (RTStrAPrintf(&pszShareName, "\\\\vboxsrv\\%s", pszName) >= 0)
78 resource.lpRemoteName = TEXT(pszShareName);
117 RTStrFree(pszShareName);
169 char *pszShareName; local
170 if (RTStrAPrintf(&pszShareName, "\\\\vboxsrv\\%s", pszName) >= 0)
172 DWORD dwErr = WNetCancelConnection2(pszShareName, 0, FALSE /* Force disconnect */);
175 LogRel(("Share \"%s\" was disconnected\n", pszShareName));
176 RTStrFree(pszShareName);
181 LogRel(("Disconnecting \"%s\" failed, dwErr = %ld\n", pszShareName, dwEr
[all...]
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibSharedFolders.cpp93 * @param pszShareName Shared folder name to check.
95 VBGLR3DECL(bool) VbglR3SharedFolderExists(uint32_t u32ClientId, const char *pszShareName) argument
97 AssertPtr(pszShareName);
115 if (RTStrICmp(pszName, pszShareName) == 0)
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceAutoMount.cpp183 static int VBoxServiceAutoMountPrepareMountPoint(const char *pszMountPoint, const char *pszShareName, argument
188 AssertPtrReturn(pszShareName, VERR_INVALID_PARAMETER);
221 static int VBoxServiceAutoMountSharedFolder(const char *pszShareName, const char *pszMountPoint, argument
231 if (VBoxServiceAutoMountShareIsMounted(pszShareName, szAlreadyMountedTo, sizeof(szAlreadyMountedTo)))
238 pszShareName, szAlreadyMountedTo);
248 pszShareName, szAlreadyMountedTo);
252 rc = VBoxServiceAutoMountPrepareMountPoint(pszMountPoint, pszShareName, pOpts);
262 int r = mount(pszShareName,
272 VBoxServiceVerbose(0, "VBoxServiceAutoMountWorker: Shared folder \"%s\" was mounted to \"%s\"\n", pszShareName, pszMountPoint);
278 pszShareName, pszMountPoin
414 char *pszShareName = NULL; local
[all...]

Completed in 52 milliseconds