Searched refs:package (Results 276 - 300 of 452) sorted by relevance

<<111213141516171819

/haiku/3rdparty/mmu_man/scripts/
H A Didentify_repo.sh3 # for each package in /system/packages/ check which repository it comes from
18 for r in /system/settings/package-repositories/*; do
/haiku/src/kits/package/
H A DRequest.cpp10 #include <package/Request.h>
16 #include <package/Context.h>
H A DDownloadFileRequest.cpp10 #include <package/DownloadFileRequest.h>
12 #include <package/ValidateChecksumJob.h>
H A DActivationTransaction.cpp10 #include <package/ActivationTransaction.h>
166 BActivationTransaction::AddPackageToActivate(const BString& package) argument
168 return fPackagesToActivate.Add(package);
188 BActivationTransaction::AddPackageToDeactivate(const BString& package) argument
190 return fPackagesToDeactivate.Add(package);
H A DPackageRoster.cpp10 #include <package/PackageRoster.h>
22 #include <package/InstallationLocationInfo.h>
23 #include <package/PackageInfo.h>
24 #include <package/PackageInfoContentHandler.h>
25 #include <package/PackageInfoSet.h>
26 #include <package/RepositoryCache.h>
27 #include <package/RepositoryConfig.h>
29 #include <package/hpkg/PackageReader.h>
33 # include <package/DaemonClient.h>
60 // We get information on the system package installatio
[all...]
H A DPackageVersion.cpp7 #include <package/PackageVersion.h>
11 #include <package/PackageInfo.h>
12 #include <package/hpkg/PackageInfoAttributeValue.h>
/haiku/3rdparty/docker/bootstrap/
H A Dhaikuports_chroot.sh25 --cross-devel-package $GENERATED/objects/haiku/$TARGET_ARCH/packaging/packages/haiku_cross_devel_sysroot_${STAGE}_$TARGET_ARCH.hpkg \
/haiku/src/apps/softwareupdater/
H A DCheckManager.h16 #include <package/DaemonClient.h>
17 #include <package/manager/PackageManager.h>
/haiku/src/tools/create_repository_config/
H A Dcreate_repository_config.cpp15 #include <package/RepositoryConfig.h>
16 #include <package/RepositoryInfo.h>
/haiku/src/system/kernel/arch/m68k/
H A Darch_system_info.cpp34 node->data.package.vendor = B_CPU_VENDOR_MOTOROLA;
35 node->data.package.cache_line_size = CACHE_LINE_SIZE;
/haiku/src/apps/haikudepot/server/
H A DIncrementViewCounterProcess.cpp23 Model* model, const PackageInfoRef& package)
25 fPackage(package),
61 HDERROR("the package is not present to increment the view counter");
68 HDERROR("the package's depot is not present to increment the view "
95 HDINFO("server was not able to find the package [%s]",
22 IncrementViewCounterProcess( Model* model, const PackageInfoRef& package) argument
/haiku/src/bin/pkgman/
H A DPackageManager.h13 #include <package/DaemonClient.h>
14 #include <package/manager/PackageManager.h>
/haiku/src/kits/debugger/debug_info/loading_state_handlers/
H A DDwarfLoadingStateHandler.cpp14 #include <package/solver/Solver.h>
15 #include <package/solver/SolverPackage.h>
20 #include "package/manager/PackageManager.h"
76 // in case package installation fails, e.g. due to transient download
95 "image '%s' is missing, but can be found in the package "
106 // TODO: integrate the package installation functionality directly.
111 notification.SetToFormat("Installing package %s" B_UTF8_ELLIPSIS,
170 BSolverPackage* package = packages.ItemAt(i); local
171 if (requiredVersion.Compare(package->Version()) == 0) {
172 _packageName = package
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackage.h9 #include <package/hpkg/DataReader.h>
10 #include <package/PackageFlags.h>
11 #include <package/PackageArchitecture.h>
148 PackageCloser(Package* package) argument
150 fPackage(package)
/haiku/src/apps/haikudepot/packagemodel/
H A DDepotInfo.cpp112 /*! This method will insert the package into the list of packages
117 DepotInfo::AddPackage(PackageInfoRef& package) argument
123 package,
125 fPackages.insert(itInsertionPt, package);
179 HDINFO("%s: new package: '%s'", fName.String(),
188 HDINFO("%s: removing package: '%s'", fName.String(),
201 const PackageInfoRef& package = *it; local
202 if (package->IsProminent())
/haiku/src/apps/haikudepot/ui/
H A DMainWindow.h44 PackageInfoRef& package);
96 const PackageInfoRef& package);
98 void _AdoptPackage(const PackageInfoRef& package);
102 const PackageInfoRef package);
106 const PackageInfoRef package);
H A DMainWindow.cpp265 MainWindow::MainWindow(const BMessage& settings, PackageInfoRef& package) argument
303 // add the single package into the model so that any internal
304 // business logic is able to find the package.
306 depot->AddPackage(package);
314 fPackageInfoView->SetPackage(package);
532 PackageInfoRef package; local
535 package = fModel.PackageForName(name);
537 if (!package.IsSet() || name != package->Name())
538 debugger("unable to find the named package");
958 PackageInfoRef package = depotInfoRef->PackageAtIndex(i); local
970 _AddRemovePackageFromLists(const PackageInfoRef& package) argument
991 _SetupDelayedIncrementViewCounter(const PackageInfoRef package) argument
1031 _IncrementViewCounter(const PackageInfoRef package) argument
1054 _AdoptPackage(const PackageInfoRef& package) argument
1241 PackageInfoRef package; local
1372 const PackageInfoRef& package = fPackageInfoView->Package(); local
[all...]
/haiku/src/apps/haikudepot/model/
H A DModel.h40 const PackageInfoRef& package) const = 0;
86 const PackageInfoRef& package) const;
142 // Retrieve package information
151 const PackageInfoRef& package);
152 void PopulatePackage(const PackageInfoRef& package,
186 const PackageInfoRef& package);
/haiku/src/apps/packageinstaller/
H A DInstalledPackageInfo.cpp149 BFile package(fPathToInfo.Path(), B_READ_ONLY);
150 fStatus = package.InitCheck();
152 // The given package exists, so we can unflatten the data to a message
155 if (info.Unflatten(&package) != B_OK || info.what != P_PACKAGE_INFO) {
262 // If the package info is not up to date and everything till now was
264 // package info file
268 BFile package;
270 fStatus = package.SetTo(fPathToInfo.Path(), B_WRITE_ONLY | B_CREATE_FILE
274 fStatus = package.SetTo(fPathToInfo.Path(), B_WRITE_ONLY | B_ERASE_FILE);
302 if (info.Flatten(&package) !
[all...]
/haiku/src/bin/package_repo/
H A Dcommand_update.cpp21 #include <package/hpkg/HPKGDefs.h>
22 #include <package/hpkg/PackageInfoAttributeValue.h>
23 #include <package/hpkg/RepositoryContentHandler.h>
24 #include <package/hpkg/RepositoryReader.h>
25 #include <package/hpkg/RepositoryWriter.h>
26 #include <package/hpkg/StandardErrorOutput.h>
27 #include <package/PackageInfo.h>
28 #include <package/PackageInfoContentHandler.h>
29 #include <package/RepositoryInfo.h>
109 printf("Error: package
[all...]
/haiku/headers/os/package/
H A DPackageInfo.h14 #include <package/GlobalWritableFileInfo.h>
15 #include <package/PackageArchitecture.h>
16 #include <package/PackageFlags.h>
17 #include <package/PackageInfoAttributes.h>
18 #include <package/PackageResolvable.h>
19 #include <package/PackageResolvableExpression.h>
20 #include <package/PackageVersion.h>
21 #include <package/User.h>
22 #include <package/UserSettingsFileInfo.h>
33 * Keeps a list of package inf
[all...]
/haiku/src/bin/package/
H A Dcommand_add.cpp18 #include <package/PackageInfo.h>
19 #include <package/hpkg/HPKGDefs.h>
20 #include <package/hpkg/PackageWriter.h>
22 #include "package.h"
98 // The remaining arguments are the package file and the entries to add.
112 // create package
128 // If a package info file has been specified explicitly, open it.
133 fprintf(stderr, "Error: Failed to open package info file \"%s\": "
177 // write the package
183 printf("\nsuccessfully created package '
[all...]
H A Dcommand_create.cpp19 #include <package/PackageInfo.h>
20 #include <package/hpkg/HPKGDefs.h>
21 #include <package/hpkg/PackageWriter.h>
23 #include "package.h"
111 // The remaining arguments is the package file, i.e. one more argument.
129 fprintf(stderr, "Error: output package can't be in the same "
136 // create package
154 // If a package info file has been specified explicitly, open it.
159 fprintf(stderr, "Error: Failed to open package info file \"%s\": "
182 fprintf(stderr, "Error: Failed to set the package instal
[all...]
/haiku/src/kits/package/hpkg/
H A DRepositoryWriterImpl.cpp7 #include <package/hpkg/RepositoryWriterImpl.h>
19 #include <package/hpkg/BlockBufferPoolNoLock.h>
20 #include <package/hpkg/HPKGDefsPrivate.h>
21 #include <package/hpkg/PackageDataReader.h>
22 #include <package/hpkg/PackageEntry.h>
23 #include <package/hpkg/PackageFileHeapWriter.h>
24 #include <package/hpkg/PackageInfoAttributeValue.h>
25 #include <package/hpkg/PackageReader.h>
26 #include <package/ChecksumAccessors.h>
27 #include <package/HashableStrin
[all...]
/haiku/src/kits/package/solver/libsolv/
H A DLibsolvSolver.cpp24 #include <package/PackageResolvableExpression.h>
25 #include <package/RepositoryCache.h>
26 #include <package/solver/SolverPackage.h>
27 #include <package/solver/SolverPackageSpecifier.h>
28 #include <package/solver/SolverPackageSpecifierList.h>
29 #include <package/solver/SolverProblem.h>
30 #include <package/solver/SolverRepository.h>
31 #include <package/solver/SolverResult.h>
259 // search package names
268 // search package summarie
575 BSolverPackage* package = _GetPackage(solvableId); local
585 BSolverPackage* package = _GetPackage(solvableId); local
753 BSolverPackage* package = repository->PackageAt(k); local
840 BSolverPackage* package = specifier.Package(); local
1295 BSolverPackage* package = _GetPackage(solvables.elements[i]); local
[all...]

Completed in 132 milliseconds

<<111213141516171819