Searched defs:resolvedPath (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpecBeOS.cpp170 char resolvedPath[MAXPATHLEN]; local
171 int charCount = readlink(mPath, (char*)&resolvedPath, MAXPATHLEN);
175 resolvedPath[charCount] = '\0';
180 if (resolvedPath[0] != '/') {
181 SetLeafName(resolvedPath);
184 mPath = (char*)resolvedPath;
H A DnsFileSpecUnix.cpp238 char resolvedPath[MAXPATHLEN]; local
239 int charCount = readlink(mPath, (char*)&resolvedPath, MAXPATHLEN);
243 resolvedPath[charCount] = '\0';
249 if (resolvedPath[0] != '/') {
250 SetLeafName(resolvedPath);
253 mPath = (char*)&resolvedPath;
256 char* canonicalPath = realpath((const char *)mPath, resolvedPath);
259 mPath = (char*)&resolvedPath;
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/linking/
H A Dprlink.c909 const char *resolvedPath; local
913 resolvedPath = realpath(name, pathBuf);
914 if (!resolvedPath)
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsLocalFileWin.cpp480 char *resolvedPath = mResolvedPath.BeginWriting(); local
483 nsresult rv = gResolver->Resolve(ucsBuf.get(), resolvedPath);
485 size_t len = NS_FAILED(rv) ? 0 : strlen(resolvedPath);

Completed in 104 milliseconds