Searched refs:putBytes (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgdataconsumer.py36 def putBytes(info, buffer, bufsize): function in function:TestCGDataConsumer.testFunctions
48 consumer = CGDataConsumerCreate(output, (putBytes, release))
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cgdataconsumer.py37 def putBytes(info, buffer, bufsize): function in function:TestCGDataConsumer.testFunctions
49 consumer = CGDataConsumerCreate(output, (putBytes, release))
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/PyObjCTest/
H A Dtest_cgdataconsumer.py42 def putBytes(info, buffer, bufsize): function in function:TestCGDataConsumer.testFunctions
54 consumer = CGDataConsumerCreate(output, (putBytes, release))
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Modules/
H A D_callbacks.m66 m_CGDataConsumerPutBytesCallback, /* putBytes */
71 "CGDataConsumerCreate(info, (putBytes, release)) -> object\n"
73 "putBytes and release are callback functions. Release may be None");
79 PyObject* putBytes;
82 if (!PyArg_ParseTuple(args, "O(OO)", &info, &putBytes, &release)) {
86 if (!PyCallable_Check(putBytes)) {
87 PyErr_SetString(PyExc_TypeError, "putBytes is not callable");
95 PyObject* real_info = Py_BuildValue("OOO", putBytes, release, info);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Modules/
H A D_callbacks.m66 m_CGDataConsumerPutBytesCallback, /* putBytes */
71 "CGDataConsumerCreate(info, (putBytes, release)) -> object\n"
73 "putBytes and release are callback functions. Release may be None");
79 PyObject* putBytes;
82 if (!PyArg_ParseTuple(args, "O(OO)", &info, &putBytes, &release)) {
86 if (!PyCallable_Check(putBytes)) {
87 PyErr_SetString(PyExc_TypeError, "putBytes is not callable");
95 PyObject* real_info = Py_BuildValue("OOO", putBytes, release, info);
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Modules/
H A D_callbacks.m76 m_CGDataConsumerPutBytesCallback, /* putBytes */
81 "CGDataConsumerCreate(info, (putBytes, release)) -> object\n"
83 "putBytes and release are callback functions. Release may be None");
89 PyObject* putBytes;
92 if (!PyArg_ParseTuple(args, "O(OO)", &info, &putBytes, &release)) {
96 if (!PyCallable_Check(putBytes)) {
97 PyErr_SetString(PyExc_TypeError, "putBytes is not callable");
105 PyObject* real_info = Py_BuildValue("OOO", putBytes, release, info);

Completed in 81 milliseconds