Searched refs:version (Results 351 - 375 of 4103) sorted by relevance

<<11121314151617181920>>

/external/kernel-headers/original/uapi/linux/
H A Delf-fdpic.h8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
27 Elf32_Half version; /* version of these structures, just in case... */ member in struct:elf32_fdpic_loadmap
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_l2tp.h15 __u8 version; /* L2TP protocol version */ member in struct:xt_l2tp_info
23 XT_L2TP_VERSION = (1 << 2), /* match L2TP protocol version */
/external/libvorbis/
H A Dautogen.sh3 # (based on the version in enlightenment's cvs)
17 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
40 if ($AUTOMAKE --version < /dev/null > /dev/null 2>&1); then
52 ($am --version < /dev/null > /dev/null 2>&1) || continue
53 ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP`
66 ($ac --version < /dev/null > /dev/null 2>&1) || continue
67 ver=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP`
89 ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 && break
97 ($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 || {
/external/mesa3d/src/gallium/docs/source/
H A Dconf.py43 # The version info for the project you're documenting, acts as replacement for
44 # |version| and |release|, also used in various other places throughout the
47 # The short X.Y version.
48 version = '0.4' variable
49 # The full version, including alpha/beta/rc tags.
/external/nist-pkits/
H A Dgenerate-tests.sh92 echo Writing pkits.version ...
93 echo "# sha256sum of PKITS" > pkits.version
94 shasum_file "${PDF}" >> pkits.version
95 shasum_file "${ZIP}" >> pkits.version
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSipRequestLine.java27 * Get the SIP version.
52 public abstract void setSipVersion(String version); argument
57 *@return String major version number
62 * Get the minor version number.
64 *@return String minor version number
/external/oprofile/
H A Dautogen.sh24 if $AUTOMAKE --version | grep -q 1.4
/external/pdfium/fpdfsdk/src/
H A Dfpdfoom.cpp20 if (!oomInfo || oomInfo->version!=1)
/external/pixman/pixman/
H A Dpixman-version.h31 # error pixman-version.h should only be included by pixman.h
/external/qemu/distrib/sdl-1.2.15/src/audio/mint/
H A DSDL_mintaudio_mcsn.h8 version 2 of the License, or (at your option) any later version.
34 unsigned short version; /* Version */ member in struct:__anon29386
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxwm.c9 version 2 of the License, or (at your option) any later version.
51 if (info -> version.major <= SDL_MAJOR_VERSION) {
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_tveille.h8 version 2 of the License, or (at your option) any later version.
38 unsigned long version; member in struct:__anon29624
/external/skia/experimental/pixman/
H A DPixman-version.h31 # error pixman-version.h should only be included by pixman.h
/external/skia/src/sfnt/
H A DSkOTTable_maxp_CFF.h17 SK_OT_Fixed version; member in struct:SkOTTableMaximumProfile_CFF
/external/skia/tools/
H A Dwin_dbghelp.h23 void setAppVersion(const char* version);
/external/smack/src/org/jivesoftware/smackx/entitycaps/provider/
H A DCapsExtensionProvider.java36 String version = null;
41 version = parser.getAttributeValue(null, "ver");
54 if (hash != null && version != null && node != null) {
55 return new CapsExtension(node, version, hash);
/external/smack/src/org/jivesoftware/smackx/provider/
H A DCapsExtensionProvider.java36 String version = null;
42 version = parser.getAttributeValue(null, "ver");
59 if (hash != null && version != null && node != null) {
60 return new CapsExtension(node, version, hash);
/external/tcpdump/
H A Dprint-vrrp.c7 * - print version, type string and packet length
90 int version, type, auth_type; local
94 version = (bp[0] & 0xf0) >> 4;
97 printf("VRRPv%u, %s", version, type_s);
100 if (version != 2 || type != VRRP_TYPE_ADVERTISEMENT)
/external/webrtc/src/modules/audio_processing/ns/interface/
H A Dnoise_suppression.h23 * This function returns the version number of the code.
26 * - version : Pointer to a character array where the version
28 * - length : Length of version.
33 int WebRtcNs_get_version(char* version, short length);
H A Dnoise_suppression_x.h23 * This function returns the version number of the code.
26 * - version : Pointer to a character array where the version
28 * - length : Length of version.
33 int WebRtcNsx_get_version(char* version, short length);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DCertificationRequestInfo.java19 * version INTEGER { v1(0) } (v1,...),
36 ASN1Integer version = new ASN1Integer(0); field in class:CertificationRequestInfo
78 if ((subject == null) || (version == null) || (subjectPKInfo == null))
96 if ((subject == null) || (version == null) || (subjectPKInfo == null))
108 version = (ASN1Integer)seq.getObjectAt(0);
123 if ((subject == null) || (version == null) || (subjectPKInfo == null))
131 return version;
153 v.add(version);
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_context_core.cc228 ServiceWorkerVersion* version) {
230 DCHECK(!version);
237 DCHECK(version);
238 DCHECK_EQ(version->registration_id(), registration->id());
241 version->version_id());
281 void ServiceWorkerContextCore::AddLiveVersion(ServiceWorkerVersion* version) { argument
282 DCHECK(!GetLiveVersion(version->version_id()));
283 live_versions_[version->version_id()] = version;
284 version
223 RegistrationComplete( const GURL& pattern, const ServiceWorkerContextCore::RegistrationCallback& callback, ServiceWorkerStatusCode status, ServiceWorkerRegistration* registration, ServiceWorkerVersion* version) argument
345 OnWorkerStarted(ServiceWorkerVersion* version) argument
354 OnWorkerStopped(ServiceWorkerVersion* version) argument
363 OnVersionStateChanged( ServiceWorkerVersion* version) argument
371 OnErrorReported( ServiceWorkerVersion* version, const base::string16& error_message, int line_number, int column_number, const GURL& source_url) argument
388 OnReportConsoleMessage( ServiceWorkerVersion* version, int source_identifier, int message_level, const base::string16& message, int line_number, const GURL& source_url) argument
[all...]
/external/chromium_org/net/cert/
H A Dsigned_certificate_timestamp.cc26 return lhs->version < rhs->version;
34 CHECK(pickle->WriteInt(version));
48 int version; local
56 if (!(iter->ReadInt(&version) &&
68 sct->version = static_cast<Version>(version);
/external/libnl/lib/genl/
H A Dgenl.c6 * License as published by the Free Software Foundation version 2.1
119 * @arg version Version
128 int version, int flags)
132 .version = version,
242 * @arg version protocol version
247 int hdrlen, int flags, uint8_t cmd, uint8_t version)
252 .version = version,
127 genl_send_simple(struct nl_sock *sk, int family, int cmd, int version, int flags) argument
246 genlmsg_put(struct nl_msg *msg, uint32_t pid, uint32_t seq, int family, int hdrlen, int flags, uint8_t cmd, uint8_t version) argument
[all...]
/external/smack/src/org/xbill/DNS/
H A DOPTRecord.java44 * @param version The EDNS version that this DNS implementation supports.
51 OPTRecord(int payloadSize, int xrcode, int version, int flags, List options) { argument
55 checkU8("version", version);
57 ttl = ((long)xrcode << 24) + ((long)version << 16) + flags;
71 * @param version The EDNS version that this DNS implementation supports.
76 OPTRecord(int payloadSize, int xrcode, int version, int flags) { argument
77 this(payloadSize, xrcode, version, flag
85 OPTRecord(int payloadSize, int xrcode, int version) argument
[all...]

Completed in 749 milliseconds

<<11121314151617181920>>