Home
last modified time | relevance | path

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

/external/libiio/src/bindings/python/
Diio.py70 _get_backend.errcheck = _checkNull
75 _create_scan_context.errcheck = _checkNull
83 _get_context_info_list.errcheck = _checkNegative
98 _new_local.errcheck = _checkNull
103 _new_xml.errcheck = _checkNull
108 _new_network.errcheck = _checkNull
112 _new_default.errcheck = _checkNull
116 _new_uri.errcheck = _checkNull
124 _get_name.errcheck = _checkNull
140 _get_version.errcheck = _checkNegative
[all …]
/external/python/cpython3/Lib/ctypes/test/
Dtest_slicing.py104 def errcheck(result, func, args): function
110 dll.my_strdup.errcheck = errcheck
115 del dll.my_strdup.errcheck
/external/python/cpython2/Lib/ctypes/test/
Dtest_slicing.py110 def errcheck(result, func, args): function
116 dll.my_strdup.errcheck = errcheck
121 del dll.my_strdup.errcheck
/external/skia/
Dgo.mod27 github.com/kisielk/errcheck v1.4.0 // indirect
Dgo.sum813 github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q=
814 github.com/kisielk/errcheck v1.2.0 h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E=
815 github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
816 github.com/kisielk/errcheck v1.3.0 h1:LT9MIcYaA4MhK2jGb1DIWjJY8nnzC/bBqgKYhbWq+lk=
817 github.com/kisielk/errcheck v1.3.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
818 github.com/kisielk/errcheck v1.4.0 h1:ueN6QYA+c7eDQo7ebpNdYR8mUJZThiGz9PEoJEMGPzA=
819 github.com/kisielk/errcheck v1.4.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
/external/one-true-awk/
Dproto.h147 extern double errcheck(double, const char *);
Drun.c1079 i = errcheck(pow(i, j), "pow"); in arith()
1175 xf = errcheck(pow(xf, yf), "pow"); in assign()
1624 u = errcheck(log(getfval(x)), "log"); in bltin()
1630 u = errcheck(exp(getfval(x)), "exp"); in bltin()
1634 u = errcheck(sqrt(getfval(x)), "sqrt"); in bltin()
Dlib.c736 double errcheck(double x, const char *s) in errcheck() function
DFIXES93 Clear errno before calling errcheck to avoid any spurious errors
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/
Dlist_ports_windows.py92 SetupDiGetClassDevs.errcheck = ValidHandle
/external/python/cpython3/Modules/_ctypes/
D_ctypes.c3263 Py_XSETREF(self->errcheck, ob); in PyCFuncPtr_set_errcheck()
3270 if (self->errcheck) { in PyCFuncPtr_get_errcheck()
3271 Py_INCREF(self->errcheck); in PyCFuncPtr_get_errcheck()
3272 return self->errcheck; in PyCFuncPtr_get_errcheck()
4114 PyObject *errcheck; in PyCFuncPtr_call() local
4130 errcheck = self->errcheck /* ? self->errcheck : dict->errcheck */; in PyCFuncPtr_call()
4212 if (result != NULL && errcheck) { in PyCFuncPtr_call()
4213 PyObject *v = PyObject_CallFunctionObjArgs(errcheck, in PyCFuncPtr_call()
4242 Py_VISIT(self->errcheck); in PyCFuncPtr_traverse()
4256 Py_CLEAR(self->errcheck); in PyCFuncPtr_clear()
Dctypes.h96 PyObject *errcheck; member
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c3176 Py_XSETREF(self->errcheck, ob); in PyCFuncPtr_set_errcheck()
3183 if (self->errcheck) { in PyCFuncPtr_get_errcheck()
3184 Py_INCREF(self->errcheck); in PyCFuncPtr_get_errcheck()
3185 return self->errcheck; in PyCFuncPtr_get_errcheck()
3989 PyObject *errcheck; in PyCFuncPtr_call() local
4005 errcheck = self->errcheck /* ? self->errcheck : dict->errcheck */; in PyCFuncPtr_call()
4087 if (result != NULL && errcheck) { in PyCFuncPtr_call()
4088 PyObject *v = PyObject_CallFunctionObjArgs(errcheck, in PyCFuncPtr_call()
4117 Py_VISIT(self->errcheck); in PyCFuncPtr_traverse()
4131 Py_CLEAR(self->errcheck); in PyCFuncPtr_clear()
Dctypes.h136 PyObject *errcheck; member
/external/python/cpython2/Doc/library/
Dctypes.rst507 through the :attr:`errcheck` attribute; see the reference manual for details.
1564 :attr:`restype` and assign a callable to the :attr:`errcheck` attribute.
1588 .. attribute:: errcheck
1773 Output parameters can be combined with the :attr:`errcheck` protocol to do
1778 >>> def errcheck(result, func, args):
1783 >>> GetWindowRect.errcheck = errcheck
1786 If the :attr:`errcheck` function returns the argument tuple it receives
1792 >>> def errcheck(result, func, args):
1798 >>> GetWindowRect.errcheck = errcheck
/external/python/cpython3/Doc/library/
Dctypes.rst511 through the :attr:`errcheck` attribute; see the reference manual for details.
1575 :attr:`restype` and assign a callable to the :attr:`errcheck` attribute.
1597 .. attribute:: errcheck
1793 Output parameters can be combined with the :attr:`errcheck` protocol to do
1798 >>> def errcheck(result, func, args):
1803 >>> GetWindowRect.errcheck = errcheck
1806 If the :attr:`errcheck` function returns the argument tuple it receives
1812 >>> def errcheck(result, func, args):
1818 >>> GetWindowRect.errcheck = errcheck
/external/clang/bindings/python/clang/
Dcindex.py3612 func.errcheck = item[3]
/external/llvm-project/clang/bindings/python/clang/
Dcindex.py4082 func.errcheck = item[3]