Searched refs:sourcePath (Results 1 - 18 of 18) sorted by relevance

/haiku/src/kits/storage/
H A DCopyEngine.cpp115 const char* sourcePath; local
116 status_t error = sourceEntry.GetPath(sourcePathBuffer, sourcePath);
126 return _CopyEntry(sourcePath, destPath);
131 BCopyEngine::_CopyEntry(const char* sourcePath, const char* destPath) argument
134 if (fController != NULL && !fController->EntryStarted(sourcePath))
139 if (lstat(sourcePath, &sourceStat) < 0) {
140 return _HandleEntryError(sourcePath, errno,
141 "Couldn't access \"%s\": %s\n", sourcePath, strerror(errno));
155 return _HandleEntryError(sourcePath, B_FILE_EXISTS,
157 "way.\n", sourcePath, destPat
338 _CopyFileData(const char* sourcePath, BFile& source, const char* destPath, BFile& destination) argument
374 _CopyAttributes(const char* sourcePath, BNode& source, const char* destPath, BNode& destination) argument
[all...]
/haiku/src/bin/
H A Dcopyattr.cpp199 copy_attributes(const char *sourcePath, BNode &source, const char *destPath, argument
209 "of file \"%s\": %s\n", attrName, sourcePath, strerror(error));
233 "of file \"%s\": %s\n", attrName, sourcePath,
258 copy_file_data(const char *sourcePath, BFile &source, const char *destPath, argument
268 sourcePath, strerror(bytesRead));
290 copy_entry(const char *sourcePath, const char *destPath, argument
294 if (!parameters.entry_filter.Filter(sourcePath))
299 if (lstat(sourcePath, &sourceStat) < 0) {
300 fprintf(stderr, "Error: Couldn't access \"%s\": %s\n", sourcePath,
331 "\"%s\" is in the way.\n", sourcePath, destPat
571 const char *sourcePath = sourcePaths[i]; local
[all...]
/haiku/src/kits/debugger/settings/
H A DTeamFileManagerSettings.h26 status_t AddSourceMapping(const BString& sourcePath,
30 BString& sourcePath, BString& locatedPath);
H A DTeamFileManagerSettings.cpp75 TeamFileManagerSettings::AddSourceMapping(const BString& sourcePath, argument
79 if (mapping.AddString("source:path", sourcePath) != B_OK
97 TeamFileManagerSettings::GetSourceMappingAt(int32 index, BString& sourcePath, argument
105 error = mapping.FindString("source:path", &sourcePath);
/haiku/headers/private/storage/
H A DCopyEngine.h50 status_t _CopyEntry(const char* sourcePath,
52 status_t _CopyFileData(const char* sourcePath,
55 status_t _CopyAttributes(const char* sourcePath,
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DImageFunctionsView.cpp324 BString sourcePath; local
326 sourceFile->GetPath(sourcePath);
330 if (applyFilter && !_FilterFunction(instance, sourcePath,
347 pathComponents.Add(sourcePath);
518 BString sourcePath; local
519 currentFile->GetPath(sourcePath);
520 if (sourcePath.IsEmpty())
524 if (sourcePath[0] == '/')
527 while (startIndex < sourcePath.Length()) {
528 int32 searchIndex = sourcePath
613 _FilterFunction(FunctionInstance* instance, const BString& sourcePath, RegExp::MatchResult& pathMatch, RegExp::MatchResult& functionMatch) argument
[all...]
H A DTeamWindow.cpp1992 BString sourcePath; local
1993 sourceFile->GetPath(sourcePath);
1994 BString sourceFileName(sourcePath);
1995 int32 index = sourcePath.FindLast('/');
2022 fListener->SourceEntryLocateRequested(sourcePath,
H A DSourceView.cpp1935 BString sourcePath;
1936 code->GetSourceFile()->GetLocatedPath(sourcePath);
1937 if (sourcePath.IsEmpty())
2105 BString sourcePath; local
2106 file->GetLocatedPath(sourcePath);
2107 if (sourcePath.IsEmpty())
2110 BPath path(sourcePath);
/haiku/src/kits/debugger/files/
H A DFileManager.h77 bool _LocateFileIfMapped(const BString& sourcePath,
H A DFileManager.cpp736 BString sourcePath; local
739 if (settings->GetSourceMappingAt(i, sourcePath, locatedPath) != B_OK)
743 fSourceLocationMappings[sourcePath] = locatedPath;
798 FileManager::_LocateFileIfMapped(const BString& sourcePath, argument
804 sourcePath);
/haiku/src/apps/installer/
H A DWorkerThread.h54 status_t _ProcessZipPackages(const char* sourcePath,
H A DCopyEngine.cpp328 BPath sourcePath(&source);
329 ret = sourcePath.InitCheck();
338 const char *relativeSourcePath = _RelativeEntryPath(sourcePath.Path());
372 "%s\n", sourcePath.Path(), strerror(ret));
409 "%s\n", sourcePath.Path(), strerror(ret));
420 fCurrentItem = sourcePath.Leaf();
439 ret = dstFolder.CreateSymLink(sourcePath.Leaf(), linkPath, NULL);
H A DWorkerThread.cpp744 WorkerThread::_ProcessZipPackages(const char* sourcePath, argument
750 BPath pkgRootDir(sourcePath, kPackagesDirectoryPath);
/haiku/headers/private/debugger/user_interface/
H A DUserInterface.h112 const char* sourcePath,
/haiku/src/kits/debugger/controllers/
H A DDebugReportGenerator.cpp537 BString sourcePath; local
579 sourceFile->GetPath(sourcePath);
580 sourcePath.SetToFormat("(%s:%" B_PRId32 ")",
581 sourcePath.String(), line);
589 sourcePath.String());
H A DTeamDebugger.cpp980 TeamDebugger::SourceEntryLocateRequested(const char* sourcePath, argument
984 fFileManager->SourceEntryLocated(sourcePath, locatedPath);
/haiku/headers/private/debugger/controllers/
H A DTeamDebugger.h80 const char* sourcePath,
/haiku/src/kits/package/manager/
H A DPackageManager.cpp700 BPath sourcePath; local
701 repository->GetPackagePath(package, sourcePath);
712 error = BCopyEngine().CopyEntry(sourcePath.Path(), destinationPath.Path());
714 DIE(error, "Failed to copy package file \"%s\"", sourcePath.Path());

Completed in 134 milliseconds