/third_party/grpc/src/core/lib/security/security_connector/ |
D | security_connector.cc | 63 if (sc == nullptr || other == nullptr) return GPR_ICMP(sc, other); in grpc_security_connector_cmp() 73 int c = GPR_ICMP(channel_creds(), other_sc->channel_creds()); in channel_security_connector_cmp() 75 return GPR_ICMP(request_metadata_creds(), other_sc->request_metadata_creds()); in channel_security_connector_cmp() 84 return GPR_ICMP(server_creds(), other_sc->server_creds()); in server_security_connector_cmp()
|
D | ssl_utils.cc | 502 return GPR_ICMP(p, q); in grpc_ssl_session_cache_arg_cmp()
|
/third_party/grpc/src/core/lib/iomgr/ |
D | socket_mutator.cc | 46 int c = GPR_ICMP(a, b); in grpc_socket_mutator_compare() 50 c = GPR_ICMP(sma->vtable, smb->vtable); in grpc_socket_mutator_compare()
|
D | socket_factory_posix.cc | 50 int c = GPR_ICMP(a, b); in grpc_socket_factory_compare() 54 c = GPR_ICMP(sma->vtable, smb->vtable); in grpc_socket_factory_compare()
|
/third_party/grpc/src/core/lib/channel/ |
D | channel_args.cc | 148 int c = GPR_ICMP(a->type, b->type); in cmp_arg() 156 return GPR_ICMP(a->value.integer, b->value.integer); in cmp_arg() 158 c = GPR_ICMP(a->value.pointer.p, b->value.pointer.p); in cmp_arg() 160 c = GPR_ICMP(a->value.pointer.vtable, b->value.pointer.vtable); in cmp_arg() 177 if (c == 0) c = GPR_ICMP(*a, *b); in cmp_key_stable() 227 int c = GPR_ICMP(a->num_args, b->num_args); in grpc_channel_args_compare()
|
/third_party/grpc/src/core/lib/surface/ |
D | channel_init.cc | 72 int c = GPR_ICMP(sa->priority, sb->priority); in compare_slots() 74 return GPR_ICMP(sa->insertion_order, sb->insertion_order); in compare_slots()
|
D | channel.cc | 183 int channelz_node_cmp(void* p1, void* p2) { return GPR_ICMP(p1, p2); } in channelz_node_cmp()
|
/third_party/grpc/src/core/lib/security/credentials/ |
D | credentials.cc | 62 static int credentials_pointer_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in credentials_pointer_cmp() 130 return GPR_ICMP(a, b); in server_credentials_pointer_cmp()
|
/third_party/grpc/src/core/lib/slice/ |
D | slice_hash_table.h | 88 static int DefaultValueCmp(const T& a, const T& b) { return GPR_ICMP(a, b); } in DefaultValueCmp() 173 const int value_fns_cmp = GPR_ICMP((void*)value_cmp_a, (void*)value_cmp_b); in Cmp()
|
/third_party/grpc/src/core/ext/filters/client_channel/ |
D | client_channel_factory.cc | 34 return GPR_ICMP(factory1, factory2); in factory_arg_cmp()
|
D | config_selector.cc | 37 int ConfigSelectorArgCmp(void* p, void* q) { return GPR_ICMP(p, q); } in ConfigSelectorArgCmp()
|
D | subchannel_pool_interface.cc | 75 int arg_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in arg_cmp()
|
D | server_address.h | 131 return GPR_ICMP(weight_, other_locality_attr->weight_); in Cmp()
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/ |
D | grpclb_balancer_addresses.cc | 45 return GPR_ICMP(address_list1, address_list2); in BalancerAddressesArgCmp()
|
/third_party/grpc/src/core/lib/gpr/ |
D | useful.h | 60 #define GPR_ICMP(a, b) ((a) < (b) ? -1 : ((a) > (b) ? 1 : 0)) macro
|
/third_party/grpc/src/core/lib/security/security_connector/fake/ |
D | fake_security_connector.cc | 90 c = GPR_ICMP(expected_targets_, other->expected_targets_); in cmp() 95 return GPR_ICMP(is_lb_channel_, other->is_lb_channel_); in cmp()
|
/third_party/grpc/test/core/iomgr/ |
D | socket_utils_test.cc | 75 return GPR_ICMP(ma->option_value, mb->option_value); in compare_test_mutator()
|
D | udp_server_test.cc | 154 return GPR_ICMP(a, b); in test_socket_factory_compare()
|
/third_party/grpc/test/core/channel/ |
D | channel_args_test.cc | 74 static int fake_pointer_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in fake_pointer_cmp()
|
/third_party/grpc/src/core/ext/xds/ |
D | xds_client_stats.h | 49 if (lhs == nullptr || rhs == nullptr) return GPR_ICMP(lhs, rhs); in operator()
|
D | xds_certificate_provider.cc | 382 int XdsCertificateProviderArgCmp(void* p, void* q) { return GPR_ICMP(p, q); } in XdsCertificateProviderArgCmp()
|
/third_party/grpc/test/core/slice/ |
D | slice_hash_table_test.cc | 133 return GPR_ICMP(a.get(), b.get()); in PointerCmp()
|
/third_party/grpc/test/cpp/common/ |
D | channel_arguments_test.cc | 56 return GPR_ICMP(a, b); in test_mutator_compare()
|
/third_party/grpc/src/core/ext/filters/client_channel/resolver/fake/ |
D | fake_resolver.cc | 333 static int response_generator_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in response_generator_cmp()
|
/third_party/grpc/src/core/lib/security/context/ |
D | security_context.cc | 291 static int auth_context_pointer_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in auth_context_pointer_cmp()
|