MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / GetCallingConventionByName

Method GetCallingConventionByName

architecture.cpp:1321–1327  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1319
1320
1321Ref<CallingConvention> Architecture::GetCallingConventionByName(const string& name)
1322{
1323 BNCallingConvention* cc = BNGetArchitectureCallingConventionByName(m_object, name.c_str());
1324 if (!cc)
1325 return nullptr;
1326 return new CoreCallingConvention(cc);
1327}
1328
1329
1330void Architecture::SetDefaultCallingConvention(CallingConvention* cc)

Callers 15

InitMethod · 0.80
ApplySymbolFunction · 0.80
FreeBSDX86PlatformMethod · 0.80
FreeBSDX64PlatformMethod · 0.80
FreeBSDArmv7PlatformMethod · 0.80
FreeBSDArm64PlatformMethod · 0.80
WindowsX86PlatformMethod · 0.80
WindowsX64PlatformMethod · 0.80
WindowsArmv7PlatformMethod · 0.80
WindowsArm64PlatformMethod · 0.80
DecreeX86PlatformMethod · 0.80
LinuxX86PlatformMethod · 0.80

Calls 1

c_strMethod · 0.80

Tested by

no test coverage detected