mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
11 lines
481 B
Plaintext
11 lines
481 B
Plaintext
|
|
{% for driver in drivers if driver.type == "opaque" -%}
|
||
|
|
{% for capability in driver.capabilities if entry_point in capability.entry_points -%}
|
||
|
|
#if ({% if capability.depend_on is defined -%}{{ capability.depend_on }} {% else -%} {{ 1 }} {% endif %})
|
||
|
|
{%- filter indent(width = nest_indent) %}
|
||
|
|
case {{ driver.location }}:
|
||
|
|
return({{driver.prefix}}_{{driver.type}}_{{entry_point}}({{entry_point_attributes(driver) | indent(20)}}));
|
||
|
|
{% endfilter -%}
|
||
|
|
#endif
|
||
|
|
{% endfor %}
|
||
|
|
{% endfor %}
|