├── .github └── workflows │ └── build.yml ├── .gitignore ├── Makefile ├── README.md ├── project ├── rules.mk ├── settings.mk └── test.mk ├── src ├── include │ ├── aerospike │ │ ├── as_aerospike.h │ │ ├── as_arch.h │ │ ├── as_arraylist.h │ │ ├── as_arraylist_iterator.h │ │ ├── as_atomic.h │ │ ├── as_atomic_gcc.h │ │ ├── as_atomic_win.h │ │ ├── as_boolean.h │ │ ├── as_buffer.h │ │ ├── as_buffer_pool.h │ │ ├── as_bytes.h │ │ ├── as_dir.h │ │ ├── as_double.h │ │ ├── as_geojson.h │ │ ├── as_hashmap.h │ │ ├── as_hashmap_iterator.h │ │ ├── as_integer.h │ │ ├── as_iterator.h │ │ ├── as_list.h │ │ ├── as_list_iterator.h │ │ ├── as_log.h │ │ ├── as_log_macros.h │ │ ├── as_map.h │ │ ├── as_map_iterator.h │ │ ├── as_module.h │ │ ├── as_monitor.h │ │ ├── as_msgpack.h │ │ ├── as_msgpack_ext.h │ │ ├── as_msgpack_serializer.h │ │ ├── as_nil.h │ │ ├── as_orderedmap.h │ │ ├── as_pair.h │ │ ├── as_password.h │ │ ├── as_queue.h │ │ ├── as_queue_mt.h │ │ ├── as_random.h │ │ ├── as_rec.h │ │ ├── as_result.h │ │ ├── as_serializer.h │ │ ├── as_sleep.h │ │ ├── as_std.h │ │ ├── as_stream.h │ │ ├── as_string.h │ │ ├── as_string_builder.h │ │ ├── as_stringmap.h │ │ ├── as_thread.h │ │ ├── as_thread_pool.h │ │ ├── as_timer.h │ │ ├── as_types.h │ │ ├── as_udf_context.h │ │ ├── as_util.h │ │ ├── as_val.h │ │ ├── as_vector.h │ │ └── ssl_util.h │ └── citrusleaf │ │ ├── alloc.h │ │ ├── cf_b64.h │ │ ├── cf_byte_order.h │ │ ├── cf_clock.h │ │ ├── cf_crypto.h │ │ ├── cf_digest.h │ │ ├── cf_hash_math.h │ │ ├── cf_ll.h │ │ ├── cf_queue.h │ │ └── cf_random.h ├── main │ ├── aerospike │ │ ├── as_aerospike.c │ │ ├── as_arraylist.c │ │ ├── as_arraylist_hooks.c │ │ ├── as_arraylist_iterator.c │ │ ├── as_arraylist_iterator_hooks.c │ │ ├── as_boolean.c │ │ ├── as_buffer.c │ │ ├── as_buffer_pool.c │ │ ├── as_bytes.c │ │ ├── as_double.c │ │ ├── as_geojson.c │ │ ├── as_integer.c │ │ ├── as_iterator.c │ │ ├── as_list.c │ │ ├── as_log.c │ │ ├── as_map.c │ │ ├── as_module.c │ │ ├── as_msgpack.c │ │ ├── as_msgpack_ext.c │ │ ├── as_msgpack_serializer.c │ │ ├── as_nil.c │ │ ├── as_orderedmap.c │ │ ├── as_pair.c │ │ ├── as_password.c │ │ ├── as_queue.c │ │ ├── as_queue_mt.c │ │ ├── as_random.c │ │ ├── as_rec.c │ │ ├── as_result.c │ │ ├── as_serializer.c │ │ ├── as_stream.c │ │ ├── as_string.c │ │ ├── as_string_builder.c │ │ ├── as_thread_pool.c │ │ ├── as_timer.c │ │ ├── as_val.c │ │ ├── as_vector.c │ │ ├── crypt_blowfish.c │ │ ├── crypt_blowfish.h │ │ └── ssl_util.c │ └── citrusleaf │ │ ├── cf_alloc.c │ │ ├── cf_b64.c │ │ ├── cf_clock.c │ │ ├── cf_crypto.c │ │ ├── cf_digest.c │ │ ├── cf_ll.c │ │ ├── cf_queue.c │ │ └── cf_random.c └── test │ ├── common.c │ ├── msgpack │ ├── msgpack_direct.c │ └── msgpack_rountrip.c │ ├── test.c │ ├── test.h │ ├── test_common.c │ ├── test_common.h │ └── types │ ├── password.c │ ├── random.c │ ├── string_builder.c │ ├── types_arraylist.c │ ├── types_boolean.c │ ├── types_bytes.c │ ├── types_double.c │ ├── types_hashmap.c │ ├── types_integer.c │ ├── types_nil.c │ ├── types_orderedmap.c │ ├── types_queue.c │ ├── types_queue_mt.c │ └── types_string.c ├── vs ├── aerospike-common-test │ ├── aerospike-common-test.vcxproj │ ├── aerospike-common-test.vcxproj.filters │ └── packages.config ├── aerospike-common.sln ├── aerospike-common │ ├── aerospike-common.vcxproj │ ├── aerospike-common.vcxproj.filters │ └── packages.config └── props │ ├── base.props │ └── test.props └── xcode ├── aerospike-common-test.xcodeproj └── project.pbxproj ├── aerospike-common.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── aerospike-common.xcworkspace ├── contents.xcworkspacedata └── xcshareddata └── IDEWorkspaceChecks.plist /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/README.md -------------------------------------------------------------------------------- /project/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/project/rules.mk -------------------------------------------------------------------------------- /project/settings.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/project/settings.mk -------------------------------------------------------------------------------- /project/test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/project/test.mk -------------------------------------------------------------------------------- /src/include/aerospike/as_aerospike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_aerospike.h -------------------------------------------------------------------------------- /src/include/aerospike/as_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_arch.h -------------------------------------------------------------------------------- /src/include/aerospike/as_arraylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_arraylist.h -------------------------------------------------------------------------------- /src/include/aerospike/as_arraylist_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_arraylist_iterator.h -------------------------------------------------------------------------------- /src/include/aerospike/as_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_atomic.h -------------------------------------------------------------------------------- /src/include/aerospike/as_atomic_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_atomic_gcc.h -------------------------------------------------------------------------------- /src/include/aerospike/as_atomic_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_atomic_win.h -------------------------------------------------------------------------------- /src/include/aerospike/as_boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_boolean.h -------------------------------------------------------------------------------- /src/include/aerospike/as_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_buffer.h -------------------------------------------------------------------------------- /src/include/aerospike/as_buffer_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_buffer_pool.h -------------------------------------------------------------------------------- /src/include/aerospike/as_bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_bytes.h -------------------------------------------------------------------------------- /src/include/aerospike/as_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_dir.h -------------------------------------------------------------------------------- /src/include/aerospike/as_double.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_double.h -------------------------------------------------------------------------------- /src/include/aerospike/as_geojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_geojson.h -------------------------------------------------------------------------------- /src/include/aerospike/as_hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_hashmap.h -------------------------------------------------------------------------------- /src/include/aerospike/as_hashmap_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_hashmap_iterator.h -------------------------------------------------------------------------------- /src/include/aerospike/as_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_integer.h -------------------------------------------------------------------------------- /src/include/aerospike/as_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_iterator.h -------------------------------------------------------------------------------- /src/include/aerospike/as_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_list.h -------------------------------------------------------------------------------- /src/include/aerospike/as_list_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_list_iterator.h -------------------------------------------------------------------------------- /src/include/aerospike/as_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_log.h -------------------------------------------------------------------------------- /src/include/aerospike/as_log_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_log_macros.h -------------------------------------------------------------------------------- /src/include/aerospike/as_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_map.h -------------------------------------------------------------------------------- /src/include/aerospike/as_map_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_map_iterator.h -------------------------------------------------------------------------------- /src/include/aerospike/as_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_module.h -------------------------------------------------------------------------------- /src/include/aerospike/as_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_monitor.h -------------------------------------------------------------------------------- /src/include/aerospike/as_msgpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_msgpack.h -------------------------------------------------------------------------------- /src/include/aerospike/as_msgpack_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_msgpack_ext.h -------------------------------------------------------------------------------- /src/include/aerospike/as_msgpack_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_msgpack_serializer.h -------------------------------------------------------------------------------- /src/include/aerospike/as_nil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_nil.h -------------------------------------------------------------------------------- /src/include/aerospike/as_orderedmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_orderedmap.h -------------------------------------------------------------------------------- /src/include/aerospike/as_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_pair.h -------------------------------------------------------------------------------- /src/include/aerospike/as_password.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_password.h -------------------------------------------------------------------------------- /src/include/aerospike/as_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_queue.h -------------------------------------------------------------------------------- /src/include/aerospike/as_queue_mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_queue_mt.h -------------------------------------------------------------------------------- /src/include/aerospike/as_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_random.h -------------------------------------------------------------------------------- /src/include/aerospike/as_rec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_rec.h -------------------------------------------------------------------------------- /src/include/aerospike/as_result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_result.h -------------------------------------------------------------------------------- /src/include/aerospike/as_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_serializer.h -------------------------------------------------------------------------------- /src/include/aerospike/as_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_sleep.h -------------------------------------------------------------------------------- /src/include/aerospike/as_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_std.h -------------------------------------------------------------------------------- /src/include/aerospike/as_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_stream.h -------------------------------------------------------------------------------- /src/include/aerospike/as_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_string.h -------------------------------------------------------------------------------- /src/include/aerospike/as_string_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_string_builder.h -------------------------------------------------------------------------------- /src/include/aerospike/as_stringmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_stringmap.h -------------------------------------------------------------------------------- /src/include/aerospike/as_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_thread.h -------------------------------------------------------------------------------- /src/include/aerospike/as_thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_thread_pool.h -------------------------------------------------------------------------------- /src/include/aerospike/as_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_timer.h -------------------------------------------------------------------------------- /src/include/aerospike/as_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_types.h -------------------------------------------------------------------------------- /src/include/aerospike/as_udf_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_udf_context.h -------------------------------------------------------------------------------- /src/include/aerospike/as_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_util.h -------------------------------------------------------------------------------- /src/include/aerospike/as_val.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_val.h -------------------------------------------------------------------------------- /src/include/aerospike/as_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/as_vector.h -------------------------------------------------------------------------------- /src/include/aerospike/ssl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/aerospike/ssl_util.h -------------------------------------------------------------------------------- /src/include/citrusleaf/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/alloc.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_b64.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_byte_order.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_clock.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_crypto.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_digest.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_hash_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_hash_math.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_ll.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_queue.h -------------------------------------------------------------------------------- /src/include/citrusleaf/cf_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/include/citrusleaf/cf_random.h -------------------------------------------------------------------------------- /src/main/aerospike/as_aerospike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_aerospike.c -------------------------------------------------------------------------------- /src/main/aerospike/as_arraylist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_arraylist.c -------------------------------------------------------------------------------- /src/main/aerospike/as_arraylist_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_arraylist_hooks.c -------------------------------------------------------------------------------- /src/main/aerospike/as_arraylist_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_arraylist_iterator.c -------------------------------------------------------------------------------- /src/main/aerospike/as_arraylist_iterator_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_arraylist_iterator_hooks.c -------------------------------------------------------------------------------- /src/main/aerospike/as_boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_boolean.c -------------------------------------------------------------------------------- /src/main/aerospike/as_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_buffer.c -------------------------------------------------------------------------------- /src/main/aerospike/as_buffer_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_buffer_pool.c -------------------------------------------------------------------------------- /src/main/aerospike/as_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_bytes.c -------------------------------------------------------------------------------- /src/main/aerospike/as_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_double.c -------------------------------------------------------------------------------- /src/main/aerospike/as_geojson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_geojson.c -------------------------------------------------------------------------------- /src/main/aerospike/as_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_integer.c -------------------------------------------------------------------------------- /src/main/aerospike/as_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_iterator.c -------------------------------------------------------------------------------- /src/main/aerospike/as_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_list.c -------------------------------------------------------------------------------- /src/main/aerospike/as_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_log.c -------------------------------------------------------------------------------- /src/main/aerospike/as_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_map.c -------------------------------------------------------------------------------- /src/main/aerospike/as_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_module.c -------------------------------------------------------------------------------- /src/main/aerospike/as_msgpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_msgpack.c -------------------------------------------------------------------------------- /src/main/aerospike/as_msgpack_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_msgpack_ext.c -------------------------------------------------------------------------------- /src/main/aerospike/as_msgpack_serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_msgpack_serializer.c -------------------------------------------------------------------------------- /src/main/aerospike/as_nil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_nil.c -------------------------------------------------------------------------------- /src/main/aerospike/as_orderedmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_orderedmap.c -------------------------------------------------------------------------------- /src/main/aerospike/as_pair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_pair.c -------------------------------------------------------------------------------- /src/main/aerospike/as_password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_password.c -------------------------------------------------------------------------------- /src/main/aerospike/as_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_queue.c -------------------------------------------------------------------------------- /src/main/aerospike/as_queue_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_queue_mt.c -------------------------------------------------------------------------------- /src/main/aerospike/as_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_random.c -------------------------------------------------------------------------------- /src/main/aerospike/as_rec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_rec.c -------------------------------------------------------------------------------- /src/main/aerospike/as_result.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_result.c -------------------------------------------------------------------------------- /src/main/aerospike/as_serializer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_serializer.c -------------------------------------------------------------------------------- /src/main/aerospike/as_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_stream.c -------------------------------------------------------------------------------- /src/main/aerospike/as_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_string.c -------------------------------------------------------------------------------- /src/main/aerospike/as_string_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_string_builder.c -------------------------------------------------------------------------------- /src/main/aerospike/as_thread_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_thread_pool.c -------------------------------------------------------------------------------- /src/main/aerospike/as_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_timer.c -------------------------------------------------------------------------------- /src/main/aerospike/as_val.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_val.c -------------------------------------------------------------------------------- /src/main/aerospike/as_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/as_vector.c -------------------------------------------------------------------------------- /src/main/aerospike/crypt_blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/crypt_blowfish.c -------------------------------------------------------------------------------- /src/main/aerospike/crypt_blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/crypt_blowfish.h -------------------------------------------------------------------------------- /src/main/aerospike/ssl_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/aerospike/ssl_util.c -------------------------------------------------------------------------------- /src/main/citrusleaf/cf_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/citrusleaf/cf_alloc.c -------------------------------------------------------------------------------- /src/main/citrusleaf/cf_b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/citrusleaf/cf_b64.c -------------------------------------------------------------------------------- /src/main/citrusleaf/cf_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/citrusleaf/cf_clock.c -------------------------------------------------------------------------------- /src/main/citrusleaf/cf_crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/citrusleaf/cf_crypto.c -------------------------------------------------------------------------------- /src/main/citrusleaf/cf_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/citrusleaf/cf_digest.c -------------------------------------------------------------------------------- /src/main/citrusleaf/cf_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/citrusleaf/cf_ll.c -------------------------------------------------------------------------------- /src/main/citrusleaf/cf_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/citrusleaf/cf_queue.c -------------------------------------------------------------------------------- /src/main/citrusleaf/cf_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/main/citrusleaf/cf_random.c -------------------------------------------------------------------------------- /src/test/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/common.c -------------------------------------------------------------------------------- /src/test/msgpack/msgpack_direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/msgpack/msgpack_direct.c -------------------------------------------------------------------------------- /src/test/msgpack/msgpack_rountrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/msgpack/msgpack_rountrip.c -------------------------------------------------------------------------------- /src/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/test.c -------------------------------------------------------------------------------- /src/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/test.h -------------------------------------------------------------------------------- /src/test/test_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/test_common.c -------------------------------------------------------------------------------- /src/test/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/test_common.h -------------------------------------------------------------------------------- /src/test/types/password.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/password.c -------------------------------------------------------------------------------- /src/test/types/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/random.c -------------------------------------------------------------------------------- /src/test/types/string_builder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/string_builder.c -------------------------------------------------------------------------------- /src/test/types/types_arraylist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_arraylist.c -------------------------------------------------------------------------------- /src/test/types/types_boolean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_boolean.c -------------------------------------------------------------------------------- /src/test/types/types_bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_bytes.c -------------------------------------------------------------------------------- /src/test/types/types_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_double.c -------------------------------------------------------------------------------- /src/test/types/types_hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_hashmap.c -------------------------------------------------------------------------------- /src/test/types/types_integer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_integer.c -------------------------------------------------------------------------------- /src/test/types/types_nil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_nil.c -------------------------------------------------------------------------------- /src/test/types/types_orderedmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_orderedmap.c -------------------------------------------------------------------------------- /src/test/types/types_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_queue.c -------------------------------------------------------------------------------- /src/test/types/types_queue_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_queue_mt.c -------------------------------------------------------------------------------- /src/test/types/types_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/src/test/types/types_string.c -------------------------------------------------------------------------------- /vs/aerospike-common-test/aerospike-common-test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/aerospike-common-test/aerospike-common-test.vcxproj -------------------------------------------------------------------------------- /vs/aerospike-common-test/aerospike-common-test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/aerospike-common-test/aerospike-common-test.vcxproj.filters -------------------------------------------------------------------------------- /vs/aerospike-common-test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/aerospike-common-test/packages.config -------------------------------------------------------------------------------- /vs/aerospike-common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/aerospike-common.sln -------------------------------------------------------------------------------- /vs/aerospike-common/aerospike-common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/aerospike-common/aerospike-common.vcxproj -------------------------------------------------------------------------------- /vs/aerospike-common/aerospike-common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/aerospike-common/aerospike-common.vcxproj.filters -------------------------------------------------------------------------------- /vs/aerospike-common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/aerospike-common/packages.config -------------------------------------------------------------------------------- /vs/props/base.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/props/base.props -------------------------------------------------------------------------------- /vs/props/test.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/vs/props/test.props -------------------------------------------------------------------------------- /xcode/aerospike-common-test.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/xcode/aerospike-common-test.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode/aerospike-common.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/xcode/aerospike-common.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /xcode/aerospike-common.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/xcode/aerospike-common.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /xcode/aerospike-common.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/xcode/aerospike-common.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /xcode/aerospike-common.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/xcode/aerospike-common.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /xcode/aerospike-common.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aerospike/aerospike-common/HEAD/xcode/aerospike-common.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist --------------------------------------------------------------------------------