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

123

/freebsd-10.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-10.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-10.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-10.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:__anon6138
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:__anon6139
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:__anon6140
297 OF_nextprop(phandle_t package, char *previous, char *buf) argument
303 cell_t package; member in struct:__anon6141
324 OF_setprop(phandle_t package, char *propname, void *buf, int len) argument
330 cell_t package; member in struct:__anon6142
385 cell_t package; member in struct:__anon6144
426 OF_package_to_path(phandle_t package, char *buf, int len) argument
432 cell_t package; member in struct:__anon6146
[all...]
/freebsd-10.0-release/sys/dev/ofw/
H A Dopenfirm.c242 /* Return the package handle that corresponds to an instance handle. */
253 /* Get the length of a property of a package. */
255 OF_getproplen(phandle_t package, const char *propname) argument
261 return (OFW_GETPROPLEN(ofw_obj, package, propname));
264 /* Check existence of a property of a package. */
266 OF_hasprop(phandle_t package, const char *propname) argument
269 return (OF_getproplen(package, propname) >= 0 ? 1 : 0);
272 /* Get the value of a property of a package. */
274 OF_getprop(phandle_t package, const char *propname, void *buf, size_t buflen) argument
280 return (OFW_GETPROP(ofw_obj, package, propnam
305 OF_getprop_alloc(phandle_t package, const char *propname, int elsz, void **buf) argument
325 OF_nextprop(phandle_t package, const char *previous, char *buf, size_t size) argument
336 OF_setprop(phandle_t package, const char *propname, const void *buf, size_t len) argument
380 OF_package_to_path(phandle_t package, char *buf, size_t len) argument
[all...]
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:__anon9266
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:__anon9267
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:__anon9268
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:__anon9269
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:__anon9270
448 cell_t package; member in struct:__anon9272
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:__anon9274
[all...]
H A Dofw_fdt.c225 /* Return the package handle that corresponds to an instance handle. */
245 /* Get the length of a property of a package. */
247 ofw_fdt_getproplen(ofw_t ofw, phandle_t package, const char *propname) argument
252 offset = fdt_phandle_offset(package);
268 /* Get the value of a property of a package. */
270 ofw_fdt_getprop(ofw_t ofw, phandle_t package, const char *propname, void *buf, argument
277 offset = fdt_phandle_offset(package);
336 * Get the next property of a package. Return the actual len of retrieved
340 ofw_fdt_nextprop(ofw_t ofw, phandle_t package, const char *previous, char *buf, argument
346 offset = fdt_phandle_offset(package);
368 ofw_fdt_setprop(ofw_t ofw, phandle_t package, const char *propname, const void *buf, size_t len) argument
410 ofw_fdt_package_to_path(ofw_t ofw, phandle_t package, char *buf, size_t len) argument
[all...]
/freebsd-10.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-10.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-10.0-release/crypto/heimdal/kuser/
H A Dkuser_locl.h102 #define bindtextdomain(package, localedir)
103 #define textdomain(package)
/freebsd-10.0-release/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,
433 /* Return the package handle that corresponds to an instance handle. */
443 cell_t package; member in struct:__anon10865
446 args.name = (cell_t)(uintptr_t)"instance-to-package";
459 return (args.package);
462 /* Get the length of a property of a package
464 ofw_real_getproplen(ofw_t ofw, phandle_t package, const char *propname) argument
471 cell_t package; member in struct:__anon10866
496 ofw_real_getprop(ofw_t ofw, phandle_t package, const char *propname, void *buf, size_t buflen) argument
504 cell_t package; member in struct:__anon10867
536 ofw_real_nextprop(ofw_t ofw, phandle_t package, const char *previous, char *buf, size_t size) argument
544 cell_t package; member in struct:__anon10868
574 ofw_real_setprop(ofw_t ofw, phandle_t package, const char *propname, const void *buf, size_t len) argument
582 cell_t package; member in struct:__anon10869
657 cell_t package; member in struct:__anon10871
717 ofw_real_package_to_path(ofw_t ofw, phandle_t package, char *buf, size_t len) argument
724 cell_t package; member in struct:__anon10873
[all...]
/freebsd-10.0-release/usr.sbin/pkg_install/info/
H A Dperform.c2 * FreeBSD install - a package for the installation and maintenance
129 * Apply a crude heuristic to see how much space the package will
135 warnx("can't stat package file '%s'", fname);
147 /* It's not an uninstalled package, try and find it among the installed */
151 warnx("the package info for package '%s' is corrupt", pkg);
154 warnx("can't find package '%s' installed or in a file!", pkg);
188 /* Start showing the package contents */
328 * Look through package dbs in LOG_DIR and find which
397 if (wp->package[
[all...]
/freebsd-10.0-release/contrib/file/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-10.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 = 0; local
135 package = DI->getDef();
136 if (!isCheckerNamed(R) && !package)
138 "' is neither named, nor in a package!");
[all...]
/freebsd-10.0-release/contrib/ntp/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-10.0-release/contrib/ntp/sntp/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-10.0-release/contrib/ofed/libibcm/config/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-10.0-release/contrib/ofed/librdmacm/config/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-10.0-release/crypto/heimdal/
H A Dcompile45 If you are trying to build a whole package this is not the
/freebsd-10.0-release/contrib/dialog/
H A Ddialog-config.in110 --prefix echos the package-prefix of ${THIS}
111 --prefix=ARG sets the package-prefix of ${THIS}
/freebsd-10.0-release/contrib/dialog/package/freebsd/
H A DMakefile29 --with-package=${PORTNAME}
/freebsd-10.0-release/contrib/gperf/doc/
H A Dhelp2man171 my $package = $program;
190 # <program> ({GNU,Free} <package>) <version>
191 # <program> - {GNU,Free} <package> <version>
201 $package = $2;
207 $package = $1 ? "$1$2" : $2;
473 .TH $PROGRAM "$section" "$date" "$package $version" FSF
/freebsd-10.0-release/contrib/ncurses/misc/
H A Dncurses-config.in131 --prefix echos the package-prefix of ${THIS}
132 --prefix=ARG sets the package-prefix of ${THIS}
/freebsd-10.0-release/contrib/ofed/librdmacm/
H A Dlibrdmacm.spec19 %package devel
27 %package utils

Completed in 335 milliseconds

123