Lines Matching defs:version

6  * under the terms of the GNU General Public License version 2 only, as
12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
78 * Bump the version number when either of the following happens:
199 JVM_IsSupportedJNIVersion(jint version);
689 * Get the version number the JVM was built with
697 * The version passed in is the version that the library code was
701 JVM_DTraceActivate(JNIEnv* env, jint version, jstring module_name,
1160 * -3: unsupported version
1457 JVM_GetManagement(jint version);
1496 * given Java thread state. Returns NULL if the VM version is
1505 * given Java thread state. Returns NULL if the VM version is
1516 * for the JVM version and capabilities. sun.misc.Version defines
1517 * the methods for getting the VM version and its capabilities.
1525 * JVM to query for the JDK version and capabilities.
1535 /* HotSpot Express VM version string:
1545 * JDK can use these bits to determine which JVM version
1557 #define JVM_VERSION_MAJOR(version) ((version & 0xFF000000) >> 24)
1558 #define JVM_VERSION_MINOR(version) ((version & 0x00FF0000) >> 16)
1559 // Micro version is 0 in HotSpot Express VM (set in jvm.cpp).
1560 #define JVM_VERSION_MICRO(version) ((version & 0x0000FF00) >> 8)
1564 #define JVM_VERSION_BUILD(version) ((version & 0x000000FF))
1570 // Naming convention of RE build version string: n.n.n[_uu[c]][-<identifier>]-bxx
1573 unsigned int update_version : 8; /* Update release version (uu) */
1574 unsigned int special_update_version : 8; /* Special update release version (c)*/
1579 * VM implementation can use these bits to determine which JDK version
1593 #define JDK_VERSION_MAJOR(version) ((version & 0xFF000000) >> 24)
1594 #define JDK_VERSION_MINOR(version) ((version & 0x00FF0000) >> 16)
1595 #define JDK_VERSION_MICRO(version) ((version & 0x0000FF00) >> 8)
1600 #define JDK_VERSION_BUILD(version) ((version & 0x000000FF))
1611 * version of 1.1. As it is not supported otherwise, it has been removed
1615 jint version;