Home
last modified time | relevance | path

Searched refs:package (Results 1 – 25 of 642) sorted by relevance

12345678910>>...26

/freebsd/sys/contrib/libsodium/packaging/nuget/
H A Dpackage.gsl7 .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/crypto/openssl/test/
H A Dasn1_encode_test.c486 const TEST_PACKAGE *package) in do_decode() argument
493 enctst = package->d2i(NULL, &bytes, nbytes); in do_decode()
509 package->ifree(enctst); in do_decode()
522 const TEST_PACKAGE *package) in do_encode() argument
528 len = package->i2d(input, &data); in do_encode()
550 const TEST_PACKAGE *package) in do_enc_dec() argument
557 len = package->i2d(p, &data); in do_enc_dec()
561 ret = do_decode(data, len, bytes, nbytes, package); in do_enc_dec()
671 const TEST_PACKAGE *package) in do_decode_custom() argument
685 package); in do_decode_custom()
[all …]
/freebsd/etc/mtree/
H A DBSD.var.dist5 /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
56 zfsd tags=package=zfs
76 bhyve tags=package=bhyve
78 dhclient tags=package=dhclient
80 ppp gname=network mode=0770 tags=package=ppp
82 wpa_supplicant tags=package
[all...]
H A DBSD.root.dist13 allwinner tags=package=runtime
15 overlays tags=package=runtime
17 rockchip tags=package=runtime
30 loader.conf.d tags=package=bootloader
64 kyua tags=package=tests
H A DBSD.usr.dist186 atf tags=package=tests
213 trusted tags=package=caroot
215 untrusted tags=package=caroot
223 atf tags=package=tests
225 kyua tags=package=tests
321 kyua tags=package=tests
458 revoked tags=package=runtime
460 trusted tags=package=runtime
464 kyua tags=package=tests
465 misc tags=package=tests
[all …]
/freebsd/sys/contrib/dev/ice/
H A DREADME33 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/stand/libsa/
H A Dpkgfs.c104 struct package;
108 struct package *tf_pkg;
118 struct package struct
120 struct package *pkg_chain; argument
129 static struct package *package = NULL; variable
131 static int new_package(int, struct package **);
137 struct package *chain; in pkgfs_cleanup()
140 while (package != NULL) { in pkgfs_cleanup()
141 inflateEnd(&package->pkg_zs); in pkgfs_cleanup()
142 close(package->pkg_fd); in pkgfs_cleanup()
[all …]
/freebsd/sys/contrib/libsodium/packaging/dotnet-core/
H A DREADME.md1 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 Dofw_standard.c80 static ssize_t ofw_std_getproplen(ofw_t ofw, phandle_t package,
82 static ssize_t ofw_std_getprop(ofw_t ofw, phandle_t package,
84 static int ofw_std_nextprop(ofw_t ofw, phandle_t package, const char *previous,
86 static int ofw_std_setprop(ofw_t ofw, phandle_t package, const char *propname,
93 static ssize_t ofw_std_package_to_path(ofw_t ofw, phandle_t package, char *buf,
288 cell_t package; in ofw_std_instance_to_package() member
298 return (args.package); in ofw_std_instance_to_package()
303 ofw_std_getproplen(ofw_t ofw, phandle_t package, const char *propname) in ofw_std_getproplen() argument
309 cell_t package; in ofw_std_getproplen() member
318 args.package = package; in ofw_std_getproplen()
[all …]
H A Dopenfirm.c353 /* Return the package handle that corresponds to an instance handle. */
364 /* Get the length of a property of a package. */
366 OF_getproplen(phandle_t package, const char *propname) in OF_getproplen() argument
372 return (OFW_GETPROPLEN(ofw_obj, package, propname)); in OF_getproplen()
375 /* Check existence of a property of a package. */
377 OF_hasprop(phandle_t package, const char *propname) in OF_hasprop() argument
380 return (OF_getproplen(package, propname) >= 0 ? 1 : 0); in OF_hasprop()
383 /* Get the value of a property of a package. */
385 OF_getprop(phandle_t package, const char *propname, void *buf, size_t buflen) in OF_getprop() argument
391 return (OFW_GETPROP(ofw_obj, package, propnam in OF_getprop()
444 OF_getprop_alloc(phandle_t package,const char * propname,void ** buf) OF_getprop_alloc() argument
469 OF_getprop_alloc_multi(phandle_t package,const char * propname,int elsz,void ** buf) OF_getprop_alloc_multi() argument
490 OF_getencprop_alloc(phandle_t package,const char * name,void ** buf) OF_getencprop_alloc() argument
503 OF_getencprop_alloc_multi(phandle_t package,const char * name,int elsz,void ** buf) OF_getencprop_alloc_multi() argument
530 OF_nextprop(phandle_t package,const char * previous,char * buf,size_t size) OF_nextprop() argument
541 OF_setprop(phandle_t package,const char * propname,const void * buf,size_t len) OF_setprop() argument
585 OF_package_to_path(phandle_t package,char * buf,size_t len) OF_package_to_path() argument
[all...]
/freebsd/usr.sbin/bsdconfig/share/packages/
H A Dpackages.subr62 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 Dopenfirm.c221 cell_t package; in OF_instance_to_package() member
228 return (args.package); in OF_instance_to_package()
233 OF_getproplen(phandle_t package, const char *propname) in OF_getproplen() argument
239 cell_t package; in OF_getproplen() member
245 args.package = package; in OF_getproplen()
254 OF_getprop(phandle_t package, const char *propname, void *buf, int buflen) in OF_getprop() argument
260 cell_t package; in OF_getprop() member
268 args.package = package; in OF_getprop()
279 OF_getencprop(phandle_t package, const char *propname, cell_t *buf, int buflen) in OF_getencprop() argument
282 retval = OF_getprop(package, propname, buf, buflen); in OF_getencprop()
[all …]
/freebsd/sys/contrib/dev/iwlwifi/fw/
H A Dacpi.c203 * We need at least one entry in the wifi package that in iwl_acpi_get_dsm_u8()
217 data->package.count < 2 ||
218 data->package.elements[0].type != ACPI_TYPE_INTEGER) {
223 *tbl_rev = data->package.elements[0].integer.value; in iwl_acpi_get_dsm_u32()
226 for (i = 1; i < data->package.count; i++) { in iwl_acpi_get_dsm_u32()
229 wifi_pkg = &data->package.elements[i]; in iwl_acpi_get_dsm_u32()
231 /* skip entries that are not a package with the right size */ in iwl_acpi_get_dsm_u32()
233 wifi_pkg->package.count < min_data_size || in iwl_acpi_get_dsm_u32()
234 wifi_pkg->package.count > max_data_size) in iwl_acpi_get_dsm_u32()
237 domain = &wifi_pkg->package in iwl_acpi_get_dsm_u32()
[all...]
H A Duefi.c265 struct pnvm_sku_package *package; in iwl_uefi_get_reduced_power()
269 package = iwl_uefi_get_verified_variable(trans, in iwl_uefi_step_parse()
272 sizeof(*package), in iwl_uefi_step_parse()
274 if (IS_ERR(package)) in iwl_uefi_step_parse()
275 return ERR_CAST(package); in iwl_uefi_step_parse()
278 package->rev, package->total_size, package->n_skus); in iwl_uefi_step_parse()
280 *len = package_size - sizeof(*package); in iwl_uefi_step_parse()
281 data = kmemdup(package in iwl_uefi_step_parse()
229 struct pnvm_sku_package *package; iwl_uefi_get_reduced_power() local
[all...]
/freebsd/targets/pseudo/bootstrap-packages/
H A Dbootstrap-packages.sh142 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 Dicplus-ip101ag.txt4 - 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/sqlite3/tea/
H A DpkgIndex.tcl.in2 # Tcl package index file, version 1.1
4 if {[package vsatisfies [package provide Tcl] 9.0-]} {
5 package ifneeded sqlite3 @PACKAGE_VERSION@ \
8 package ifneeded sqlite3 @PACKAGE_VERSION@ \
/freebsd/contrib/ntp/
H A DINSTALL10 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 Dsvr4_package18 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 DINSTALL13 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 …]
/freebsd/sys/powerpc/ofw/
H A Dofw_real.c87 static ssize_t ofw_real_getproplen(ofw_t, phandle_t package,
89 static ssize_t ofw_real_getprop(ofw_t, phandle_t package, const char *propname,
91 static int ofw_real_nextprop(ofw_t, phandle_t package, const char *previous,
93 static int ofw_real_setprop(ofw_t, phandle_t package, const char *propname,
99 static ssize_t ofw_real_package_to_path(ofw_t, phandle_t package, char *buf,
529 cell_t package; in ofw_real_instance_to_package() member
545 return (OUT(args.package)); in ofw_real_instance_to_package()
550 ofw_real_getproplen(ofw_t ofw, phandle_t package, const char *propname) in ofw_real_getproplen() argument
557 cell_t package; in ofw_real_getproplen() member
568 args.package = IN(package); in ofw_real_getproplen()
[all …]
/freebsd/contrib/dialog/package/
H A Ddialog.spec16 %package devel
17 Summary: Development headers/library for the dialog package.
32 This package installs as "cdialog" to avoid conflict with other packages.
35 This is the development package "cdialog", which includes the header files,
45 cp -v package/dialog.map package/%{ActualProg}.map
54 --with-package=%{ActualProg} \
98 - split-out "-devel" package
/freebsd/contrib/diff/lib/
H A Dversion-etc.c46 const char *command_name, const char *package, in version_etc_va() argument
67 fprintf (stream, "%s (%s) %s\n", command_name, package, version); in version_etc_va()
69 fprintf (stream, "%s %s\n", package, version); in version_etc_va()
169 const char *command_name, const char *package, in version_etc() argument
175 version_etc_va (stream, command_name, package, version, authors); in version_etc()
/freebsd/contrib/ncurses/
H A DMANIFEST37 ./Ada95/package/AdaCurses-doc.spec
38 ./Ada95/package/AdaCurses.spec
39 ./Ada95/package/debian/compat
40 ./Ada95/package/debian/control
41 ./Ada95/package/debian/copyright
42 ./Ada95/package/debian/docs
43 ./Ada95/package/debian/rules
44 ./Ada95/package/debian/source/format
45 ./Ada95/package/debian/watch
1011 ./package/debian-mingw/changelog
[all …]
/freebsd/sys/contrib/openzfs/scripts/
H A Dkmodtool74 %package -n akmod-${kmodname}
75 Summary: Akmod package for ${kmodname} kernel module(s)
88 This package provides the akmod package for the ${kmodname} kernel modules.
103 %package -n kmod-${kmodname}
117 This is a meta-package without payload which sole purpose is to require the
148 %package -n kmod-${kmodname}-${kernel_uname_r}
203 This package provides the ${kmodname} kernel modules built for the Linux
227 %package -n kmod-${kmodname}-devel
239 This package provides the common header files to build kernel modules
273 %package -n kmod-${kmodname}-devel-${kernel_uname_r}
[all …]

12345678910>>...26