Home
last modified time | relevance | path

Searched refs:get_header_name (Results 1 – 8 of 8) sorted by relevance

/linux-6.15/tools/net/sunrpc/xdrgen/generators/
H A Denum.py7 from xdr_ast import _XdrEnum, public_apis, big_endian, get_header_name
57 macro_name = get_header_name().upper() + "_" + node.name + "_sz"
H A D__init__.py9 from xdr_ast import public_apis, pass_by_reference, get_header_name
39 raw_name = get_header_name()
H A Dsource_top.py11 from xdr_ast import _RpcProgram, Specification, get_header_name
H A Dunion.py11 from xdr_ast import _XdrBasic, _XdrUnion, _XdrVoid, get_header_name
239 macro_name = get_header_name().upper() + "_" + node.name + "_sz"
H A Dstruct.py15 from xdr_ast import public_apis, get_header_name
252 macro_name = get_header_name().upper() + "_" + node.name + "_sz"
H A Dtypedef.py15 from xdr_ast import public_apis, get_header_name
235 macro_name = get_header_name().upper() + "_" + node.name + "_sz"
H A Dpointer.py15 from xdr_ast import public_apis, get_header_name
252 macro_name = get_header_name().upper() + "_" + node.name + "_sz"
/linux-6.15/tools/net/sunrpc/xdrgen/
H A Dxdr_ast.py100 return [get_header_name().upper() + "_" + self.type_name + "_sz"]
751 def get_header_name() -> str: function