Searched refs:package (Results 1 - 25 of 131) sorted by relevance

123456

/freebsd-11.0-release/contrib/ofed/management/
H A Dgen_ver.sh18 package=$1
22 conf_file=$package/configure.in
23 version=`cat $conf_file | sed -ne '/AC_INIT.*'$package'.*/s/^AC_INIT.*'$package', \(.*\),.*$/\1/p'`
25 git diff --quiet $package-$version..HEAD -- $package > /dev/null 2>&1
33 git diff-index --quiet HEAD -- $package > /dev/null 2>&1
/freebsd-11.0-release/contrib/xz/src/common/
H A Dtuklib_gettext.h29 # define tuklib_gettext_init(package, localedir) \
32 bindtextdomain(package, localedir); \
33 textdomain(package); \
37 # define tuklib_gettext_init(package, localedir) \
/freebsd-11.0-release/contrib/diff/lib/
H A Dversion-etc.h29 const char *command_name, const char *package,
33 const char *command_name, const char *package,
H A Dversion-etc.c46 const char *command_name, const char *package,
67 fprintf (stream, "%s (%s) %s\n", command_name, package, version);
69 fprintf (stream, "%s %s\n", package, version);
169 const char *command_name, const char *package,
175 version_etc_va (stream, command_name, package, version, authors);
45 version_etc_va(FILE *stream, const char *command_name, const char *package, const char *version, va_list authors) argument
168 version_etc(FILE *stream, const char *command_name, const char *package, const char *version, ...) argument
/freebsd-11.0-release/usr.sbin/bsdconfig/examples/
H A Dadd_some_packages.sh11 for package in wget bash rsync; do
/freebsd-11.0-release/sys/boot/ofw/libofw/
H A Dopenfirm.c221 /* Return the package handle that corresponds to an instance handle. */
230 cell_t package; member in struct:__anon7531
232 (cell_t)"instance-to-package",
240 return (args.package);
243 /* Get the length of a property of a package. */
245 OF_getproplen(phandle_t package, char *propname) argument
251 cell_t package; member in struct:__anon7532
260 args.package = package;
267 /* Get the value of a property of a package
269 OF_getprop(phandle_t package, char *propname, void *buf, int buflen) argument
275 cell_t package; member in struct:__anon7533
297 OF_nextprop(phandle_t package, char *previous, char *buf) argument
303 cell_t package; member in struct:__anon7534
324 OF_setprop(phandle_t package, char *propname, void *buf, int len) argument
330 cell_t package; member in struct:__anon7535
385 cell_t package; member in struct:__anon7537
426 OF_package_to_path(phandle_t package, char *buf, int len) argument
432 cell_t package; member in struct:__anon7539
[all...]
/freebsd-11.0-release/lib/libstand/
H A Dpkgfs.c106 struct package;
110 struct package *tf_pkg;
120 struct package struct
122 struct package *pkg_chain;
131 static struct package *package = NULL; variable in typeref:struct:package
133 static int new_package(int, struct package **);
138 struct package *chain;
141 while (package != NULL) {
142 inflateEnd(&package
[all...]
/freebsd-11.0-release/sys/dev/ofw/
H A Dofw_standard.c81 static ssize_t ofw_std_getproplen(ofw_t ofw, phandle_t package,
83 static ssize_t ofw_std_getprop(ofw_t ofw, phandle_t package,
85 static int ofw_std_nextprop(ofw_t ofw, phandle_t package, const char *previous,
87 static int ofw_std_setprop(ofw_t ofw, phandle_t package, const char *propname,
94 static ssize_t ofw_std_package_to_path(ofw_t ofw, phandle_t package, char *buf,
281 /* Return the package handle that corresponds to an instance handle. */
290 cell_t package; member in struct:__anon11385
292 (cell_t)"instance-to-package",
300 return (args.package);
303 /* Get the length of a property of a package
305 ofw_std_getproplen(ofw_t ofw, phandle_t package, const char *propname) argument
311 cell_t package; member in struct:__anon11386
329 ofw_std_getprop(ofw_t ofw, phandle_t package, const char *propname, void *buf, size_t buflen) argument
336 cell_t package; member in struct:__anon11387
358 ofw_std_nextprop(ofw_t ofw, phandle_t package, const char *previous, char *buf, size_t size) argument
365 cell_t package; member in struct:__anon11388
386 ofw_std_setprop(ofw_t ofw, phandle_t package, const char *propname, const void *buf, size_t len) argument
393 cell_t package; member in struct:__anon11389
448 cell_t package; member in struct:__anon11391
489 ofw_std_package_to_path(ofw_t ofw, phandle_t package, char *buf, size_t len) argument
495 cell_t package; member in struct:__anon11393
[all...]
H A Dofw_fdt.c205 /* Return the package handle that corresponds to an instance handle. */
214 /* Get the length of a property of a package. */
216 ofw_fdt_getproplen(ofw_t ofw, phandle_t package, const char *propname) argument
221 offset = fdt_phandle_offset(package);
247 /* Get the value of a property of a package. */
249 ofw_fdt_getprop(ofw_t ofw, phandle_t package, const char *propname, void *buf, argument
257 offset = fdt_phandle_offset(package);
294 * Get the next property of a package. Return values:
295 * -1: package or previous property does not exist
300 ofw_fdt_nextprop(ofw_t ofw, phandle_t package, cons argument
344 ofw_fdt_setprop(ofw_t ofw, phandle_t package, const char *propname, const void *buf, size_t len) argument
391 ofw_fdt_package_to_path(ofw_t ofw, phandle_t package, char *buf, size_t len) argument
[all...]
H A Dopenfirm.c347 /* Return the package handle that corresponds to an instance handle. */
358 /* Get the length of a property of a package. */
360 OF_getproplen(phandle_t package, const char *propname) argument
366 return (OFW_GETPROPLEN(ofw_obj, package, propname));
369 /* Check existence of a property of a package. */
371 OF_hasprop(phandle_t package, const char *propname) argument
374 return (OF_getproplen(package, propname) >= 0 ? 1 : 0);
377 /* Get the value of a property of a package. */
379 OF_getprop(phandle_t package, const char *propname, void *buf, size_t buflen) argument
385 return (OFW_GETPROP(ofw_obj, package, propnam
439 OF_getprop_alloc(phandle_t package, const char *propname, int elsz, void **buf) argument
458 OF_getencprop_alloc(phandle_t package, const char *name, int elsz, void **buf) argument
489 OF_nextprop(phandle_t package, const char *previous, char *buf, size_t size) argument
500 OF_setprop(phandle_t package, const char *propname, const void *buf, size_t len) argument
544 OF_package_to_path(phandle_t package, char *buf, size_t len) argument
[all...]
/freebsd-11.0-release/contrib/openpam/
H A Dmkpkgng.in75 [ -n "$pkgabi" ] || error "Unable to determine package ABI."
78 # Determine package name and version
80 package="@PACKAGE@"
104 tmproot=$(mktemp -d "${TMPDIR:-/tmp}/$package-$version.XXXXXX")
123 name: $package
125 origin: local/$package
158 # Create the package
160 info "Creating the package."
166 info "Package created for $package-$version."
/freebsd-11.0-release/contrib/apr-util/
H A Dapr-util.spec22 %package devel
29 This package provides the support files which can be used to
34 %package dbm
41 This package provides the DBM driver for the apr-util.
43 %package pgsql
50 This package provides the PostgreSQL driver for the apr-util
53 %package mysql
60 This package provides the MySQL driver for the apr-util DBD
63 %package sqlite
70 This package provide
[all...]
/freebsd-11.0-release/release/scripts/
H A Dmtree-to-plist.awk26 tags="package=kernel"
33 if (tags ~ /package=/) {
37 if (a[i] ~ /^package=/) {
39 gsub(/package=/, "", pkgname)
/freebsd-11.0-release/crypto/heimdal/kuser/
H A Dkuser_locl.h102 #define bindtextdomain(package, localedir)
103 #define textdomain(package)
/freebsd-11.0-release/share/mk/
H A Dbsd.links.mk9 TAGS+= package=${PACKAGE}
/freebsd-11.0-release/share/sendmail/
H A DMakefile29 ${INSTALL} -T package=${PACKAGE:Usendmail} ${TAGS_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 -d ${DDIR}/${dir}
32 ${INSTALL} -T package=${PACKAGE:Usendmail} ${TAGS_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 ${SENDMAIL_DIR}/${file} ${DDIR}/${file}
/freebsd-11.0-release/sys/powerpc/ofw/
H A Dofw_real.c86 static ssize_t ofw_real_getproplen(ofw_t, phandle_t package,
88 static ssize_t ofw_real_getprop(ofw_t, phandle_t package, const char *propname,
90 static int ofw_real_nextprop(ofw_t, phandle_t package, const char *previous,
92 static int ofw_real_setprop(ofw_t, phandle_t package, const char *propname,
98 static ssize_t ofw_real_package_to_path(ofw_t, phandle_t package, char *buf,
432 /* Return the package handle that corresponds to an instance handle. */
442 cell_t package; member in struct:__anon13190
445 args.name = (cell_t)(uintptr_t)"instance-to-package";
458 return (args.package);
461 /* Get the length of a property of a package
463 ofw_real_getproplen(ofw_t ofw, phandle_t package, const char *propname) argument
470 cell_t package; member in struct:__anon13191
495 ofw_real_getprop(ofw_t ofw, phandle_t package, const char *propname, void *buf, size_t buflen) argument
503 cell_t package; member in struct:__anon13192
535 ofw_real_nextprop(ofw_t ofw, phandle_t package, const char *previous, char *buf, size_t size) argument
543 cell_t package; member in struct:__anon13193
573 ofw_real_setprop(ofw_t ofw, phandle_t package, const char *propname, const void *buf, size_t len) argument
581 cell_t package; member in struct:__anon13194
656 cell_t package; member in struct:__anon13196
716 ofw_real_package_to_path(ofw_t ofw, phandle_t package, char *buf, size_t len) argument
723 cell_t package; member in struct:__anon13198
[all...]
/freebsd-11.0-release/contrib/ntp/scripts/calc_tickadj/
H A Dcalc_tickadj.in6 package calc_tickadj;
/freebsd-11.0-release/contrib/ntp/scripts/ntp-wait/
H A Dntp-wait.in3 package ntp_wait;
/freebsd-11.0-release/release/
H A DMakefile.vm48 cw${_CW:tl}-package
49 CLOUDPACKAGE+= cw${_CW:tl}-package
64 cw${_CW:tl}-package:
67 .if exists(${.CURDIR}/tools/${_CW:tl}-package.sh)
69 ${.CURDIR}/tools/${_CW:tl}-package.sh \
/freebsd-11.0-release/crypto/heimdal/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-11.0-release/contrib/ofed/libibcm/config/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-11.0-release/contrib/ofed/librdmacm/config/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-11.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangSACheckersEmitter.cpp26 /// \brief True if it is specified hidden or a parent package is specified
31 // Not declared as hidden, check the parent package if it is hidden.
83 static void addPackageToCheckerGroup(const Record *package, const Record *group, argument
85 llvm::DenseSet<const Record *> &checkers = recordGroupMap[package]->Checkers;
90 llvm::DenseSet<const Record *> &subGroups = recordGroupMap[package]->SubGroups;
103 // Invert the mapping of checkers to package/group into a one to many
132 Record *package = nullptr; local
135 package = DI->getDef();
136 if (!isCheckerNamed(R) && !package)
138 "' is neither named, nor in a package!");
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/
H A DGoLanguageRuntime.cpp80 ValueObjectSP package = GetChild(*uncommon, "pkgpath"); local
81 if (name && name->GetPointerValue() != 0 && package && package->GetPointerValue() != 0)
83 ConstString package_const_str = ReadString(*package, process);

Completed in 137 milliseconds

123456