Home
last modified time | relevance | path

Searched refs:grpc_avl_node (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc/src/core/lib/avl/
Davl.cc38 static grpc_avl_node* ref_node(grpc_avl_node* node) { in ref_node()
45 static void unref_node(const grpc_avl_vtable* vtable, grpc_avl_node* node, in unref_node()
59 static long node_height(grpc_avl_node* node) { in node_height()
64 static long calculate_height(grpc_avl_node* node) { in calculate_height()
70 static grpc_avl_node* assert_invariants(grpc_avl_node* n) { in assert_invariants()
79 static grpc_avl_node* assert_invariants(grpc_avl_node* n) { return n; } in assert_invariants()
82 grpc_avl_node* new_node(void* key, void* value, grpc_avl_node* left, in new_node()
83 grpc_avl_node* right) { in new_node()
84 grpc_avl_node* node = static_cast<grpc_avl_node*>(gpr_malloc(sizeof(*node))); in new_node()
94 static grpc_avl_node* get(const grpc_avl_vtable* vtable, grpc_avl_node* node, in get()
[all …]
Davl.h27 typedef struct grpc_avl_node { struct
31 struct grpc_avl_node* left; argument
32 struct grpc_avl_node* right; argument
34 } grpc_avl_node; typedef
60 grpc_avl_node* root;
/external/grpc-grpc/src/core/tsi/ssl/session_cache/
Dssl_session_cache.cc185 static size_t calculate_tree_size(grpc_avl_node* node) { in calculate_tree_size()