| /freebsd/sys/contrib/libsodium/packaging/nuget/ |
| H A D | package.gsl | 7 .echo "Generating package.nuspec from template." 8 .output "package.nuspec" 15 <package xmlns="http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd"> 17 <id>$(package.id)</id> 18 <version>$(package.version)</version> 19 <title>$(package.id)</title> 48 <file src="package.targets" target="build\\native\\$(package.id).targets" /> 49 <file src="package.xml" target="build\\native\\package.xml" /> 54 …\$(package.platformtoolset)\\dynamic\\$(package.target).dll" target="build\\native\\bin\\$(package… 55 …(package.platformtoolset)\\dynamic\\$(package.target).dll" target="build\\native\\bin\\$(package.t… [all …]
|
| /freebsd/etc/mtree/ |
| H A D | BSD.root.dist | 7 bin tags=package=runtime 9 /set tags=package=bootloader 14 allwinner tags=package=runtime 16 overlays tags=package=runtime 18 rockchip tags=package=runtime 43 dev mode=0555 tags=package=runtime 45 etc tags=package=runtime 46 X11 tags=package=runtime 48 authpf tags=package=pf 50 autofs tags=package=autofs [all …]
|
| H A D | BSD.include.dist | 5 /set type=dir uname=root gname=wheel mode=0755 tags=package=clibs-dev 9 atf-c tags=package=atf-dev 11 atf-c++ tags=package=atf-dev 13 bsm tags=package=audit-dev 15 bsnmp tags=package=bsnmp-dev 199 casper tags=package=libcasper-dev 271 devdctl tags=package=utilities-dev 273 edit tags=package=runtime-dev 274 readline tags=package=runtime-dev 333 gssapi tags=package=kerberos-dev [all …]
|
| H A D | BSD.usr.dist | 9 include tags=package=clibs-dev 10 private tags=package=clibs-dev 11 bsddialog tags=package=utilities-dev 13 bsdstat tags=package=libbsdstat-dev 15 event1 tags=package=libevent1-dev 17 gmock tags=package=utilities-dev 18 internal tags=package=utilities-dev 19 custom tags=package=utilities-dev 23 gtest tags=package=utilities-dev 24 internal tags=package=utilities-dev [all …]
|
| H A D | BSD.var.dist | 5 /set type=dir uname=root gname=wheel mode=0755 tags=package=runtime 11 jobs tags=package=at 13 spool tags=package=at 44 hyperv mode=0700 tags=package=hyperv-tools 46 ipf mode=0700 tags=package=ipf 48 krb5kdc mode=0700 tags=package=kerberos-kdc 58 zfsd tags=package=zfs 78 bhyve tags=package=bhyve 80 dhclient tags=package=dhclient 82 ppp gname=network mode=0770 tags=package=ppp [all …]
|
| /freebsd/release/packages/ucl/ |
| H A D | README | 1 This directory contains package manifests for the base packages in UCL format. 2 There are two types of manifest: "<package>.ucl" applies specifically to the 3 package called "<package>", and "<package>-all.ucl" applies to all of that 4 package's subpackages. 19 package-specific manifests, while comment and description should be set 22 Policies for package dependencies: 24 * If a package requires a shared library from another package, do not add a 29 * If a package contains rc(8) scripts, do not add a dependency on "rc". 32 * If a package contains hooks intended to be invoked from devd, do not add 34 the package doesn't work at all without devd, in which case a dependency [all …]
|
| /freebsd/contrib/pkgconf/doc/ |
| H A D | libpkgconf-cache.rst | 5 The libpkgconf `cache` module manages a package/module object cache, allowing it to 6 avoid loading duplicate copies of a package/module. 8 A cache is tied to a specific pkgconf client object, so package objects should not 13 Looks up a package in the cache given an `id` atom, 18 :param char* id: The package atom to look up in the client object's cache. 19 :return: A package object if present, else ``NULL``. 24 Adds an entry for the package to the package cache. 25 The cache entry must be removed if the package is freed. 28 :param pkgconf_pkg_t* pkg: The package object to add to the client object's cache. 33 Deletes a package from the client object's package cache. [all …]
|
| H A D | libpkgconf-pkg.rst | 13 :param char* filename: The filename of the package file (including full path). 16 :returns: A ``pkgconf_pkg_t`` object which contains the package data. 24 :param pkgconf_pkg_t* pkg: The package to free. 29 Adds an additional reference to the package object. 31 …:param pkgconf_client_t* client: The pkgconf client object which owns the package being referenced. 32 :param pkgconf_pkg_t* pkg: The package object being referenced. 33 :return: The package itself with an incremented reference count. 38 …Releases a reference on the package object. If the reference count is 0, then also free the packa… 40 …:param pkgconf_client_t* client: The pkgconf client object which owns the package being dereferenc… 41 :param pkgconf_pkg_t* pkg: The package object being dereferenced. [all …]
|
| /freebsd/crypto/openssl/test/ |
| H A D | asn1_encode_test.c | 492 const TEST_PACKAGE *package) in do_decode() argument 499 enctst = package->d2i(NULL, &bytes, nbytes); in do_decode() 515 package->ifree(enctst); in do_decode() 528 const TEST_PACKAGE *package) in do_encode() argument 534 len = package->i2d(input, &data); in do_encode() 556 const TEST_PACKAGE *package) in do_enc_dec() argument 563 len = package->i2d(p, &data); in do_enc_dec() 567 ret = do_decode(data, len, bytes, nbytes, package); in do_enc_dec() 673 const TEST_PACKAGE *package) in do_decode_custom() argument 687 package); in do_decode_custom() [all …]
|
| /freebsd/sys/contrib/dev/ice/ |
| H A D | README | 33 Device Personalization (DDP) package file to enable advanced features 38 applying a profile package to the device at runtime. Profiles can be 43 The DDP package loads during device initialization or driver runtime, 45 package is present and compatible. If this file exists, the driver 46 will load it into the device. If the DDP package file is missing or 52 or downloading a new driver or DDP package. 57 A general-purpose, default DDP package is automatically installed with 62 The default DDP package supports the following: 109 This DDP package is supported on the following operating systems: 132 package [all...] |
| /freebsd/contrib/pkgconf/libpkgconf/ |
| H A D | dependency.c | 43 pkgconf_strlcpy(buf, dep->package, buflen); in dependency_to_str() 65 if (strcmp(dep->package, dep2->package)) in find_colliding_dependency() 129 pkgconf_dependency_addraw(pkgconf_client_t *client, pkgconf_list_t *list, const char *package, size… in pkgconf_dependency_addraw() argument 137 dep->package = pkgconf_strndup(package, package_sz); in pkgconf_dependency_addraw() 167 pkgconf_dependency_add(pkgconf_client_t *client, pkgconf_list_t *list, const char *package, const c… in pkgconf_dependency_add() argument 170 dep = pkgconf_dependency_addraw(client, list, package, strlen(package), version, in pkgconf_dependency_add() 208 if (dep->package != NULL) in pkgconf_dependency_free_one() 209 free(dep->package); in pkgconf_dependency_free_one() 235 PKGCONF_TRACE(client, "%s refcount@%p: %d", dep->package, dep, dep->refcount); in pkgconf_dependency_ref() 257 PKGCONF_TRACE(client, "%s refcount@%p: %d", dep->package, dep, dep->refcount); in pkgconf_dependency_unref() [all …]
|
| H A D | config.h.meson | 33 /* Name of package */ 36 /* Define to the address where bug reports for this package should be sent. */ 39 /* Define to the full name of this package. */ 42 /* Define to the full name and version of this package. */ 45 /* Define to the one symbol short name of this package. */ 48 /* Define to the home page for this package. */ 51 /* Define to the version of this package. */ 57 /* Version number of package */
|
| /freebsd/stand/libsa/ |
| H A D | pkgfs.c | 99 struct package; 103 struct package *tf_pkg; 113 struct package struct 115 struct package *pkg_chain; argument 124 static struct package *package = NULL; argument 126 static int new_package(int, struct package **); 132 struct package *chain; in pkgfs_cleanup() 135 while (package != NULL) { in pkgfs_cleanup() 136 inflateEnd(&package->pkg_zs); in pkgfs_cleanup() 137 close(package->pkg_fd); in pkgfs_cleanup() [all …]
|
| /freebsd/sys/contrib/dev/iwlwifi/fw/ |
| H A D | acpi.c | 288 data->package.count < 2 || in iwl_acpi_get_wifi_pkg_range() 289 data->package.elements[0].type != ACPI_TYPE_INTEGER) { in iwl_acpi_get_wifi_pkg_range() 294 *tbl_rev = data->package.elements[0].integer.value; in iwl_acpi_get_wifi_pkg_range() 297 for (i = 1; i < data->package.count; i++) { in iwl_acpi_get_wifi_pkg_range() 300 wifi_pkg = &data->package.elements[i]; in iwl_acpi_get_wifi_pkg_range() 304 wifi_pkg->package.count < min_data_size || in iwl_acpi_get_wifi_pkg_range() 305 wifi_pkg->package.count > max_data_size) in iwl_acpi_get_wifi_pkg_range() 308 domain = &wifi_pkg->package.elements[0]; in iwl_acpi_get_wifi_pkg_range() 350 wifi_pkg->package.elements[1].type != ACPI_TYPE_INTEGER) { in iwl_acpi_get_tas_table() 355 tas_selection = (u32)wifi_pkg->package.elements[1].integer.value; in iwl_acpi_get_tas_table() [all …]
|
| /freebsd/sys/contrib/libsodium/packaging/dotnet-core/ |
| H A D | README.md | 1 This directory contains scripts and files to package libsodium for .NET Core. 3 *Note:* The NuGet package is intended for the implementation of language 10 number of platforms and assembles them in a NuGet package that can be uploaded 21 The metadata for the NuGet package is located in `libsodium.props`. 30 * *package revision* 31 It may be necessary to release more than one package for a libsodium version, 33 binary. In this case, a package revision number is added as a fourth part to 35 release of the package for libsodium 1.0.16 and `1.0.16.5` is the fifth 36 revision (sixth release) of that package. 38 If a package is a pre-release, a label is appended to the version number in [all …]
|
| /freebsd/sys/dev/ofw/ |
| H A D | ofw_standard.c | 79 static ssize_t ofw_std_getproplen(ofw_t ofw, phandle_t package, 81 static ssize_t ofw_std_getprop(ofw_t ofw, phandle_t package, 83 static int ofw_std_nextprop(ofw_t ofw, phandle_t package, const char *previous, 85 static int ofw_std_setprop(ofw_t ofw, phandle_t package, const char *propname, 92 static ssize_t ofw_std_package_to_path(ofw_t ofw, phandle_t package, char *buf, 287 cell_t package; in ofw_std_instance_to_package() member 297 return (args.package); in ofw_std_instance_to_package() 302 ofw_std_getproplen(ofw_t ofw, phandle_t package, const char *propname) in ofw_std_getproplen() argument 308 cell_t package; in ofw_std_getproplen() member 317 args.package = package; in ofw_std_getproplen() [all …]
|
| H A D | openfirm.c | 374 OF_getproplen(phandle_t package, const char *propname) in OF_getproplen() argument 380 return (OFW_GETPROPLEN(ofw_obj, package, propname)); in OF_getproplen() 385 OF_hasprop(phandle_t package, const char *propname) in OF_hasprop() argument 388 return (OF_getproplen(package, propname) >= 0); in OF_hasprop() 393 OF_getprop(phandle_t package, const char *propname, void *buf, size_t buflen) in OF_getprop() argument 399 return (OFW_GETPROP(ofw_obj, package, propname, buf, buflen)); in OF_getprop() 452 OF_getprop_alloc(phandle_t package, const char *propname, void **buf) in OF_getprop_alloc() argument 457 if ((len = OF_getproplen(package, propname)) == -1) in OF_getprop_alloc() 462 if (OF_getprop(package, propname, *buf, len) == -1) { in OF_getprop_alloc() 477 OF_getprop_alloc_multi(phandle_t package, const char *propname, int elsz, void **buf) in OF_getprop_alloc_multi() argument [all …]
|
| /freebsd/usr.sbin/bsdconfig/share/packages/ |
| H A D | packages.subr | 62 PACKAGE_CATEGORIES= # List of package categories parsed from INDEX 122 # f_package_select $package ... 124 # Add $package to the list of tracked/selected packages. If $package is already 130 local package pkgsel 132 package="$1" 133 shift 1 # package 135 [ "$package" = "$pkgsel" ] && return $SUCCESS 137 SELECTED_PACKAGES="$SELECTED_PACKAGES $package" 138 f_dprintf "Added %s to selection list" "$package" 143 # f_package_deselect $package ... [all …]
|
| /freebsd/stand/libofw/ |
| H A D | openfirm.c | 220 cell_t package; in OF_instance_to_package() member 227 return (args.package); in OF_instance_to_package() 232 OF_getproplen(phandle_t package, const char *propname) in OF_getproplen() argument 238 cell_t package; in OF_getproplen() member 244 args.package = package; in OF_getproplen() 253 OF_getprop(phandle_t package, const char *propname, void *buf, int buflen) in OF_getprop() argument 259 cell_t package; in OF_getprop() member 267 args.package = package; in OF_getprop() 278 OF_getencprop(phandle_t package, const char *propname, cell_t *buf, int buflen) in OF_getencprop() argument 281 retval = OF_getprop(package, propname, buf, buflen); in OF_getencprop() [all …]
|
| /freebsd/release/scripts/ |
| H A D | pkgbase-stage.lua | 35 for package in rquery:gmatch("[^\n]+") do 36 local set = package:match("^FreeBSD%-set%-(.*)$") 38 components[set] = package 39 elseif kernel_packages[package] then 40 components["kernel"] = package 41 elseif kernel_packages[package:match("(.*)%-dbg$")] then 42 components["kernel-dbg"] = package 43 elseif package == "pkg" then 44 components["pkg"] = package
|
| /freebsd/targets/pseudo/bootstrap-packages/ |
| H A D | bootstrap-packages.sh | 142 while read reldir package 177 : package=$package 178 case "$package" in \ 179 lib?{LIB*) package=`echo lib${bname#lib} | tr 'A-Z' 'a-z'`;; 181 if test "$package" != "$lpackage"; then \ 183 target=$PACKAGES/$package 188 lpackage=$package
|
| /freebsd/sys/contrib/device-tree/Bindings/net/ |
| H A D | icplus-ip101ag.txt | 4 - IP101GR (32-pin QFN package) 5 - IP101G (die only, no package) 6 - IP101GA (48-pin LQFP package) 10 - IP101A (48-pin LQFP package) 11 - IP101AH (48-pin LQFP package) 13 Optional properties for the IP101GR (32-pin QFN package):
|
| /freebsd/contrib/ntp/ |
| H A D | INSTALL | 10 those values to create a `Makefile' in each directory of the package. 18 If you need to do unusual things to compile the package, please try 28 The simplest way to compile this package is: 30 1. `cd' to the directory containing the package's source code and type 31 `./configure' to configure the package for your system. If you're 39 2. Type `make' to compile the package. 42 the package. 49 files that `configure' created (so you can compile the package for 52 for the package's developers. If you use it, you may have to get 72 You can compile the package for more than one kind of computer at the [all …]
|
| /freebsd/contrib/ntp/html/hints/ |
| H A D | svr4_package | 18 prototype describes the file contents of the package. 25 installing a replacement package 26 postinstall starts up ntp after package installation. 27 preremove brings down ntp before removing the package. 29 You create a package using "make package". This creates a file 30 called xntp.pkg. To install this package, you use 32 /etc/inet/ntp.conf exists. If you don't want the package anymore, use
|
| /freebsd/contrib/less/ |
| H A D | INSTALL | 13 those values to create a `Makefile' in each directory of the package. 21 If you need to do unusual things to compile the package, please try 31 The simplest way to compile this package is: 33 1. `cd' to the directory containing the package's source code and type 34 `./configure' to configure the package for your system. If you're 42 2. Type `make' to compile the package. 45 the package. 52 files that `configure' created (so you can compile the package for 55 for the package's developers. If you use it, you may have to get 75 You can compile the package for more than one kind of computer at the [all …]
|