Home
last modified time | relevance | path

Searched refs:desc (Results 1 – 9 of 9) sorted by relevance

/openthread-2.7.6/third_party/mbedtls/repo/tests/suites/
Dtest_suite_oid.function18 const char *desc;
24 ret = mbedtls_oid_get_certificate_policies( &asn1_buf, &desc );
32 TEST_ASSERT( strcmp( ( char* )desc, result_str ) == 0 );
42 const char *desc;
48 ret = mbedtls_oid_get_extended_key_usage( &asn1_buf, &desc );
56 TEST_ASSERT( strcmp( ( char * )desc, result_str ) == 0 );
Dtest_suite_x509parse.function1110 const char *desc = NULL;
1118 ret = mbedtls_oid_get_extended_key_usage( &oid, &desc );
1123 TEST_ASSERT( desc == NULL );
1128 TEST_ASSERT( desc != NULL );
1129 TEST_ASSERT( strcmp( desc, ref_desc ) == 0 );
/openthread-2.7.6/src/core/net/
Dsrp_server.cpp275 for (const Service::Description &desc : aHost.mServiceDescriptions) in HasNameConflictsWith() local
283 if (host.FindServiceDescription(desc.GetInstanceName()) != nullptr) in HasNameConflictsWith()
346 for (Service::Description &desc : aHost.mServiceDescriptions) in CommitSrpUpdate()
348 desc.mLease = grantedLease; in CommitSrpUpdate()
349 desc.mKeyLease = grantedKeyLease; in CommitSrpUpdate()
785 Service::Description *desc; in ProcessServiceDescriptionInstructions() local
797 desc = aHost.FindServiceDescription(name); in ProcessServiceDescriptionInstructions()
799 if (desc != nullptr) in ProcessServiceDescriptionInstructions()
801 desc->ClearResources(); in ProcessServiceDescriptionInstructions()
802 desc->mTimeLastUpdate = now; in ProcessServiceDescriptionInstructions()
[all …]
/openthread-2.7.6/third_party/mbedtls/repo/include/mbedtls/
Doid.h549 int mbedtls_oid_get_sig_alg_desc( const mbedtls_asn1_buf *oid, const char **desc );
593 int mbedtls_oid_get_extended_key_usage( const mbedtls_asn1_buf *oid, const char **desc );
603 int mbedtls_oid_get_certificate_policies( const mbedtls_asn1_buf *oid, const char **desc );
/openthread-2.7.6/tests/scripts/thread-cert/
DCert_8_1_02_Commissioning.py111 …lambda p: p.dtls.record.content_type == [CONTENT_ALERT] and p.dtls.alert_message.desc == 20).must_…
/openthread-2.7.6/third_party/mbedtls/repo/library/
Dx509.c844 const char *desc = NULL; in mbedtls_x509_sig_alg_gets() local
846 ret = mbedtls_oid_get_sig_alg_desc( sig_oid, &desc ); in mbedtls_x509_sig_alg_gets()
850 ret = mbedtls_snprintf( p, n, "%s", desc ); in mbedtls_x509_sig_alg_gets()
Dx509_crt.c1997 const char *desc; in x509_info_ext_key_usage() local
2005 if( mbedtls_oid_get_extended_key_usage( &cur->buf, &desc ) != 0 ) in x509_info_ext_key_usage()
2006 desc = "???"; in x509_info_ext_key_usage()
2008 ret = mbedtls_snprintf( p, n, "%s%s", sep, desc ); in x509_info_ext_key_usage()
2026 const char *desc; in x509_info_cert_policies() local
2034 if( mbedtls_oid_get_certificate_policies( &cur->buf, &desc ) != 0 ) in x509_info_cert_policies()
2035 desc = "???"; in x509_info_cert_policies()
2037 ret = mbedtls_snprintf( p, n, "%s%s", sep, desc ); in x509_info_cert_policies()
/openthread-2.7.6/third_party/nlbuild-autotools/repo/tools/packages/make/make.patches/
Dmake-00.patch15 ar_member_date_1 (int desc UNUSED, const char *mem, int truncated,
377 typedef long int (*ar_member_func_t) (int desc, const char *mem, int truncated,
/openthread-2.7.6/tools/spi-hdlc-adapter/
Dspi-hdlc-adapter.c372 static void log_debug_buffer(const char *desc, const uint8_t *buffer_ptr, int buffer_len, bool forc… in log_debug_buffer() argument
391 …syslog(force ? LOG_WARNING : LOG_DEBUG, "%s: %s%s", desc, dump_string, (i < buffer_len) ? " ..." :… in log_debug_buffer()