/external/libiio/src/bindings/python/ |
D | iio.py | 70 _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/ |
D | test_slicing.py | 104 def errcheck(result, func, args): function 110 dll.my_strdup.errcheck = errcheck 115 del dll.my_strdup.errcheck
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_slicing.py | 110 def errcheck(result, func, args): function 116 dll.my_strdup.errcheck = errcheck 121 del dll.my_strdup.errcheck
|
/external/skia/ |
D | go.mod | 27 github.com/kisielk/errcheck v1.4.0 // indirect
|
D | go.sum | 813 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/ |
D | proto.h | 147 extern double errcheck(double, const char *);
|
D | run.c | 1079 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()
|
D | lib.c | 736 double errcheck(double x, const char *s) in errcheck() function
|
D | FIXES | 93 Clear errno before calling errcheck to avoid any spurious errors
|
/external/chromium-trace/catapult/third_party/pyserial/serial/tools/ |
D | list_ports_windows.py | 92 SetupDiGetClassDevs.errcheck = ValidHandle
|
/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes.c | 3263 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()
|
D | ctypes.h | 96 PyObject *errcheck; member
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 3176 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()
|
D | ctypes.h | 136 PyObject *errcheck; member
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 507 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/ |
D | ctypes.rst | 511 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/ |
D | cindex.py | 3612 func.errcheck = item[3]
|
/external/llvm-project/clang/bindings/python/clang/ |
D | cindex.py | 4082 func.errcheck = item[3]
|