Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/cf/
D_CFmodule.c1299 PyTypeObject CFDataRef_Type; variable
1301 #define CFDataRefObj_Check(x) ((x)->ob_type == &CFDataRef_Type || PyObject_TypeCheck((x), &CFDataRe…
1317 it = PyObject_NEW(CFDataRefObject, &CFDataRef_Type); in CFDataRefObj_New()
1481 PyTypeObject CFDataRef_Type = { variable
1578 CFDataRef_Type.tp_dealloc((PyObject *)self); in CFMutableDataRefObj_dealloc()
4941 CFDataRef_Type.ob_type = &PyType_Type; in init_CF()
4942 CFDataRef_Type.tp_base = &CFTypeRef_Type; in init_CF()
4943 if (PyType_Ready(&CFDataRef_Type) < 0) return; in init_CF()
4944 Py_INCREF(&CFDataRef_Type); in init_CF()
4945 PyModule_AddObject(m, "CFDataRef", (PyObject *)&CFDataRef_Type); in init_CF()
[all …]