Searched refs:version (Results 51 - 75 of 1944) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_utsname.h53 char version[9]; member in struct:ibcs2_utsname
/freebsd-11-stable/sys/i386/include/
H A Dminidump.h37 uint32_t version; member in struct:minidumphdr
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-carp.c9 * - print version, type string and packet length
51 int version, type; local
55 version = (bp[0] & 0xf0) >> 4;
61 ND_PRINT((ndo, "CARPv%d-%s %d: ", version, type_s, len));
64 if (version != 2 || type != 1)
H A Dprint-openflow.c2 * This module implements printing of the very basic (version-independent)
4 * dispatching of version-specific OpenFlow message decoding.
33 /* \summary: version-independent OpenFlow printer */
70 of_header_print(netdissect_options *ndo, const uint8_t version, const uint8_t type, argument
74 version, type, length, xid));
81 uint8_t version, type; local
87 /* version */
89 version = *cp;
109 of_header_print(ndo, version, type, length, xid);
113 * type decoding is version
[all...]
H A Dprint-vrrp.c7 * - print version, type string and packet length
110 int version, type, auth_type = VRRP_AUTH_NONE; /* keep compiler happy */ local
114 version = (bp[0] & 0xf0) >> 4;
117 ND_PRINT((ndo, "VRRPv%u, %s", version, type_s));
120 if (version < 2 || version > 3 || type != VRRP_TYPE_ADVERTISEMENT)
126 if (version == 2) {
130 } else { /* version == 3 */
140 if (version == 2 && ND_TTEST2(bp[0], len)) {
152 if (version
[all...]
H A Dprint-lwapp.c45 uint8_t version; member in struct:lwapp_transport_header
188 if (LWAPP_EXTRACT_VERSION(lwapp_trans_header->version) != LWAPP_VERSION) {
189 ND_PRINT((ndo, "LWAPP version %u packet not supported",
190 LWAPP_EXTRACT_VERSION(lwapp_trans_header->version)));
197 LWAPP_EXTRACT_VERSION(lwapp_trans_header->version),
198 LWAPP_EXTRACT_CONTROL_BIT(lwapp_trans_header->version) ? "Control" : "Data",
199 bittok2str(lwapp_header_bits_values,"none",(lwapp_trans_header->version)&0x07),
208 LWAPP_EXTRACT_VERSION(lwapp_trans_header->version),
209 LWAPP_EXTRACT_CONTROL_BIT(lwapp_trans_header->version) ? "Control" : "Data",
210 LWAPP_EXTRACT_RID(lwapp_trans_header->version),
[all...]
/freebsd-11-stable/contrib/ntp/ntpdate/
H A DMakefile.am23 LDADD = version.o ../libntp/libntp.a
26 DISTCLEANFILES= .version version.c stamp-v
34 version.c: $(ntpdate_OBJECTS) ../libntp/libntp.a Makefile $(top_srcdir)/sntp/scm-rev
37 version.o: version.c
38 env CCACHE_DISABLE=1 $(COMPILE) -c version.c -o version.o
/freebsd-11-stable/usr.bin/lessecho/
H A DMakefile4 SRCS= lessecho.c version.c
/freebsd-11-stable/usr.bin/lesskey/
H A DMakefile4 SRCS= lesskey.c version.c
/freebsd-11-stable/usr.sbin/ntp/ntpdate/
H A DMakefile9 SRCS= ntpdate.c version.c
25 CLEANFILES+= .version version.c
27 version.c:
/freebsd-11-stable/contrib/elftoolchain/libelf/
H A Delf_open.c40 if (LIBELF_PRIVATE(version) == EV_NONE) {
56 if (LIBELF_PRIVATE(version) == EV_NONE) {
/freebsd-11-stable/contrib/libucl/python/
H A Dsetup.py11 if sys.version < '2.7':
23 version = '0.8', variable
/freebsd-11-stable/contrib/diff/lib/
H A Dversion-etc.c1 /* Utility to help print --version output in a consistent format.
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
25 #include "version-etc.h"
47 const char *version, va_list authors)
67 fprintf (stream, "%s (%s) %s\n", command_name, package, version);
69 fprintf (stream, "%s %s\n", package, version);
154 /* Display the --version information the standard way.
170 const char *version, /* const char *author1, ...*/ ...)
174 va_start (authors, version);
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
[all...]
/freebsd-11-stable/crypto/heimdal/lib/ntlm/
H A DMakefile.am17 libheimntlm_la_LDFLAGS = -version-info 1:0:1
20 libheimntlm_la_LDFLAGS += $(LDFLAGS_VERSION_SCRIPT)$(srcdir)/version-script.map
22 $(libheimntlm_la_OBJECTS): $(srcdir)/version-script.map
42 libheimntlm-version.rc \
44 version-script.map \
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dversion.c2 * version.c: library version number and utilities
47 builds one can use --disable-full-version-match to cause a
58 and have the same major and minor version. */
90 /* Force more relaxed check for --disable-full-version-match. */
219 svn_version_t *version;
225 _("Failed to parse version number string '%s'"),
228 version = apr_pcalloc(result_pool, sizeof(*version));
229 version
218 svn_version_t *version; local
274 svn_version__at_least(const svn_version_t *version, int major, int minor, int patch) argument
[all...]
/freebsd-11-stable/usr.bin/patch/
H A Dbackupfile.c124 make_version_name(const char *file, int version) argument
128 if (asprintf(&backup_name, "%s.~%d~", file, version) == -1)
134 * If BACKUP is a numbered backup of BASE, return its version number;
141 int version; local
144 version = 0;
147 version = version * 10 + *p - '0';
149 version = 0;
151 return version;
234 get_version(const char *version) argument
[all...]
/freebsd-11-stable/contrib/libreadline/support/
H A Dmkdist5 # usage: mkdist [-m manifest] [-s srcdir] [-r rootname] [-v] version
17 # the Free Software Foundation; either version 2, or (at your option)
18 # any later version.
34 echo usage: mkdist [-m manifest] [-s srcdir] [-r rootname] [-v] version 1>&2
66 version=$1
67 newdir=${ROOTNAME}-$version
69 vmsg creating distribution for $ROOTNAME version $version in $newdir
101 # numeric version
102 #version
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_exceptions.cpp22 typedef _Unwind_Reason_Code PersonalityFn(int version, _Unwind_Action actions,
36 __hwasan_personality_wrapper(int version, _Unwind_Action actions, argument
44 rc = real_personality(version, actions, exception_class, unwind_exception,
/freebsd-11-stable/include/rpcsvc/
H A Drnusers.x82 * Old version does not include idle information
84 version RUSERSVERS_ORIG {
98 version RUSERSVERS_IDLE {
113 version RUSERSVERS_3 {
H A Dnis_callback.x70 version CB_VERS {
/freebsd-11-stable/contrib/ntp/scripts/build/
H A DcheckHtmlFileDates3 bk version > /dev/null 2>&1 || exit 0
/freebsd-11-stable/contrib/groff/src/roff/grog/
H A Dgrog.sh19 -v | --version)
20 echo "GNU grog (groff) version @VERSION@"
/freebsd-11-stable/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_misc.c51 snprintf(utsname.version, sizeof(utsname.version), "%d", osreldate);
/freebsd-11-stable/contrib/xz/src/liblzma/common/
H A Dstream_flags_common.c24 // We can compare only version 0 structures.
25 if (a->version != 0 || b->version != 0)
/freebsd-11-stable/crypto/openssl/util/
H A Dmkrc.pl12 $version = "$v1.$v2.$v3";
13 if ($beta==0xf) { $version .= chr(ord('a')+$v4-1) if ($v4); }
14 elsif ($beta==0){ $version .= "-dev"; }
15 else { $version .= "-beta$beta"; }
53 VALUE "FileVersion", "$version\\0"
57 VALUE "ProductVersion", "$version\\0"

Completed in 477 milliseconds

1234567891011>>