10 references to SignatureMapper
WasmAppBuilder (10)
IcallTableGenerator.cs (1)
210string? signature = SignatureMapper.MethodToSignature(method, Log);
InterpToNativeGenerator.cs (6)
64w.Write($"\ttypedef {SignatureMapper.CharToNativeType(signature[0])} (*T)("); 70w.Write($"{SignatureMapper.CharToNativeType(p)} arg_{i - 1}"); 81if (!SignatureMapper.IsVoidSignature(signature)) 82w.Write($"{SignatureMapper.CharToNativeType(signature[0])} res = "); 94if (!SignatureMapper.IsVoidSignature(signature)) 97w.WriteLine($"\t*({SignatureMapper.CharToNativeType(signature[0])}*)retval = res;");
PInvokeCollector.cs (2)
91string? signature = SignatureMapper.MethodToSignature(method!, Log); 110string? signature = SignatureMapper.MethodToSignature(method, Log);
PInvokeTableGenerator.cs (1)
277SignatureMapper.TypeToChar(realReturnType, Log, out bool resultIsByRef);