Searched refs:errcheck (Results 1 – 7 of 7) sorted by relevance
/third_party/uboot/u-boot-2020.01/test/ |
D | compression.c | 297 #define errcheck(statement) if (!(statement)) { \ macro 322 errcheck(compress(uts, buf->orig_buf, buf->orig_size, in run_test_internal() 326 errcheck(buf->compressed_size > 0); in run_test_internal() 327 errcheck(buf->compressed_size < buf->orig_size); in run_test_internal() 328 errcheck(((char *)buf->compressed_buf)[buf->compressed_size - 1] != in run_test_internal() 330 errcheck(((char *)buf->compressed_buf)[buf->compressed_size] == 'A'); in run_test_internal() 333 errcheck(uncompress(uts, buf->compressed_buf, buf->compressed_size, in run_test_internal() 337 errcheck(buf->uncompressed_size == buf->orig_size); in run_test_internal() 338 errcheck(memcmp(buf->orig_buf, buf->uncompressed_buf, in run_test_internal() 343 errcheck(uncompress(uts, buf->compressed_buf, buf->compressed_size, in run_test_internal() [all …]
|
/third_party/python/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
|
/third_party/python/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
|
/third_party/python/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
|
/third_party/skia/ |
D | go.sum | 1149 github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= 1150 github.com/kisielk/errcheck v1.2.0 h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E= 1151 github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= 1152 github.com/kisielk/errcheck v1.3.0 h1:LT9MIcYaA4MhK2jGb1DIWjJY8nnzC/bBqgKYhbWq+lk= 1153 github.com/kisielk/errcheck v1.3.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= 1154 github.com/kisielk/errcheck v1.4.0 h1:ueN6QYA+c7eDQo7ebpNdYR8mUJZThiGz9PEoJEMGPzA= 1155 github.com/kisielk/errcheck v1.4.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= 1156 github.com/kisielk/errcheck v1.5.0 h1:e8esj/e4R+SAOwFwN+n3zr0nYeCyeweozKfO23MvHzY= 1157 github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
|
/third_party/flutter/skia/ |
D | go.sum | 332 github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= 333 github.com/kisielk/errcheck v1.2.0 h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E= 334 github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00=
|