Home
last modified time | relevance | path

Searched refs:c_bool (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Lib/ctypes/test/
Dtest_numbers.py41 c_bool
45 bool_types.append(c_bool)
205 from ctypes import c_bool
207 a = array(c_bool._type_, [True])
Dtest_pep3118.py138 (c_bool, "<?", None, c_bool),
Dtest_repr.py7 c_float, c_double, c_longdouble, c_bool]:
/external/autotest/client/common_lib/
Dsmogcheck_tpm.py27 from ctypes import c_uint, c_uint32, cdll, c_bool, Structure, POINTER, \
517 bValue = c_bool()
565 bValue = c_bool()
/external/autotest/site_utils/
Drpc_logserver.py47 server_started = multiprocessing.Value(ctypes.c_bool, False)
Dlog_socket_server.py125 server_started = multiprocessing.Value(ctypes.c_bool, False)
/external/autotest/site_utils/rpm_control_system/
Drpm_controller.py156 result = multiprocessing.Value(ctypes.c_bool, False)
167 is_timeout = multiprocessing.Value(ctypes.c_bool, False)
/external/python/cpython2/Lib/ctypes/
D__init__.py257 class c_bool(_SimpleCData): class
/external/python/cpython2/Doc/library/
Dctypes.rst223 | :class:`c_bool` | :c:type:`_Bool` | bool (1) |
2363 .. class:: c_bool
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2843 :mod:`ctypes` now supports a :class:`c_bool` datatype
/external/python/cpython2/Misc/
DNEWS11313 - Patch #1649190: Adding support for _Bool to ctypes as c_bool.