Searched defs:fullPath (Results 1 - 5 of 5) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/glue/standalone/
H A DnsGREDirServiceProvider.cpp496 nsEmbedCString fullPath; local
497 NS_CStringAppendData(fullPath, dirname);
498 NS_CStringAppendData(fullPath, XPCOM_FILE_PATH_SEPARATOR);
499 NS_CStringAppendData(fullPath, entry->name);
501 found = GRE_GetPathFromConfigFile(fullPath.get(), buffer);
/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/
H A Dmac_xpidl.cpp141 Handle fullPath = NULL; local
142 if (FSpGetFullPath(&file, &len, &fullPath) == noErr && fullPath != NULL) {
145 BlockMoveData(*fullPath, path, len);
148 DisposeHandle(fullPath);
H A Dmac_xpt_linker.cpp148 Handle fullPath = NULL; local
149 if (FSpGetFullPath(&file, &len, &fullPath) == noErr && fullPath != NULL) {
152 BlockMoveData(*fullPath, path, len);
155 DisposeHandle(fullPath);
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DVBoxFilePathSelectorWidget.cpp370 QString text (fullPath());
426 QString VBoxFilePathSelectorWidget::fullPath (bool aAbsolute /* = true */) const function in class:VBoxFilePathSelectorWidget
451 QString fullText (fullPath (false));
487 return newSize < oldSize ? fullText : fullPath (false);
560 setToolTip (fullPath());
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/mac/
H A Dmacio.c1618 static OSErr GetFullPath(short vRefNum, long dirID, char **fullPath, int *strSize) argument
1629 *fullPath = NULL;
1630 *fullPath = malloc(*strSize); // How big should this thing be?
1631 require_action (*fullPath != NULL, errorExit, err = memFullErr;);
1636 strcpy(*fullPath, ""); // Clear C result
1655 if ((strlen(cDirName) + strlen(*fullPath)) > *strSize) {
1658 *fullPath = PR_REALLOC(*fullPath, *strSize);
1659 require_action (*fullPath != NULL, errorExit, err = memFullErr;);
1664 sprintf(tmpPath, "%s:%s", cDirName, *fullPath);
[all...]

Completed in 71 milliseconds