Home
last modified time | relevance | path

Searched refs:PyProfiler_Type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
D_lsprof.c110 static PyTypeObject PyProfiler_Type; variable
112 #define PyProfiler_Check(op) PyObject_TypeCheck(op, &PyProfiler_Type)
113 #define PyProfiler_CheckExact(op) (Py_TYPE(op) == &PyProfiler_Type)
800 static PyTypeObject PyProfiler_Type = { variable
867 if (PyType_Ready(&PyProfiler_Type) < 0) in PyInit__lsprof()
869 PyDict_SetItemString(d, "Profiler", (PyObject *)&PyProfiler_Type); in PyInit__lsprof()
/external/python/cpython2/Modules/
D_lsprof.c120 staticforward PyTypeObject PyProfiler_Type; variable
122 #define PyProfiler_Check(op) PyObject_TypeCheck(op, &PyProfiler_Type)
123 #define PyProfiler_CheckExact(op) (Py_TYPE(op) == &PyProfiler_Type)
819 statichere PyTypeObject PyProfiler_Type = { variable
873 if (PyType_Ready(&PyProfiler_Type) < 0) in init_lsprof()
875 PyDict_SetItemString(d, "Profiler", (PyObject *)&PyProfiler_Type); in init_lsprof()