HomeSort by relevance Sort by last modified time
    Searched refs:PyProfiler_Type (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_lsprof.c 120 staticforward PyTypeObject PyProfiler_Type;
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 = {
874 if (PyType_Ready(&PyProfiler_Type) < 0)
876 PyDict_SetItemString(d, "Profiler", (PyObject *)&PyProfiler_Type);
  /external/python/cpython2/Modules/
_lsprof.c 120 staticforward PyTypeObject PyProfiler_Type;
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 = {
874 if (PyType_Ready(&PyProfiler_Type) < 0)
876 PyDict_SetItemString(d, "Profiler", (PyObject *)&PyProfiler_Type);
  /external/python/cpython3/Modules/
_lsprof.c 110 static PyTypeObject PyProfiler_Type;
112 #define PyProfiler_Check(op) PyObject_TypeCheck(op, &PyProfiler_Type)
113 #define PyProfiler_CheckExact(op) (Py_TYPE(op) == &PyProfiler_Type)
803 static PyTypeObject PyProfiler_Type = {
870 if (PyType_Ready(&PyProfiler_Type) < 0)
872 PyDict_SetItemString(d, "Profiler", (PyObject *)&PyProfiler_Type);

Completed in 704 milliseconds