Home
last modified time | relevance | path

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

/third_party/python/Modules/_ctypes/
Dctypes.h165 GETFUNC getfunc; member
178 GETFUNC getfunc; /* getter function if proto is NULL */ member
201 GETFUNC getfunc; /* Only for simple objects */ member
321 PyCData_get(PyObject *type, GETFUNC getfunc, PyObject *src,
Dcfield.c56 GETFUNC getfunc = NULL; in PyCField_FromDesc() local
123 if (idict->getfunc == _ctypes_get_fielddesc("c")->getfunc) { in PyCField_FromDesc()
125 getfunc = fd->getfunc; in PyCField_FromDesc()
128 if (idict->getfunc == _ctypes_get_fielddesc("u")->getfunc) { in PyCField_FromDesc()
130 getfunc = fd->getfunc; in PyCField_FromDesc()
137 self->getfunc = getfunc; in PyCField_FromDesc()
236 return PyCData_get(self->proto, self->getfunc, inst, in PyCField_get()
Dstgdict.c263 new_descr->getfunc = fdescr->getfunc; in MakeFields()
540 if (dict->getfunc != _ctypes_get_fielddesc("c")->getfunc in PyCStructUnionType_update_stgdict()
541 && dict->getfunc != _ctypes_get_fielddesc("u")->getfunc in PyCStructUnionType_update_stgdict()
D_ctypes.c1613 if (itemdict->getfunc == _ctypes_get_fielddesc("c")->getfunc) { in PyCArrayType_new()
1617 else if (itemdict->getfunc == _ctypes_get_fielddesc("u")->getfunc) { in PyCArrayType_new()
2021 stgdict->getfunc = fmt->getfunc_swapped; in CreateSwappedType()
2133 stgdict->getfunc = fmt->getfunc; in PyCSimpleType_new()
2477 stgdict->getfunc = NULL; in make_funcptrtype_dict()
3067 PyCData_get(PyObject *type, GETFUNC getfunc, PyObject *src, in PyCData_get() argument
3071 if (getfunc) in PyCData_get()
3072 return getfunc(adr, size); in PyCData_get()
3075 if (dict && dict->getfunc && !_ctypes_simple_instance(type)) in PyCData_get()
3076 return dict->getfunc(adr, size); in PyCData_get()
[all …]
Dcallbacks.c175 if (dict && dict->getfunc && !_ctypes_simple_instance(cnv)) { in _CallPythonObject()
176 PyObject *v = dict->getfunc(*pArgs, dict->size); in _CallPythonObject()
Dcallproc.c978 if (dict->getfunc && !_ctypes_simple_instance(restype)) { in GetResult()
979 retval = dict->getfunc(result, dict->size); in GetResult()
984 if (dict->getfunc == _ctypes_get_fielddesc("O")->getfunc) { in GetResult()
/third_party/python/Lib/sqlite3/test/
Duserfunctions.py183 def getfunc(): function
187 f = getfunc()
/third_party/boost/libs/python/doc/
Dtutorial.qbk1098 def getfunc():
1112 object getfunc() {