aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/aws-c-common/source/cache.c
diff options
context:
space:
mode:
authororivej <orivej@yandex-team.ru>2022-02-10 16:44:49 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:44:49 +0300
commit718c552901d703c502ccbefdfc3c9028d608b947 (patch)
tree46534a98bbefcd7b1f3faa5b52c138ab27db75b7 /contrib/restricted/aws/aws-c-common/source/cache.c
parente9656aae26e0358d5378e5b63dcac5c8dbe0e4d0 (diff)
downloadydb-718c552901d703c502ccbefdfc3c9028d608b947.tar.gz
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/restricted/aws/aws-c-common/source/cache.c')
-rw-r--r--contrib/restricted/aws/aws-c-common/source/cache.c120
1 files changed, 60 insertions, 60 deletions
diff --git a/contrib/restricted/aws/aws-c-common/source/cache.c b/contrib/restricted/aws/aws-c-common/source/cache.c
index 058845d106..eddc4f837f 100644
--- a/contrib/restricted/aws/aws-c-common/source/cache.c
+++ b/contrib/restricted/aws/aws-c-common/source/cache.c
@@ -1,60 +1,60 @@
-/**
- * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
- * SPDX-License-Identifier: Apache-2.0.
- */
-#include <aws/common/cache.h>
-
-void aws_cache_destroy(struct aws_cache *cache) {
- AWS_PRECONDITION(cache);
- cache->vtable->destroy(cache);
-}
-
-int aws_cache_find(struct aws_cache *cache, const void *key, void **p_value) {
- AWS_PRECONDITION(cache);
- return cache->vtable->find(cache, key, p_value);
-}
-
-int aws_cache_put(struct aws_cache *cache, const void *key, void *p_value) {
- AWS_PRECONDITION(cache);
- return cache->vtable->put(cache, key, p_value);
-}
-
-int aws_cache_remove(struct aws_cache *cache, const void *key) {
- AWS_PRECONDITION(cache);
- return cache->vtable->remove(cache, key);
-}
-
-void aws_cache_clear(struct aws_cache *cache) {
- AWS_PRECONDITION(cache);
- cache->vtable->clear(cache);
-}
-
-size_t aws_cache_get_element_count(const struct aws_cache *cache) {
- AWS_PRECONDITION(cache);
- return cache->vtable->get_element_count(cache);
-}
-
-void aws_cache_base_default_destroy(struct aws_cache *cache) {
- aws_linked_hash_table_clean_up(&cache->table);
- aws_mem_release(cache->allocator, cache);
-}
-
-int aws_cache_base_default_find(struct aws_cache *cache, const void *key, void **p_value) {
- return (aws_linked_hash_table_find(&cache->table, key, p_value));
-}
-
-int aws_cache_base_default_remove(struct aws_cache *cache, const void *key) {
- /* allocated cache memory and the linked list entry will be removed in the
- * callback. */
- return aws_linked_hash_table_remove(&cache->table, key);
-}
-
-void aws_cache_base_default_clear(struct aws_cache *cache) {
- /* clearing the table will remove all elements. That will also deallocate
- * any cache entries we currently have. */
- aws_linked_hash_table_clear(&cache->table);
-}
-
-size_t aws_cache_base_default_get_element_count(const struct aws_cache *cache) {
- return aws_linked_hash_table_get_element_count(&cache->table);
-}
+/**
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ * SPDX-License-Identifier: Apache-2.0.
+ */
+#include <aws/common/cache.h>
+
+void aws_cache_destroy(struct aws_cache *cache) {
+ AWS_PRECONDITION(cache);
+ cache->vtable->destroy(cache);
+}
+
+int aws_cache_find(struct aws_cache *cache, const void *key, void **p_value) {
+ AWS_PRECONDITION(cache);
+ return cache->vtable->find(cache, key, p_value);
+}
+
+int aws_cache_put(struct aws_cache *cache, const void *key, void *p_value) {
+ AWS_PRECONDITION(cache);
+ return cache->vtable->put(cache, key, p_value);
+}
+
+int aws_cache_remove(struct aws_cache *cache, const void *key) {
+ AWS_PRECONDITION(cache);
+ return cache->vtable->remove(cache, key);
+}
+
+void aws_cache_clear(struct aws_cache *cache) {
+ AWS_PRECONDITION(cache);
+ cache->vtable->clear(cache);
+}
+
+size_t aws_cache_get_element_count(const struct aws_cache *cache) {
+ AWS_PRECONDITION(cache);
+ return cache->vtable->get_element_count(cache);
+}
+
+void aws_cache_base_default_destroy(struct aws_cache *cache) {
+ aws_linked_hash_table_clean_up(&cache->table);
+ aws_mem_release(cache->allocator, cache);
+}
+
+int aws_cache_base_default_find(struct aws_cache *cache, const void *key, void **p_value) {
+ return (aws_linked_hash_table_find(&cache->table, key, p_value));
+}
+
+int aws_cache_base_default_remove(struct aws_cache *cache, const void *key) {
+ /* allocated cache memory and the linked list entry will be removed in the
+ * callback. */
+ return aws_linked_hash_table_remove(&cache->table, key);
+}
+
+void aws_cache_base_default_clear(struct aws_cache *cache) {
+ /* clearing the table will remove all elements. That will also deallocate
+ * any cache entries we currently have. */
+ aws_linked_hash_table_clear(&cache->table);
+}
+
+size_t aws_cache_base_default_get_element_count(const struct aws_cache *cache) {
+ return aws_linked_hash_table_get_element_count(&cache->table);
+}