Lines Matching defs:version
57 * of identifiers below to fill in the attribute and version fields associated
61 * far. DT_VERS_LATEST must correspond to the latest version value among all
64 * You must update DT_VERS_LATEST and DT_VERS_STRING when adding a new version,
65 * and then add the new version to the _dtrace_versions[] array declared below.
83 * The version number should be increased for every customer visible release
92 * easily determined from the version number. Minor bugs do not require any
93 * modification to the version number.
704 const char *const _dtrace_version = DT_VERS_STRING; /* API version string */
705 int _dtrace_rdvers = RD_VERSION; /* rtld_db feature version */
819 dt_vopen(int version, int flags, int *errp,
843 if (version <= 0)
846 if (version > DTRACE_VERSION)
849 if (version < DTRACE_VERSION) {
851 * Currently, increasing the library version number is used to
853 * of the library cannot run on a version of the library with
858 * if the specified version number is less than the version
948 dtp->dt_version = version;
1317 dtrace_open(int version, int flags, int *errp)
1319 return (dt_vopen(version, flags, errp, NULL, NULL));
1323 dtrace_vopen(int version, int flags, int *errp,
1326 return (dt_vopen(version, flags, errp, vector, arg));