/external/grpc-grpc/src/core/lib/security/security_connector/ |
D | security_connector.cc | 153 if (sc == nullptr || other == nullptr) return GPR_ICMP(sc, other); in grpc_security_connector_cmp() 154 int c = GPR_ICMP(sc->vtable, other->vtable); in grpc_security_connector_cmp() 163 int c = GPR_ICMP(sc1->channel_creds, sc2->channel_creds); in grpc_channel_security_connector_cmp() 165 c = GPR_ICMP(sc1->request_metadata_creds, sc2->request_metadata_creds); in grpc_channel_security_connector_cmp() 167 c = GPR_ICMP((void*)sc1->check_call_host, (void*)sc2->check_call_host); in grpc_channel_security_connector_cmp() 169 c = GPR_ICMP((void*)sc1->cancel_check_call_host, in grpc_channel_security_connector_cmp() 172 return GPR_ICMP((void*)sc1->add_handshakers, (void*)sc2->add_handshakers); in grpc_channel_security_connector_cmp() 179 int c = GPR_ICMP(sc1->server_creds, sc2->server_creds); in grpc_server_security_connector_cmp() 181 return GPR_ICMP((void*)sc1->add_handshakers, (void*)sc2->add_handshakers); in grpc_server_security_connector_cmp() 460 c = GPR_ICMP(c1->expected_targets, c2->expected_targets); [all …]
|
/external/grpc-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()
|
D | resource_quota.cc | 739 static int rq_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in rq_cmp()
|
/external/grpc-grpc/src/core/lib/channel/ |
D | channel_args.cc | 140 int c = GPR_ICMP(a->type, b->type); in cmp_arg() 148 return GPR_ICMP(a->value.integer, b->value.integer); in cmp_arg() 150 c = GPR_ICMP(a->value.pointer.p, b->value.pointer.p); in cmp_arg() 152 c = GPR_ICMP(a->value.pointer.vtable, b->value.pointer.vtable); in cmp_arg() 169 if (c == 0) c = GPR_ICMP(*a, *b); in cmp_key_stable() 316 int c = GPR_ICMP(a->num_args, b->num_args); in grpc_channel_args_compare()
|
/external/grpc-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()
|
/external/grpc-grpc/src/core/lib/slice/ |
D | slice_hash_table.h | 94 static int DefaultValueCmp(const T& a, const T& b) { return GPR_ICMP(a, b); } in DefaultValueCmp() 179 const int value_fns_cmp = GPR_ICMP((void*)value_cmp_a, (void*)value_cmp_b); in Cmp()
|
/external/grpc-grpc/src/core/lib/security/credentials/ |
D | credentials.cc | 158 static int credentials_pointer_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in credentials_pointer_cmp() 254 return GPR_ICMP(a, b); in server_credentials_pointer_cmp()
|
/external/grpc-grpc/src/core/lib/gpr/ |
D | useful.h | 60 #define GPR_ICMP(a, b) ((a) < (b) ? -1 : ((a) > (b) ? 1 : 0)) macro
|
/external/grpc-grpc/test/core/iomgr/ |
D | socket_utils_test.cc | 74 return GPR_ICMP(ma->option_value, mb->option_value); in compare_test_mutator()
|
D | udp_server_test.cc | 152 return GPR_ICMP(a, b); in test_socket_factory_compare()
|
/external/grpc-grpc/src/core/ext/filters/client_channel/ |
D | client_channel_channelz.cc | 38 int client_channel_channelz_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in client_channel_channelz_cmp()
|
D | subchannel_index.cc | 78 int c = GPR_ICMP(a->args.filter_count, b->args.filter_count); in grpc_subchannel_key_compare()
|
/external/grpc-grpc/test/core/slice/ |
D | slice_hash_table_test.cc | 131 return GPR_ICMP(a.get(), b.get()); in PointerCmp()
|
/external/grpc-grpc/test/core/channel/ |
D | channel_args_test.cc | 169 static int fake_pointer_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in fake_pointer_cmp()
|
/external/grpc-grpc/src/core/ext/filters/client_channel/resolver/fake/ |
D | fake_resolver.cc | 231 static int response_generator_cmp(void* a, void* b) { return GPR_ICMP(a, b); } in response_generator_cmp()
|
/external/grpc-grpc/test/cpp/common/ |
D | channel_arguments_test.cc | 55 return GPR_ICMP(a, b); in test_mutator_compare()
|
/external/grpc-grpc/src/core/lib/security/context/ |
D | security_context.cc | 318 static int auth_context_pointer_cmp(void* a, void* b) { return GPR_ICMP(a, b); }
|