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

/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsFileSpecBeOS.cpp193 const char* canonicalPath = p.Path(); local
195 mPath = (char*)canonicalPath;
H A DnsFileSpecOS2.cpp105 char canonicalPath[CCHMAXPATH] = ""; local
109 canonicalPath,
112 char* canonicalPath = _fullpath(buffer, ioPath, _MAX_PATH); local
115 if (canonicalPath)
117 NS_ASSERTION( canonicalPath[0] != '\0', "Uh oh...couldn't convert" );
118 if (canonicalPath[0] == '\0')
123 strcat( canonicalPath, "\\");
126 ioPath = canonicalPath;
H A DnsFileSpecUnix.cpp256 char* canonicalPath = realpath((const char *)mPath, resolvedPath); local
257 NS_ASSERTION(canonicalPath, "realpath failed");
258 if (canonicalPath) {
H A DnsFileSpecWin.cpp89 char* canonicalPath = _fullpath(buffer, ioPath, _MAX_PATH); local
91 if (canonicalPath)
93 NS_ASSERTION( canonicalPath[0] != '\0', "Uh oh...couldn't convert" );
94 if (canonicalPath[0] == '\0')
97 ioPath = canonicalPath;

Completed in 52 milliseconds