Searched refs:use_errno (Results 1 – 6 of 6) sorted by relevance
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/ |
D | trace_time.py | 56 libc = ctypes.CDLL('/usr/lib/libc.dylib', use_errno=True) 93 use_errno=True).clock_gettime 97 use_errno=True).clock_gettime
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_errno.py | 15 libc = CDLL(libc_name, use_errno=True) 33 libc = CDLL(libc_name, use_errno=False)
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 347 use_errno=False, argument 351 if use_errno:
|
/external/autotest/client/site_tests/kernel_CryptoAPI/ |
D | kernel_CryptoAPI.py | 94 libc = ctypes.CDLL("libc.so.6", use_errno=True)
|
/external/python/cpython2/Doc/library/ |
D | ctypes.rst | 1355 .. class:: CDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False) 1362 .. class:: OleDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False) 1372 .. class:: WinDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False) 1407 The *use_errno* parameter, when set to true, enables a ctypes mechanism that 1410 variable; if you call foreign functions created with ``use_errno=True`` then the 1425 The *use_last_error* and *use_errno* optional parameters were added. 1630 .. function:: CFUNCTYPE(restype, *argtypes, use_errno=False, use_last_error=False) 1634 *use_errno* is set to true, the ctypes private copy of the system 1640 The optional *use_errno* and *use_last_error* parameters were added. 1643 .. function:: WINFUNCTYPE(restype, *argtypes, use_errno=False, use_last_error=False) [all …]
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 2867 ``use_errno=True`` as a keyword parameter to the :func:`DLL` function
|