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

/illumos-gate/usr/src/lib/libbc/libc/sys/common/
H A D_open.c371 char *fullPath; local
378 fullPath = (char *)malloc(strlen(PRINTER_DIR) + strlen(printerName) +
380 strcpy(fullPath, PRINTER_DIR);
381 strcat(fullPath, printerName);
382 strcat(fullPath, PRINTER_CONFIG_FILE);
384 if ((config_fd = _syscall(SYS_openat, AT_FDCWD, fullPath, O_RDONLY))
386 free(fullPath);
391 free(fullPath);
396 free(fullPath);
419 free(fullPath);
[all...]
/illumos-gate/usr/src/cmd/fs.d/pcfs/fsck/
H A Ddir.c301 int32_t longEntryStartCluster, char *fullPath, int *fullLen)
316 appendToPath(dp, fullPath, fullLen);
327 (void) strncpy(pathCopy->fullName, fullPath, *fullLen);
300 storeInfoAboutEntry(int fd, struct pcdir *dp, struct pcdir *ldp, int depth, int32_t longEntryStartCluster, char *fullPath, int *fullLen) argument
/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...]
/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);

Completed in 123 milliseconds