Home
last modified time | relevance | path

Searched refs:CAN_ISOTP (Results 1 – 8 of 8) sorted by relevance

/external/strace/xlat/
Dcan_protocols.h41 #if defined(CAN_ISOTP) || (defined(HAVE_DECL_CAN_ISOTP) && HAVE_DECL_CAN_ISOTP)
43 static_assert((CAN_ISOTP) == (6), "CAN_ISOTP != 6");
46 # define CAN_ISOTP 6
64 [CAN_ISOTP] = XLAT(CAN_ISOTP),
Dcan_protocols.in7 CAN_ISOTP 6
/external/iproute2/include/uapi/linux/
Dcan.h159 #define CAN_ISOTP 6 /* ISO 15765-2 Transport Protocol */ macro
/external/kernel-headers/original/uapi/linux/
Dcan.h159 #define CAN_ISOTP 6 /* ISO 15765-2 Transport Protocol */ macro
/external/python/cpython3/Modules/
Dsocketmodule.c1516 #ifdef CAN_ISOTP in makesockaddr()
1517 case CAN_ISOTP: in makesockaddr()
2170 #ifdef CAN_ISOTP in getsockaddrarg()
2171 case CAN_ISOTP: in getsockaddrarg()
7655 #ifdef CAN_ISOTP
7656 PyModule_AddIntMacro(m, CAN_ISOTP);
/external/python/cpython3/Doc/library/
Dsocket.rst118 - :const:`CAN_ISOTP` protocol require a tuple ``(interface, rx_addr, tx_addr)``
394 .. data:: CAN_ISOTP
396 CAN_ISOTP, in the CAN protocol family, is the ISO-TP (ISO 15765-2) protocol.
519 should be one of :const:`CAN_RAW`, :const:`CAN_BCM` or :const:`CAN_ISOTP`.
545 The CAN_ISOTP protocol was added.
/external/python/cpython3/Lib/test/
Dtest_socket.py74 s = socket.socket(socket.PF_CAN, socket.SOCK_DGRAM, socket.CAN_ISOTP)
2034 socket.CAN_ISOTP
2044 with socket.socket(socket.PF_CAN, socket.SOCK_DGRAM, socket.CAN_ISOTP) as s:
2049 with socket.socket(socket.PF_CAN, socket.SOCK_DGRAM, socket.CAN_ISOTP) as s:
2055 with socket.socket(socket.PF_CAN, socket.SOCK_DGRAM, socket.CAN_ISOTP) as s:
/external/python/cpython3/Misc/NEWS.d/
D3.8.0rc1.rst420 Fixed regression bug for socket.getsockname() for non-CAN_ISOTP AF_CAN