Home
last modified time | relevance | path

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

12

/external/python/cpython2/Lib/plat-mac/Carbon/
DControlAccessor.py30 setfunc, getfunc = _accessdict[selector]
44 setfunc, getfunc = _accessdict[selector]
45 return getfunc(control, part, selector, data)
/external/elfutils/libebl/
Deblunwind.c37 ebl_tid_registers_get_t *getfunc, ebl_pid_memory_read_t *readfunc, in ebl_unwind() argument
43 return ebl->unwind (ebl, pc, setfunc, getfunc, readfunc, arg, signal_framep); in ebl_unwind()
Debl-hooks.h185 ebl_tid_registers_get_t *getfunc,
/external/swiftshader/third_party/LLVM/test/Transforms/GlobalDCE/
D2003-07-01-SelfReference.ll4 declare i1 ()* @getfunc()
7 %F = call i1 ()* ()* @getfunc( ) ; <i1 ()*> [#uses=1]
/external/llvm/test/Transforms/GlobalDCE/
D2003-07-01-SelfReference.ll6 declare i1 ()* @getfunc()
9 %F = call i1 ()* () @getfunc( ) ; <i1 ()*> [#uses=1]
/external/python/cpython3/Modules/_ctypes/
Dstgdict.c243 new_descr->getfunc = fdescr->getfunc; in MakeFields()
467 if (dict->getfunc != _ctypes_get_fielddesc("c")->getfunc in PyCStructUnionType_update_stgdict()
469 && dict->getfunc != _ctypes_get_fielddesc("u")->getfunc in PyCStructUnionType_update_stgdict()
Dctypes.h165 GETFUNC getfunc; member
178 GETFUNC getfunc; /* getter function if proto is NULL */ member
201 GETFUNC getfunc; /* Only for simple objects */ member
319 PyCData_get(PyObject *type, GETFUNC getfunc, PyObject *src,
Dcfield.c55 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()
129 if (idict->getfunc == _ctypes_get_fielddesc("u")->getfunc) { in PyCField_FromDesc()
131 getfunc = fd->getfunc; in PyCField_FromDesc()
139 self->getfunc = getfunc; in PyCField_FromDesc()
230 return PyCData_get(self->proto, self->getfunc, inst, in PyCField_get()
D_ctypes.c1419 if (itemdict->getfunc == _ctypes_get_fielddesc("c")->getfunc) { in PyCArrayType_new()
1423 } else if (itemdict->getfunc == _ctypes_get_fielddesc("u")->getfunc) { in PyCArrayType_new()
1818 stgdict->getfunc = fmt->getfunc_swapped; in CreateSwappedType()
1927 stgdict->getfunc = fmt->getfunc; in PyCSimpleType_new()
2213 stgdict->getfunc = NULL; in make_funcptrtype_dict()
2778 PyCData_get(PyObject *type, GETFUNC getfunc, PyObject *src, in PyCData_get() argument
2782 if (getfunc) in PyCData_get()
2783 return getfunc(adr, size); in PyCData_get()
2786 if (dict && dict->getfunc && !_ctypes_simple_instance(type)) in PyCData_get()
2787 return dict->getfunc(adr, size); in PyCData_get()
[all …]
Dcallbacks.c169 if (dict && dict->getfunc && !_ctypes_simple_instance(cnv)) { in _CallPythonObject()
170 PyObject *v = dict->getfunc(*pArgs, dict->size); in _CallPythonObject()
Dcallproc.c903 if (dict->getfunc && !_ctypes_simple_instance(restype)) { in GetResult()
904 retval = dict->getfunc(result, dict->size); in GetResult()
909 if (dict->getfunc == _ctypes_get_fielddesc("O")->getfunc) { in GetResult()
/external/python/cpython2/Modules/_ctypes/
Dstgdict.c247 new_descr->getfunc = fdescr->getfunc; in MakeFields()
474 if (dict->getfunc != _ctypes_get_fielddesc("c")->getfunc in PyCStructUnionType_update_stgdict()
476 && dict->getfunc != _ctypes_get_fielddesc("u")->getfunc in PyCStructUnionType_update_stgdict()
D_ctypes.c1480 if (itemdict->getfunc == _ctypes_get_fielddesc("c")->getfunc) { in PyCArrayType_new()
1484 } else if (itemdict->getfunc == _ctypes_get_fielddesc("u")->getfunc) { in PyCArrayType_new()
1891 stgdict->getfunc = fmt->getfunc_swapped; in CreateSwappedType()
2000 stgdict->getfunc = fmt->getfunc; in PyCSimpleType_new()
2310 stgdict->getfunc = NULL; in make_funcptrtype_dict()
2895 PyCData_get(PyObject *type, GETFUNC getfunc, PyObject *src, in PyCData_get() argument
2899 if (getfunc) in PyCData_get()
2900 return getfunc(adr, size); in PyCData_get()
2903 if (dict && dict->getfunc && !_ctypes_simple_instance(type)) in PyCData_get()
2904 return dict->getfunc(adr, size); in PyCData_get()
[all …]
Dctypes.h205 GETFUNC getfunc; member
218 GETFUNC getfunc; /* getter function if proto is NULL */ member
241 GETFUNC getfunc; /* Only for simple objects */ member
361 PyCData_get(PyObject *type, GETFUNC getfunc, PyObject *src,
Dcfield.c55 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()
129 if (idict->getfunc == _ctypes_get_fielddesc("u")->getfunc) { in PyCField_FromDesc()
131 getfunc = fd->getfunc; in PyCField_FromDesc()
139 self->getfunc = getfunc; in PyCField_FromDesc()
230 return PyCData_get(self->proto, self->getfunc, inst, in PyCField_get()
Dcallbacks.c250 if (dict && dict->getfunc && !_ctypes_simple_instance(cnv)) { in _CallPythonObject()
251 PyObject *v = dict->getfunc(*pArgs, dict->size); in _CallPythonObject()
Dcallproc.c935 if (dict->getfunc && !_ctypes_simple_instance(restype)) { in GetResult()
936 retval = dict->getfunc(result, dict->size); in GetResult()
941 if (dict->getfunc == _ctypes_get_fielddesc("O")->getfunc) { in GetResult()
/external/elfutils/backends/
Ds390_unwind.c47 ebl_tid_registers_get_t *getfunc, ebl_pid_memory_read_t *readfunc, in s390_unwind() argument
70 if (! getfunc (0 + 15, 1, &this_sp, arg)) in s390_unwind()
/external/python/cpython2/Doc/library/
Dbastion.rst56 .. class:: BastionClass(getfunc, name)
59 by :func:`Bastion`. The *getfunc* parameter is a function which returns the
/external/python/cpython2/Lib/sqlite3/test/
Duserfunctions.py156 def getfunc(): function
160 f = getfunc()
/external/python/cpython3/Lib/sqlite3/test/
Duserfunctions.py169 def getfunc(): function
173 f = getfunc()
/external/elfutils/libdwfl/
Dframe_unwind.c673 getfunc (int firstreg, unsigned nregs, Dwarf_Word *regs, void *arg) in getfunc() function
737 if (! ebl_unwind (ebl, pc, setfunc, getfunc, readfunc, state, &signal_frame)) in __libdwfl_frame_unwind()
/external/libmtp/src/
Dlibusb-glue.c989 int getfunc_ret = handler->getfunc(NULL, handler->priv,towrite,bytes,&towrite); in ptp_write_func()
1099 handler->getfunc = memory_getfunc; in ptp_init_recv_memory_handler()
1119 handler->getfunc = memory_getfunc; in ptp_init_send_memory_handler()
1231 ret = handler->getfunc(params, handler->priv, datawlen, usbdata.payload.data, &gotlen); in ptp_usb_senddata()
Dlibopenusb1-glue.c976 int getfunc_ret = handler->getfunc(NULL, handler->priv, towrite, bytes, &towrite); in ptp_write_func()
1107 handler->getfunc = memory_getfunc; in ptp_init_recv_memory_handler()
1128 handler->getfunc = memory_getfunc; in ptp_init_send_memory_handler()
1238 ret = handler->getfunc(params, handler->priv, datawlen, usbdata.payload.data, &gotlen); in ptp_usb_senddata()
Dlibusb1-glue.c1007 int getfunc_ret = handler->getfunc(NULL, handler->priv,towrite,bytes,&towrite); in ptp_write_func()
1124 handler->getfunc = memory_getfunc; in ptp_init_recv_memory_handler()
1144 handler->getfunc = memory_getfunc; in ptp_init_send_memory_handler()
1256 ret = handler->getfunc(params, handler->priv, datawlen, usbdata.payload.data, &gotlen); in ptp_usb_senddata()

12