Home
last modified time | relevance | path

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

/third_party/elfutils/backends/
Daarch64_unwind.c47 ebl_tid_registers_t *setfunc, ebl_tid_registers_get_t *getfunc, in EBLHOOK()
53 if (!getfunc(LR_REG, 1, &lr, arg)) in EBLHOOK()
59 if (!getfunc(FP_REG, 1, &fp, arg)) in EBLHOOK()
62 if (!getfunc(SP_REG, 1, &sp, arg)) in EBLHOOK()
Dppc64_unwind.c49 ebl_tid_registers_t *setfunc, ebl_tid_registers_get_t *getfunc, in EBLHOOK()
56 if (! getfunc (SP_REG, 1, &sp, arg)) in EBLHOOK()
60 if (! getfunc (LR_REG, 1, &lr, arg) in EBLHOOK()
Dx86_64_unwind.c44 ebl_tid_registers_t *setfunc, ebl_tid_registers_get_t *getfunc, in x86_64_unwind() argument
53 if (!getfunc(fpReg, 1, &fp, arg) || fp == 0) in x86_64_unwind()
58 if (!getfunc(spReg, 1, &sp, arg)) in x86_64_unwind()
Di386_unwind.c49 ebl_tid_registers_t *setfunc, ebl_tid_registers_get_t *getfunc, in i386_unwind() argument
57 if (! getfunc (ESP, 2, regs, arg)) in i386_unwind()
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()
/third_party/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.h178 ebl_tid_registers_get_t *getfunc,
Dlibebl.h388 ebl_tid_registers_get_t *getfunc,
/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/node/deps/openssl/openssl/crypto/evp/
Devp_utils.c52 getname, getfunc, \ argument
55 PARAM_FUNC(getname, getfunc, type, geterr) \
/third_party/openssl/crypto/evp/
Devp_utils.c52 getname, getfunc, \ argument
55 PARAM_FUNC(getname, getfunc, type, geterr) \
/third_party/elfutils/libdwfl/
Dframe_unwind.c686 getfunc (int firstreg, unsigned nregs, Dwarf_Word *regs, void *arg) in getfunc() function
755 if (! ebl_unwind (ebl, pc, setfunc, getfunc, readfunc, state, &signal_frame)) in __libdwfl_frame_unwind()
DChangeLog55 (getfunc): Likewise.
1649 (setfunc, getfunc, readfunc): New functions.
/third_party/python/Lib/sqlite3/test/
Duserfunctions.py183 def getfunc(): function
187 f = getfunc()