Searched refs:package (Results 101 - 125 of 452) sorted by relevance

1234567891011>>

/haiku/3rdparty/pulkomandy/
H A Dunbootstrap.sh7 # these package before we can get the bootstrap image to run reliably enough
13 for package in ../packages/*.hpkg
15 echo --- Processing $package ---
18 echo Extracting package...
19 package extract $package
22 name=`basename $package|sed -e s/_bootstrap//g`
23 # If this is a source package, we need to correct the source directory.
25 oldpkgname=$(basename $package | sed -e s/-source.hpkg//g | sed -e s/_source//g)
34 echo Regenerating package
[all...]
/haiku/src/kits/package/hpkg/
H A DBufferPool.cpp7 #include <package/hpkg/BufferPool.h>
H A DPackageEntryAttribute.cpp7 #include <package/hpkg/PackageEntryAttribute.h>
H A DRepositoryReader.cpp7 #include <package/hpkg/RepositoryReader.h>
11 #include <package/hpkg/ErrorOutput.h>
12 #include <package/hpkg/RepositoryContentHandler.h>
13 #include <package/hpkg/RepositoryReaderImpl.h>
H A DNoErrorOutput.cpp10 #include <package/hpkg/NoErrorOutput.h>
/haiku/src/kits/package/hpkg/v1/
H A DHPKGDefsV1.cpp7 #include <package/hpkg/v1/HPKGDefs.h>
H A DPackageEntryAttributeV1.cpp7 #include <package/hpkg/v1/PackageEntryAttribute.h>
/haiku/src/system/boot/platform/openfirmware/
H A Dsupport.cpp24 /** given the package provided, get the number of cells
29 of_address_cells(intptr_t package) { argument
31 if (of_getprop(package, "#address-cells",
40 of_size_cells(intptr_t package) { argument
42 if (of_getprop(package, "#size-cells",
/haiku/src/apps/haikudepot/packagemanagement/
H A DAbstractPackageProcess.cpp23 PackageInfoRef package, Model* model)
25 fPackage(package),
28 if (package.IsSet())
29 fInstallLocation = PackageUtils::DeriveInstallLocation(package.Get());
33 // TODO: ideally if the package is installed at multiple locations,
22 AbstractPackageProcess( PackageInfoRef package, Model* model) argument
/haiku/src/apps/haikudepot/util/
H A DPackageUtils.h14 #include <package/PackageDefs.h>
19 static status_t DeriveLocalFilePath(const PackageInfo* package,
23 DeriveInstallLocation(const PackageInfo* package);
H A DPackageUtils.cpp13 status_t PackageUtils::DeriveLocalFilePath(const PackageInfo* package, argument
16 if (package->IsLocalFile()) {
17 path.SetTo(package->LocalFilePath());
23 = DeriveInstallLocation(package);
31 path.Append(package->FileName());
50 debugger("illegal state: unsupported package installation"
59 PackageUtils::DeriveInstallLocation(const PackageInfo* package) argument
62 = package->InstallationLocations();
64 // If the package is already installed, return its first installed location
/haiku/src/add-ons/kernel/file_systems/packagefs/package_links/
H A DPackageLinksDirectory.cpp40 PackageLinksDirectory::AddPackage(Package* package) argument
42 // Create a package link directory -- there might already be one, but since
51 status_t error = linkDirectory->Init(this, package);
64 // There's already a package link directory. Delete the one we created
65 // and add the package to the pre-existing one.
66 linkDirectory->RemovePackage(package, NULL);
68 linkDirectory->AddPackage(package, fListener);
84 PackageLinksDirectory::RemovePackage(Package* package) argument
88 // get the package's link directory and remove the package fro
110 UpdatePackageDependencies(Package* package) argument
[all...]
H A DPackageLinksDirectory.h26 status_t AddPackage(Package* package);
27 void RemovePackage(Package* package);
28 void UpdatePackageDependencies(Package* package);
H A DPackageLinkDirectory.cpp48 PackageLinkDirectory::Init(Directory* parent, Package* package) argument
51 status_t error = Init(parent, package->VersionedName());
55 // add the package
56 AddPackage(package, NULL);
79 Package* package = fPackages.Head(); local
80 if (package == NULL)
97 Package* package = fPackages.Head(); local
98 if (package == NULL)
101 return AutoPackageAttributes::OpenCookie(package, name, openMode, _cookie);
106 PackageLinkDirectory::AddPackage(Package* package, argument
130 RemovePackage(Package* package, PackageLinksListener* listener) argument
148 UpdatePackageDependencies(Package* package, PackageLinksListener* listener) argument
172 Package* package = fPackages.Head(); local
204 Package* package = fPackages.Head(); local
266 _CreateOrUpdateLink(Link*& link, Package* package, Link::Type type, const String& name, PackageLinksListener* listener) argument
[all...]
H A DPackageLinkDirectory.h22 status_t Init(Directory* parent, Package* package);
32 void AddPackage(Package* package,
34 void RemovePackage(Package* package,
36 void UpdatePackageDependencies(Package* package,
46 DependencyLink(Package* package) argument
48 PackageLinkSymlink(package, TYPE_INSTALLATION_LOCATION)
66 Package* package, Link::Type type,
/haiku/src/apps/haikudepot/ui/
H A DFeaturedPackagesView.h29 void AddPackage(const PackageInfoRef& package);
30 void RemovePackage(const PackageInfoRef& package);
33 void SelectPackage(const PackageInfoRef& package,
/haiku/src/kits/package/
H A DAttributes.cpp10 #include <package/Attributes.h>
16 // attributes used in package and as BFS-attribute
/haiku/src/servers/package/
H A DConstants.cpp9 #include <package/PackagesDirectoryDefs.h>
H A DPackageManager.cpp11 #include <package/DownloadFileRequest.h>
12 #include <package/RefreshRepositoryRequest.h>
13 #include <package/solver/SolverPackage.h>
14 #include <package/solver/SolverPackageSpecifierList.h>
15 #include <package/solver/SolverProblem.h>
16 #include <package/solver/SolverProblemSolution.h>
19 #include <package/manager/Exceptions.h>
20 #include <package/manager/RepositoryBuilder.h>
110 Package* package = *it; local
112 repositoryBuilder.AddPackage(package
139 Package* package = it.Next(); local
230 Package* package = *it; local
241 Package* package = *it; local
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackageNode.cpp17 PackageNode::PackageNode(Package* package, mode_t mode) argument
19 fPackage(package),
55 BReference<Package> package(GetPackage());
57 // open the package
58 int fd = package->Open();
62 package->AcquireReference();
70 BReference<Package> package(GetPackage());
71 package->Close();
72 package->ReleaseReference();
121 BReference<Package> package(GetPackag
[all...]
H A DPackageLeafNode.cpp10 PackageLeafNode::PackageLeafNode(Package* package, mode_t mode) argument
12 PackageNode(package, mode)
H A DPackageSymlink.cpp13 PackageSymlink::PackageSymlink(Package* package, mode_t mode) argument
15 PackageLeafNode(package, mode),
/haiku/headers/os/package/
H A DDropRepositoryRequest.h11 #include <package/Context.h>
12 #include <package/Request.h>
H A DRefreshRepositoryRequest.h12 #include <package/Context.h>
13 #include <package/RepositoryConfig.h>
14 #include <package/Request.h>
/haiku/headers/os/package/hpkg/
H A DNoErrorOutput.h9 #include <package/hpkg/ErrorOutput.h>

Completed in 79 milliseconds

1234567891011>>