Home
last modified time | relevance | path

Searched refs:ref (Results 1 – 21 of 21) sorted by relevance

/lib/mbedtls/external/mbedtls/docs/architecture/psa-migration/
A Doutcome-analysis.sh50 HEAD=$(git rev-parse --abbrev-ref HEAD)
99 ref="outcome-$1.csv"
104 total=$(grep -c "$pattern_suite" "$ref")
106 sed -n "$sed_cmd" "$ref" > skipped-ref
108 nb_ref=$(wc -l <skipped-ref)
114 if diff skipped-ref skipped-new | grep '^> '; then
119 rm skipped-ref skipped-new
/lib/lwip/lwip/contrib/addons/netconn/external_resolve/
A Ddnssd.c79 static void addr_info_callback(DNSServiceRef ref, DNSServiceFlags flags, u32_t interface_index,
87 DNSServiceRef ref; in lwip_dnssd_gethostbyname() local
114 …result = DNSServiceGetAddrInfo(&ref, 0, 0, kDNSServiceProtocol_IPv4, name, addr_info_callback, &ms… in lwip_dnssd_gethostbyname()
117 DNSServiceRefDeallocate(ref); in lwip_dnssd_gethostbyname()
139 addr_info_callback(DNSServiceRef ref, DNSServiceFlags flags, u32_t interface_index, in addr_info_callback() argument
146 LWIP_UNUSED_ARG(ref); in addr_info_callback()
/lib/mbedtls/external/mbedtls/library/
A Dpkparse.c263 mbedtls_ecp_group ref; in pk_group_id_from_group() local
266 mbedtls_ecp_group_init(&ref); in pk_group_id_from_group()
270 mbedtls_ecp_group_free(&ref); in pk_group_id_from_group()
271 MBEDTLS_MPI_CHK(mbedtls_ecp_group_load(&ref, *id)); in pk_group_id_from_group()
274 if (grp->pbits == ref.pbits && grp->nbits == ref.nbits && in pk_group_id_from_group()
275 mbedtls_mpi_cmp_mpi(&grp->P, &ref.P) == 0 && in pk_group_id_from_group()
276 mbedtls_mpi_cmp_mpi(&grp->A, &ref.A) == 0 && in pk_group_id_from_group()
277 mbedtls_mpi_cmp_mpi(&grp->B, &ref.B) == 0 && in pk_group_id_from_group()
278 mbedtls_mpi_cmp_mpi(&grp->N, &ref.N) == 0 && in pk_group_id_from_group()
279 mbedtls_mpi_cmp_mpi(&grp->G.X, &ref.G.X) == 0 && in pk_group_id_from_group()
[all …]
/lib/crypto/
A Dasymmetric_type.c70 key_ref_t ref; in find_asymmetric_key() local
103 ref = keyring_search(make_key_ref(keyring, 1), in find_asymmetric_key()
105 if (IS_ERR(ref)) in find_asymmetric_key()
106 pr_debug("Request for key '%s' err %ld\n", req, PTR_ERR(ref)); in find_asymmetric_key()
109 if (IS_ERR(ref)) { in find_asymmetric_key()
110 switch (PTR_ERR(ref)) { in find_asymmetric_key()
117 return ERR_CAST(ref); in find_asymmetric_key()
121 key = key_ref_to_ptr(ref); in find_asymmetric_key()
/lib/lwip/lwip/src/core/
A Dpbuf.c187 p->ref = 1; in pbuf_init_alloced_pbuf()
748 LWIP_PBUF_REF_T ref; in pbuf_free() local
755 LWIP_ASSERT("pbuf_free: p->ref > 0", p->ref > 0); in pbuf_free()
757 ref = --(p->ref); in pbuf_free()
760 if (ref == 0) { in pbuf_free()
794 …DEBUG | LWIP_DBG_TRACE, ("pbuf_free: %p has ref %"U16_F", ending here.\n", (void *)p, (u16_t)ref)); in pbuf_free()
835 SYS_ARCH_SET(p->ref, (LWIP_PBUF_REF_T)(p->ref + 1)); in pbuf_ref()
836 LWIP_ASSERT("pbuf ref overflow", p->ref > 0); in pbuf_ref()
A Dtcp_out.c1435 if (seg->p->ref != 1) { in tcp_output_segment_busy()
/lib/lwip/lwip/test/unit/core/
A Dtest_pbuf.c79 fail_unless(p1->ref == 1); in START_TEST()
83 fail_unless(p2->ref == 1); in START_TEST()
87 fail_unless(p1->ref == 1); in START_TEST()
88 fail_unless(p2->ref == 1); in START_TEST()
/lib/mbedtls/external/mbedtls/tests/scripts/
A Dbasic-in-docker.sh34 run_in_docker tests/scripts/test-ref-configs.pl
A Dall.sh1382 tests/scripts/test-ref-configs.pl
/lib/lwip/lwip/src/apps/altcp_tls/
A Daltcp_tls_mbedtls.c125 int ref; member
751 altcp_tls_entropy_rng->ref = 1; in altcp_mbedtls_ref_entropy()
770 altcp_tls_entropy_rng->ref++; in altcp_mbedtls_ref_entropy()
780 if (altcp_tls_entropy_rng && altcp_tls_entropy_rng->ref) { in altcp_mbedtls_unref_entropy()
781 altcp_tls_entropy_rng->ref--; in altcp_mbedtls_unref_entropy()
1080 if (altcp_tls_entropy_rng && altcp_tls_entropy_rng->ref == 0) { in altcp_tls_free_entropy()
/lib/acpi/
A Dacpi_dp.c325 const char *ref, int index, int pin, in acpi_dp_add_gpio() argument
335 if (!acpi_dp_add_reference(gpio, NULL, ref) || in acpi_dp_add_gpio()
/lib/mbedtls/external/mbedtls/programs/test/
A Dselftest.c181 const char ref[10] = "xxxxxxxxx"; in test_snprintf() local
190 memcmp(buf + n, ref + n, sizeof(buf) - n) != 0) { in test_snprintf()
/lib/mbedtls/external/mbedtls/include/psa/
A Dcrypto_values.h1361 #define PSA_ALG_AEAD_WITH_DEFAULT_LENGTH_TAG_CASE(aead_alg, ref) \ argument
1363 PSA_ALG_AEAD_WITH_SHORTENED_TAG(ref, 0) ? \
1364 ref :
/lib/lwip/lwip/src/include/lwip/
A Dpbuf.h218 LWIP_PBUF_REF_T ref; member
A Dip.h63 #define LWIP_IP_CHECK_PBUF_REF_COUNT_FOR_TX(p) LWIP_ASSERT("p->ref == 1", (p)->ref == 1)
/lib/mbedtls/external/mbedtls/tests/suites/
A Dtest_suite_bignum.function488 mbedtls_mpi src, dst, ref;
491 mbedtls_mpi_init(&ref);
494 TEST_ASSERT(mbedtls_test_read_mpi(&ref, dst_hex) == 0);
514 TEST_ASSERT(mbedtls_mpi_cmp_mpi(&dst, &ref) == 0);
519 mbedtls_mpi_free(&ref);
A Dhost_test.function284 const char ref[10] = "xxxxxxxxx";
296 memcmp(buf + n, ref + n, sizeof(buf) - n) != 0) {
/lib/lwip/lwip/contrib/apps/LwipMibCompiler/Mibs/IANA/
A DIANA-PRINTER-MIB664 -- Std (ref. LangTIPSI(49)).
737 -- System Interface (ref. IEEE Std.
/lib/mbedtls/external/mbedtls/
A DREADME.md249 - `tests/scripts/test-ref-configs.pl` test builds in various reduced configurations.
A DChangeLog131 `mbedtls_ssl_ciphersuite_t` structure.Design ref: #8529
/lib/lwip/lwip/
A DCHANGELOG957 * tcp_impl.h, tcp.c, tcp_in.c: fixed bug #41318 (Bad memory ref in tcp_input()
4156 is properly ref counted.
4299 * TCP has been fixed to deal with the new use of the pbuf->ref
4338 * The packet buffer implementation is changed. The pbuf->ref counter

Completed in 86 milliseconds