Home
last modified time | relevance | path

Searched refs:GetPythonValueFormatString (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.cpp23 template <typename T> const char *GetPythonValueFormatString(T t);
24 template <> const char *GetPythonValueFormatString(char *) { return "s"; } in GetPythonValueFormatString() function
25 template <> const char *GetPythonValueFormatString(char) { return "b"; } in GetPythonValueFormatString() function
26 template <> const char *GetPythonValueFormatString(unsigned char) { in GetPythonValueFormatString() function
29 template <> const char *GetPythonValueFormatString(short) { return "h"; } in GetPythonValueFormatString() function
30 template <> const char *GetPythonValueFormatString(unsigned short) { in GetPythonValueFormatString() function
33 template <> const char *GetPythonValueFormatString(int) { return "i"; } in GetPythonValueFormatString() function
35 template <> const char *GetPythonValueFormatString(long) { return "l"; } in GetPythonValueFormatString() function
36 template <> const char *GetPythonValueFormatString(unsigned long) { in GetPythonValueFormatString() function
40 template <> const char *GetPythonValueFormatString(unsigned long long) { in GetPythonValueFormatString() function
[all …]
H A DSWIGPythonBridge.h29 template <typename T> const char *GetPythonValueFormatString(T t);
30 template <> const char *GetPythonValueFormatString(char *);
31 template <> const char *GetPythonValueFormatString(char);
32 template <> const char *GetPythonValueFormatString(unsigned char);
33 template <> const char *GetPythonValueFormatString(short);
35 template <> const char *GetPythonValueFormatString(int);
36 template <> const char *GetPythonValueFormatString(unsigned int);
37 template <> const char *GetPythonValueFormatString(long);
39 template <> const char *GetPythonValueFormatString(long long);
41 template <> const char *GetPythonValueFormatString(float t);
[all …]
H A DScriptedProcessPythonInterface.cpp229 std::string param_format = GetPythonValueFormatString(address); in ReadMemoryAtAddress()
230 param_format += GetPythonValueFormatString(size); in ReadMemoryAtAddress()
H A DScriptInterpreterPython.cpp1740 const_cast<char *>(GetPythonValueFormatString(tid)); in OSPlugin_RegisterContextData()
1797 param_format += GetPythonValueFormatString(tid); in OSPlugin_CreateThread()
1798 param_format += GetPythonValueFormatString(context); in OSPlugin_CreateThread()