/third_party/grpc/src/core/tsi/ |
D | transport_security.cc | 311 tsi_peer_destroy_list_property(self->properties, self->property_count); in tsi_peer_destruct() 314 self->property_count = 0; in tsi_peer_destruct() 347 tsi_result tsi_construct_peer(size_t property_count, tsi_peer* peer) { in tsi_construct_peer() argument 349 if (property_count > 0) { in tsi_construct_peer() 351 gpr_zalloc(property_count * sizeof(tsi_peer_property))); in tsi_construct_peer() 352 peer->property_count = property_count; in tsi_construct_peer() 361 for (i = 0; i < peer->property_count; i++) { in tsi_peer_get_property_by_name()
|
D | ssl_transport_security.cc | 432 size_t property_count; in peer_from_x509() local 435 property_count = (include_certificate_type ? static_cast<size_t>(1) : 0) + in peer_from_x509() 442 property_count += 1; in peer_from_x509() 445 result = tsi_construct_peer(property_count, peer); in peer_from_x509() 476 GPR_ASSERT((int)peer->property_count == current_insert_index); in peer_from_x509() 1251 size_t new_property_count = peer->property_count + 3; in ssl_handshaker_result_extract_peer() 1256 for (size_t i = 0; i < peer->property_count; i++) { in ssl_handshaker_result_extract_peer() 1264 peer_chain, &peer->properties[peer->property_count]); in ssl_handshaker_result_extract_peer() 1265 if (result == TSI_OK) peer->property_count++; in ssl_handshaker_result_extract_peer() 1271 &peer->properties[peer->property_count]); in ssl_handshaker_result_extract_peer() [all …]
|
D | transport_security.h | 111 tsi_result tsi_construct_peer(size_t property_count, tsi_peer* peer);
|
D | transport_security_interface.h | 218 size_t property_count; member
|
/third_party/grpc/src/core/lib/security/security_connector/local/ |
D | local_security_connector.cc | 59 GPR_ASSERT(peer->property_count == 1); in local_auth_context_create() 114 size_t new_property_count = peer.property_count + 1; in local_check_peer() 117 for (size_t i = 0; i < peer.property_count; i++) { in local_check_peer() 127 &peer.properties[peer.property_count]); in local_check_peer() 129 peer.property_count++; in local_check_peer()
|
/third_party/grpc/src/core/lib/security/security_connector/ |
D | ssl_utils.cc | 265 GPR_ASSERT(peer->property_count >= 1); in grpc_ssl_peer_to_auth_context() 275 for (i = 0; i < peer->property_count; i++) { in grpc_ssl_peer_to_auth_context() 338 tsi_peer_property* tsi_prop = &peer->properties[peer->property_count++]; in add_shallow_auth_property_to_peer()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtins.c | 376 size_t property_count = ecma_builtin_get_property_count (obj_builtin_id); in ecma_instantiate_builtin() local 378 if (property_count > 32) in ecma_instantiate_builtin() 382 JERRY_ASSERT (property_count <= (32 + 64)); in ecma_instantiate_builtin() 420 if (property_count > 32) in ecma_instantiate_builtin()
|
/third_party/grpc/test/core/tsi/ |
D | ssl_transport_security_test.cc | 257 for (size_t i = 0; i < peer->property_count; i++) { in check_subject_alt_name() 271 for (size_t i = 0; i < peer->property_count; i++) { in check_uri() 308 GPR_ASSERT(peer->property_count == in check_client_peer() 900 GPR_ASSERT(peer.property_count == expected_property_count); in ssl_tsi_test_extract_x509_subject_names()
|
/third_party/node/src/ |
D | js_native_api.h | 229 size_t property_count, 284 size_t property_count,
|
D | js_native_api_v8.cc | 807 size_t property_count, in napi_define_class() argument 814 if (property_count > 0) { in napi_define_class() 830 for (size_t i = 0; i < property_count; i++) { in napi_define_class() 887 for (size_t i = 0; i < property_count; i++) { in napi_define_class() 1256 size_t property_count, in napi_define_properties() argument 1259 if (property_count > 0) { in napi_define_properties() 1268 for (size_t i = 0; i < property_count; i++) { in napi_define_properties()
|
/third_party/ejdb/src/bindings/ejdb2_node/ |
D | js_native_api.h | 229 size_t property_count, 284 size_t property_count,
|
/third_party/grpc/test/core/security/ |
D | security_connector_test.cc | 59 for (i = 0; i < peer->property_count; i++) { in check_peer_property() 75 for (i = 0; i < original->property_count; i++) { in check_ssl_peer_equivalence()
|
/third_party/grpc/src/core/lib/security/security_connector/alts/ |
D | alts_security_connector.cc | 241 for (i = 0; i < peer->property_count; i++) { in grpc_alts_auth_context_from_tsi_peer()
|
/third_party/grpc/src/core/lib/security/security_connector/fake/ |
D | fake_security_connector.cc | 219 if (peer.property_count != 2) { in fake_check_peer()
|
/third_party/ffmpeg/libavformat/ |
D | rmdec.c | 352 int stream_count, rule_count, property_count, i; in ff_rm_read_mdpr_codecdata() local 362 property_count = avio_rb16(pb); in ff_rm_read_mdpr_codecdata() 363 for(i=0; i<property_count; i++){ in ff_rm_read_mdpr_codecdata()
|
/third_party/grpc/test/core/tsi/alts/handshaker/ |
D | alts_tsi_handshaker_test.cc | 306 GPR_ASSERT(peer.property_count == kTsiAltsNumOfPeerProperties); in on_client_next_success_cb() 380 GPR_ASSERT(peer.property_count == kTsiAltsNumOfPeerProperties); in on_server_next_success_cb()
|
/third_party/grpc/src/core/lib/security/security_connector/tls/ |
D | tls_security_connector.cc | 262 for (size_t i = 0; i < peer.property_count; i++) { in check_peer()
|
/third_party/node/doc/api/ |
D | n-api.md | 4199 size_t property_count, 4205 * `[in] property_count`: The number of elements in the `properties` array. 4739 size_t property_count, 4756 * `[in] property_count`: Number of items in the `properties` array argument.
|