Lines Matching refs:implementor

96 LLDBSwigPython_CalculateNumChildren (void *implementor);
99 LLDBSwigPython_GetChildAtIndex (void *implementor, uint32_t idx);
102 LLDBSwigPython_GetIndexOfChildWithName (void *implementor, const char* child_name);
108 LLDBSwigPython_UpdateSynthProviderInstance (void* implementor);
111 LLDBSwigPython_MightHaveChildrenSynthProviderInstance (void* implementor);
1807 PyObject* implementor = (PyObject*)os_plugin_object_sp->GetObject(); in OSPlugin_RegisterInfo() local
1809 if (implementor == NULL || implementor == Py_None) in OSPlugin_RegisterInfo()
1812 PyObject* pmeth = PyObject_GetAttrString(implementor, callee_name); in OSPlugin_RegisterInfo()
1844 PyObject* py_return = PyObject_CallMethod(implementor, callee_name, NULL); in OSPlugin_RegisterInfo()
1866 PyObject* implementor = (PyObject*)os_plugin_object_sp->GetObject(); in OSPlugin_ThreadsInfo() local
1868 if (implementor == NULL || implementor == Py_None) in OSPlugin_ThreadsInfo()
1871 PyObject* pmeth = PyObject_GetAttrString(implementor, callee_name); in OSPlugin_ThreadsInfo()
1903 PyObject* py_return = PyObject_CallMethod(implementor, callee_name, NULL); in OSPlugin_ThreadsInfo()
1953 PyObject* implementor = (PyObject*)os_plugin_object_sp->GetObject(); in OSPlugin_RegisterContextData() local
1955 if (implementor == NULL || implementor == Py_None) in OSPlugin_RegisterContextData()
1958 PyObject* pmeth = PyObject_GetAttrString(implementor, callee_name); in OSPlugin_RegisterContextData()
1990 PyObject* py_return = PyObject_CallMethod(implementor, callee_name, param_format, tid); in OSPlugin_RegisterContextData()
2017 PyObject* implementor = (PyObject*)os_plugin_object_sp->GetObject(); in OSPlugin_CreateThread() local
2019 if (implementor == NULL || implementor == Py_None) in OSPlugin_CreateThread()
2022 PyObject* pmeth = PyObject_GetAttrString(implementor, callee_name); in OSPlugin_CreateThread()
2054 …PyObject* py_return = PyObject_CallMethod(implementor, callee_name, &param_format[0], tid, context… in OSPlugin_CreateThread()
2422 void* implementor = implementor_sp->GetObject(); in CalculateNumChildren() local
2424 if (!implementor) in CalculateNumChildren()
2434 ret_val = g_swig_calc_children (implementor); in CalculateNumChildren()
2446 void* implementor = implementor_sp->GetObject(); in GetChildAtIndex() local
2448 if (!implementor) in GetChildAtIndex()
2460 child_ptr = g_swig_get_child_index (implementor,idx); in GetChildAtIndex()
2484 void* implementor = implementor_sp->GetObject(); in GetIndexOfChildWithName() local
2486 if (!implementor) in GetIndexOfChildWithName()
2496 ret_val = g_swig_get_index_child (implementor, child_name); in GetIndexOfChildWithName()
2510 void* implementor = implementor_sp->GetObject(); in UpdateSynthProviderInstance() local
2512 if (!implementor) in UpdateSynthProviderInstance()
2520 ret_val = g_swig_update_provider (implementor); in UpdateSynthProviderInstance()
2534 void* implementor = implementor_sp->GetObject(); in MightHaveChildrenSynthProviderInstance() local
2536 if (!implementor) in MightHaveChildrenSynthProviderInstance()
2544 ret_val = g_swig_mighthavechildren_provider (implementor); in MightHaveChildrenSynthProviderInstance()