Home
last modified time | relevance | path

Searched refs:FDB_API_VERSION (Results 1 – 18 of 18) sorted by relevance

/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/bindings/c/foundationdb/
H A Dfdb_c.h30 #if !defined(FDB_API_VERSION)
32 #elif FDB_API_VERSION < 13
34 #elif FDB_API_VERSION > 610
83 #if FDB_API_VERSION >= 14
118 #if FDB_API_VERSION >= 23
135 #if FDB_API_VERSION >= 14
161 #if FDB_API_VERSION >= 14
172 #if FDB_API_VERSION >= 14
178 #if FDB_API_VERSION >= 14
285 #if FDB_API_VERSION < 23
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/bindings/bindingtester/tests/
H A Dtuple.py27 from bindingtester import FDB_API_VERSION
32 fdb.api_version(FDB_API_VERSION)
H A Ddirectory_util.py26 from bindingtester import FDB_API_VERSION
32 fdb.api_version(FDB_API_VERSION)
H A Ddirectory_hca.py25 from bindingtester import FDB_API_VERSION
31 fdb.api_version(FDB_API_VERSION)
H A D__init__.py27 from bindingtester import FDB_API_VERSION
30 fdb.api_version(FDB_API_VERSION)
H A Dtest_util.py31 from bindingtester import FDB_API_VERSION
36 def __init__(self, max_int_bits=64, api_version=FDB_API_VERSION, types=COMMON_TYPES):
H A Ddirectory.py25 from bindingtester import FDB_API_VERSION
33 fdb.api_version(FDB_API_VERSION)
H A Dscripted.py25 from bindingtester import FDB_API_VERSION
31 fdb.api_version(FDB_API_VERSION)
H A Dapi.py27 from bindingtester import FDB_API_VERSION
32 fdb.api_version(FDB_API_VERSION)
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/bindings/c/test/
H A Dtest.h29 #ifndef FDB_API_VERSION
30 #define FDB_API_VERSION 610 macro
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/bindings/bindingtester/
H A D__init__.py29 FDB_API_VERSION = 610 variable
H A Dbindingtester.py43 from bindingtester import FDB_API_VERSION
54 fdb.api_version(FDB_API_VERSION)
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/bindings/c/
H A Dfdb_c.cpp21 #define FDB_API_VERSION 610 macro
654 if (header_version > FDB_API_VERSION) in fdb_select_api_version_impl()
695 return FDB_API_VERSION; in fdb_get_max_api_version()
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/bindings/flow/
H A Dfdb_flow.h26 #define FDB_API_VERSION 610 macro
H A Dfdb_flow.actor.cpp226 if(apiVersion < 500 || apiVersion > FDB_API_VERSION) { in selectAPIVersion()
230 throw_on_error( fdb_select_api_version_impl(apiVersion, FDB_API_VERSION) ); in selectAPIVersion()
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/documentation/sphinx/source/
H A Dapi-c.rst118 Prior to including ``fdb_c.h``, you must define the :macro:`FDB_API_VERSION` macro. This, together …
120 #define FDB_API_VERSION 610
125 …API functions. :data:`version` must be less than or equal to :macro:`FDB_API_VERSION` (and should …
127 … pass the version requested by the application, instead of always passing :macro:`FDB_API_VERSION`.
129 …Passing a version less than :macro:`FDB_API_VERSION` will cause the API to behave as it did in the…
139 …``fdb_select_api_version(v)`` is equivalent to ``fdb_select_api_version_impl(v, FDB_API_VERSION)``.
155 …Returns ``FDB_API_VERSION``, the current version of the FoundationDB C API. This is the maximum v…
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/bindings/java/
H A DfdbJNI.cpp24 #define FDB_API_VERSION 610 macro
941 if(FDB_API_VERSION > maxSupportedVersion) { in Java_com_apple_foundationdb_FDB_Select_1API_1version()
945 FDB_API_VERSION, maxSupportedVersion); in Java_com_apple_foundationdb_FDB_Select_1API_1version()
/dports/security/vault/vault-1.8.2/vendor/github.com/apple/foundationdb/bindings/flow/tester/
H A DTester.actor.cpp1528 ASSERT(fdb->getAPIVersion() <= FDB_API_VERSION); in call()