Searched refs:FunctionInfo (Results 1 – 3 of 3) sorted by relevance
/mbedtls-3.7.0/scripts/mbedtls_dev/ |
D | c_wrapper_generator.py | 17 from .c_parsing_helper import ArgumentInfo, FunctionInfo 115 function: FunctionInfo, argument 150 def _underlying_function_name(self, function: FunctionInfo) -> str: argument 157 def _return_variable_name(self, function: FunctionInfo) -> str: argument 162 function: FunctionInfo, argument 180 function: FunctionInfo, argument 194 function: FunctionInfo, argument 201 def _skip_function(self, function: FunctionInfo) -> bool: argument 213 def _function_guard(self, function: FunctionInfo) -> Optional[str]: argument 220 def _wrapper_info(self, function: FunctionInfo) -> Optional[WrapperInfo]: argument [all …]
|
D | c_parsing_helper.py | 50 class FunctionInfo: class 113 def read_function_declarations(functions: Dict[str, FunctionInfo], argument 124 if len(arguments) == 1 and re.match(FunctionInfo.VOID_RE, arguments[0]): 127 functions[name] = FunctionInfo(filename, line_number,
|
/mbedtls-3.7.0/tests/scripts/ |
D | generate_psa_wrappers.py | 69 def _skip_function(self, function: c_wrapper_generator.FunctionInfo) -> bool: argument 83 function: c_wrapper_generator.FunctionInfo) -> str: argument 155 function: c_wrapper_generator.FunctionInfo, argument
|