Home
last modified time | relevance | path

Searched full:can (Results 1 – 25 of 19542) sorted by relevance

12345678910>>...782

/external/ethtool/libmnl/include/linux/
Dcan.h3 * linux/can.h
5 * Definitions for CAN network layer (socket addr / CAN frame / CAN filter)
53 /* controller area network (CAN) kernel definitions */
60 /* valid bits in CAN ID for frame formats */
69 * bit 0-28 : CAN identifier (11/29 bit)
83 * bit 0-28 : error class mask (see include/uapi/linux/can/error.h)
88 /* CAN payload length and DLC definitions according to ISO 11898-1 */
93 /* CAN FD payload length and DLC definitions according to ISO 11898-7 */
98 * CAN XL payload length and DLC definitions according to ISO 11898-1
99 * CAN XL DLC ranges from 0 .. 2047 => data length from 1 .. 2048 byte
[all …]
/external/scapy/test/contrib/
Disotp_message_builder.uts13 conf.contribs['ISOTP'] = {'use-can-isotp-kernel-module': False}
15 load_layer("can", globals_dict=globals())
25 ff = CAN(identifier=0x241, data=dhex("10 28 01 02 03 04 05 06"))
28 m.feed(CAN(identifier=0x641, data=dhex("30 03 00" )))
29 m.feed(CAN(identifier=0x241, data=dhex("21 07 08 09 0A 0B 0C 0D")))
30 m.feed(CAN(identifier=0x241, data=dhex("22 0E 0F 10 11 12 13 14")))
31 m.feed(CAN(identifier=0x241, data=dhex("23 15 16 17 18 19 1A 1B")))
32 m.feed(CAN(identifier=0x641, data=dhex("30 03 00" )))
33 m.feed(CAN(identifier=0x241, data=dhex("24 1C 1D 1E 1F 20 21 22")))
34 m.feed(CAN(identifier=0x241, data=dhex("25 23 24 25 26 27 28" )))
[all …]
Dcansocket_native.uts9 + Configuration of CAN virtual sockets
13 load_layer("can", globals_dict=globals())
14 conf.contribs['CANSocket'] = {'use-python-can': False}
16 conf.contribs['CAN'] = {'swap-bytes': False, 'remove-padding': True}
32 = CAN Packet init
33 canframe = CAN(identifier=0x7ff,length=8,data=b'\x01\x02\x03\x04\x05\x06\x07\x08')
37 = CAN Socket Init
40 = CAN Socket send recv small packet without remove padding
42 conf.contribs['CAN'] = {'swap-bytes': False, 'remove-padding': False}
45 sock2.send(CAN(identifier=0x7ff,length=1,data=b'\x01'))
[all …]
Dcansocket_python_can.uts9 + Configuration of CAN virtual sockets
14 conf.contribs['CAN'] = {'swap-bytes': False, 'remove-padding': True}
15 load_layer("can", globals_dict=globals())
16 conf.contribs['CANSocket'] = {'use-python-can': True}
47 = CAN Packet init
49 canframe = CAN(identifier=0x7ff,length=8,data=b'\x01\x02\x03\x04\x05\x06\x07\x08')
53 = CAN Socket Init
60 = CAN Socket send recv small packet
65 sock2.send(CAN(identifier=0x7ff,length=1,data=b'\x01'))
70 assert rx == CAN(identifier=0x7ff,length=1,data=b'\x01')
[all …]
Disotp_soft_socket.uts10 from scapy.layers.can import *
49 with TestSocket(CAN) as s, TestSocket(CAN) as tx_sock:
52 tx_sock.send(CAN(identifier=f[0], data=dhex(f[1])))
63 = CAN socket FD
69 = CAN socket non-FD
77 with TestSocket(CAN) as cans, TestSocket(CAN) as stim, ISOTPSoftSocket(cans, tx_id=0x641, rx_id=0x2…
79 stim.send(CAN(identifier=0x241, data=dhex("05 01 02 03 04 05")))
111 with TestSocket(CAN) as cans, TestSocket(CAN) as stim, ISOTPSoftSocket(cans, tx_id=0x641, rx_id=0x2…
145 with TestSocket(CAN) as cans, TestSocket(CAN) as stim, ISOTPSoftSocket(cans, tx_id=0x641, rx_id=0x2…
147 stim.send(CAN(identifier=0x241, data=dhex("10 09 01 02 03 04 05 06")))
[all …]
Dcansocket.uts9 + Configuration of CAN virtual sockets
13 load_layer("can", globals_dict=globals())
17 conf.contribs['CAN'] = {'swap-bytes': False, 'remove-padding': True}
49 sock2.send(CAN(identifier=0x7ff,length=1,data=b'\x01'))
54 assert rx == CAN(identifier=0x7ff,length=1,data=b'\x01')
60 sock2.send(CAN(identifier=0x7ff,length=1,data=b'\x01'))
63 assert rx == CAN(identifier=0x7ff,length=1,data=b'\x01')
70 sock2.send(CAN(identifier=0x7ff,length=1,data=b'\x01'))
75 assert rx == CAN(identifier=0x7ff,length=1,data=b'\x01')
81 sock2.send(CAN(identifier=0x7ff,length=1,data=b'\x01'))
[all …]
Disotpscan.uts26 pkt = CAN(identifier=0x200, length=8, data=b'\x01\x02\x03\x04\x05\x06\x07\x08')
38 outlier = CAN(identifier=300, length=8, data=b'\x01\x02\x03\x04\x05\x06\x07\x08')
41 pkt = CAN(identifier=0x200, length=8, data=b'\x01\x02\x03\x04\x05\x06\x07\x08')
54 pkt = CAN(identifier=0x200, length=8, data=b'\x01\x02\x03\x04\x05\x06\x07\x08')
73 sock_sender = TestSocket(CAN)
77 sock_recv = TestSocket(CAN)
93 sock_sender = TestSocket(CAN)
94 sock_recv = TestSocket(CAN)
103 rpkt = CAN(flags=0, identifier=0x700, length=4, data=b'\xaa0\x00\x00')
110 sock_sender = TestSocket(CAN)
[all …]
/external/kernel-headers/original/uapi/linux/
Dcan.h3 * linux/can.h
5 * Definitions for CAN network layer (socket addr / CAN frame / CAN filter)
53 /* controller area network (CAN) kernel definitions */
60 /* valid bits in CAN ID for frame formats */
69 * bit 0-28 : CAN identifier (11/29 bit)
83 * bit 0-28 : error class mask (see include/uapi/linux/can/error.h)
88 /* CAN payload length and DLC definitions according to ISO 11898-1 */
93 /* CAN FD payload length and DLC definitions according to ISO 11898-7 */
98 * CAN XL payload length and DLC definitions according to ISO 11898-1
99 * CAN XL DLC ranges from 0 .. 2047 => data length from 1 .. 2048 byte
[all …]
Dmii.h63 #define BMSR_100HALF2 0x0200 /* Can do 100BASE-T2 HDX */
64 #define BMSR_100FULL2 0x0400 /* Can do 100BASE-T2 FDX */
65 #define BMSR_10HALF 0x0800 /* Can do 10mbps, half-duplex */
66 #define BMSR_10FULL 0x1000 /* Can do 10mbps, full-duplex */
67 #define BMSR_100HALF 0x2000 /* Can do 100mbps, half-duplex */
68 #define BMSR_100FULL 0x4000 /* Can do 100mbps, full-duplex */
69 #define BMSR_100BASE4 0x8000 /* Can do 100mbps, 4k packets */
86 #define ADVERTISE_RFAULT 0x2000 /* Say we can detect faults */
97 #define LPA_10HALF 0x0020 /* Can do 10mbps half-duplex */
98 #define LPA_1000XFULL 0x0020 /* Can do 1000BASE-X full-duplex */
[all …]
/external/jspecify/docs/docs/
Duser-guide.md34 1. It can include `null` (it is "nullable").
38 4. We don't know whether it can include `null` (it has "unspecified nullness").
41 For a given variable `x`, if `x` can be `null` then `x.getClass()` is unsafe
42 because it could produce a `NullPointerException`. If `x` can't be `null`,
43 `x.getClass()` can never produce a `NullPointerException`. If we don't know
44 whether `x` can be `null` or not, we don't know whether `x.getClass()` is safe
47 The notion of "can't be `null`" should really be read with a footnote that says
51 possibly-`null` value to a method that is expecting a "can't be `null`"
61 * another scope annotation that undoes the effects of `@NullMarked` so you can
67 can be `null`. `@Nullable String x` means that `x` might be `null`. Code that
[all …]
/external/kernel-headers/original/uapi/linux/can/
Dgw.h3 * linux/can/gw.h
5 * Definitions for CAN frame Gateway/Router/Bridge
49 #include <linux/can.h>
57 /* CAN gateway types */
60 CGW_TYPE_CAN_CAN, /* CAN->CAN routing */
66 /* CAN rtnetlink attribute definitions */
69 CGW_MOD_AND, /* CAN frame modification binary AND */
70 CGW_MOD_OR, /* CAN frame modification binary OR */
71 CGW_MOD_XOR, /* CAN frame modification binary XOR */
72 CGW_MOD_SET, /* CAN frame modification set alternate values */
[all …]
Dnetlink.h3 * linux/can/netlink.h
5 * Definitions for the CAN netlink interface
9 * This program is free software; you can redistribute it and/or modify
25 * CAN bit-timing parameters
28 * REQUIREMENTS" of the "Bosch CAN Specification version 2.0"
43 * CAN hardware-dependent bit-timing constant
48 char name[16]; /* Name of the CAN controller hardware */
60 * CAN clock parameters
63 __u32 freq; /* CAN system clock frequency in Hz */
67 * CAN operational and error states
[all …]
/external/python/google-api-python-client/docs/dyn/
Ddrive_v2.drives.html131 …kground image for this shared drive is set. This is a write only field; it can only be set on driv…
139 …&quot;canAddChildren&quot;: True or False, # Whether the current user can add children to folders …
140 …iterPermissionRestriction&quot;: True or False, # Whether the current user can change the copyRequ…
141 …&quot;canChangeDomainUsersOnlyRestriction&quot;: True or False, # Whether the current user can cha…
142 …&quot;canChangeDriveBackground&quot;: True or False, # Whether the current user can change the bac…
143 …&quot;canChangeDriveMembersOnlyRestriction&quot;: True or False, # Whether the current user can ch…
144 …&quot;canComment&quot;: True or False, # Whether the current user can comment on files in this sha…
145 …&quot;canCopy&quot;: True or False, # Whether the current user can copy files in this shared drive.
146 …&quot;canDeleteChildren&quot;: True or False, # Whether the current user can delete children from …
147 …&quot;canDeleteDrive&quot;: True or False, # Whether the current user can delete this shared drive…
[all …]
Ddrive_v3.drives.html120 …kground image for this shared drive is set. This is a write only field; it can only be set on driv…
128 …&quot;canAddChildren&quot;: True or False, # Whether the current user can add children to folders …
129 …iterPermissionRestriction&quot;: True or False, # Whether the current user can change the copyRequ…
130 …&quot;canChangeDomainUsersOnlyRestriction&quot;: True or False, # Whether the current user can cha…
131 …&quot;canChangeDriveBackground&quot;: True or False, # Whether the current user can change the bac…
132 …&quot;canChangeDriveMembersOnlyRestriction&quot;: True or False, # Whether the current user can ch…
133 …&quot;canComment&quot;: True or False, # Whether the current user can comment on files in this sha…
134 …&quot;canCopy&quot;: True or False, # Whether the current user can copy files in this shared drive.
135 …&quot;canDeleteChildren&quot;: True or False, # Whether the current user can delete children from …
136 …&quot;canDeleteDrive&quot;: True or False, # Whether the current user can delete this shared drive…
[all …]
Ddrive_v3.teamdrives.html114 …ackground image for this Team Drive is set. This is a write only field; it can only be set on driv…
122 …&quot;canAddChildren&quot;: True or False, # Whether the current user can add children to folders …
123 …iterPermissionRestriction&quot;: True or False, # Whether the current user can change the copyRequ…
124 …&quot;canChangeDomainUsersOnlyRestriction&quot;: True or False, # Whether the current user can cha…
125 …&quot;canChangeTeamDriveBackground&quot;: True or False, # Whether the current user can change the…
126 …&quot;canChangeTeamMembersOnlyRestriction&quot;: True or False, # Whether the current user can cha…
127 …&quot;canComment&quot;: True or False, # Whether the current user can comment on files in this Tea…
128 … &quot;canCopy&quot;: True or False, # Whether the current user can copy files in this Team Drive.
129 …&quot;canDeleteChildren&quot;: True or False, # Whether the current user can delete children from …
130 …&quot;canDeleteTeamDrive&quot;: True or False, # Whether the current user can delete this Team Dri…
[all …]
Ddrive_v2.teamdrives.html125 …ackground image for this Team Drive is set. This is a write only field; it can only be set on driv…
133 …&quot;canAddChildren&quot;: True or False, # Whether the current user can add children to folders …
134 …iterPermissionRestriction&quot;: True or False, # Whether the current user can change the copyRequ…
135 …&quot;canChangeDomainUsersOnlyRestriction&quot;: True or False, # Whether the current user can cha…
136 …&quot;canChangeTeamDriveBackground&quot;: True or False, # Whether the current user can change the…
137 …&quot;canChangeTeamMembersOnlyRestriction&quot;: True or False, # Whether the current user can cha…
138 …&quot;canComment&quot;: True or False, # Whether the current user can comment on files in this Tea…
139 … &quot;canCopy&quot;: True or False, # Whether the current user can copy files in this Team Drive.
140 …&quot;canDeleteChildren&quot;: True or False, # Whether the current user can delete children from …
141 …&quot;canDeleteTeamDrive&quot;: True or False, # Whether the current user can delete this Team Dri…
[all …]
Dgroupssettings_v1.groups.html106 …A String&quot;, # Identifies whether members external to your organization can join the group. Pos…
107 # - true: G Suite users external to your organization can become members of this group.
111 # - false: Google can not contact managers of this group.
119 # - false: The group is active and can receive messages.
129 …&quot;default_sender&quot;: &quot;A String&quot;, # Default sender for members who can post messag…
131 …This property can be updated using the Directory API. Note: Only a group owner can change a group&…
132 … to send email and the web address people use to access your group. People can&#x27;t reach your g…
151 …# - true: Group member can post messages using the group&#x27;s email address instead of their own…
152 # - false: Members can not post in behalf of the group&#x27;s email address.
185 # - ALL_MEMBERS_CAN_ADD: Managers and members can directly add new members.
[all …]
/external/iproute2/include/uapi/linux/
Dcan.h3 * linux/can.h
5 * Definitions for CAN network layer (socket addr / CAN frame / CAN filter)
52 /* controller area network (CAN) kernel definitions */
59 /* valid bits in CAN ID for frame formats */
67 * bit 0-28 : CAN identifier (11/29 bit)
80 * bit 0-28 : error class mask (see include/linux/can/error.h)
85 /* CAN payload length and DLC definitions according to ISO 11898-1 */
89 /* CAN FD payload length and DLC definitions according to ISO 11898-7 */
94 * struct can_frame - basic CAN frame structure
95 * @can_id: CAN ID of the frame and CAN_*_FLAG flags, see canid_t definition
[all …]
/external/scapy/scapy/contrib/
Dcansocket_python_can.py6 # scapy.contrib.description = python-can CANSocket
10 Python-CAN CANSocket Wrapper.
23 from scapy.layers.can import CAN
36 from can import Message as can_Message
37 from can import CanError as can_CanError
38 from can import BusABC as can_BusABC
39 from can.interface import Bus as can_Bus
45 """Internal Helper class to map a python-can bus object to
52 :param bus: A python-can Bus object
54 messages from the provided python-can Bus object.
[all …]
/external/google-cloud-java/java-analytics-data/proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/
DPropertyQuotaOrBuilder.java30 * Standard Analytics Properties can use up to 25,000 tokens per day;
31 * Analytics 360 Properties can use 250,000 tokens per day. Most requests
44 * Standard Analytics Properties can use up to 25,000 tokens per day;
45 * Analytics 360 Properties can use 250,000 tokens per day. Most requests
58 * Standard Analytics Properties can use up to 25,000 tokens per day;
59 * Analytics 360 Properties can use 250,000 tokens per day. Most requests
71 * Standard Analytics Properties can use up to 5,000 tokens per hour;
72 * Analytics 360 Properties can use 50,000 tokens per hour. An API request
86 * Standard Analytics Properties can use up to 5,000 tokens per hour;
87 * Analytics 360 Properties can use 50,000 tokens per hour. An API request
[all …]
/external/skia/resources/sksl/errors/
DCanExitWithoutReturningValue.sksl98 function 'if_only' can exit without returning a value
99 function 'return_on_if_but_not_else' can exit without returning a value
100 function 'return_on_else_but_not_if' can exit without returning a value
101 function 'for_with_conditional_return' can exit without returning a value
102 function 'for_with_conditional_break' can exit without returning a value
103 function 'for_with_conditional_continue' can exit without returning a value
104 function 'do_with_conditional_return' can exit without returning a value
105 function 'do_with_conditional_break' can exit without returning a value
106 function 'do_with_conditional_continue' can exit without returning a value
107 function 'bad_if_else_chain' can exit without returning a value
[all …]
/external/libnl/include/linux-private/linux/can/
Dnetlink.h3 * linux/can/netlink.h
5 * Definitions for the CAN netlink interface
9 * This program is free software; you can redistribute it and/or modify
25 * CAN bit-timing parameters
28 * REQUIREMENTS" of the "Bosch CAN Specification version 2.0"
43 * CAN hardware-dependent bit-timing constant
48 char name[16]; /* Name of the CAN controller hardware */
60 * CAN clock parameters
63 __u32 freq; /* CAN system clock frequency in Hz */
67 * CAN operational and error states
[all …]
/external/ethtool/libmnl/include/linux/can/
Dnetlink.h3 * linux/can/netlink.h
5 * Definitions for the CAN netlink interface
9 * This program is free software; you can redistribute it and/or modify
25 * CAN bit-timing parameters
28 * REQUIREMENTS" of the "Bosch CAN Specification version 2.0"
43 * CAN hardware-dependent bit-timing constant
48 char name[16]; /* Name of the CAN controller hardware */
60 * CAN clock parameters
63 __u32 freq; /* CAN system clock frequency in Hz */
67 * CAN operational and error states
[all …]
/external/google-cloud-java/java-analytics-data/proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/
DPropertyQuotaOrBuilder.java30 * Standard Analytics Properties can use up to 25,000 tokens per day;
31 * Analytics 360 Properties can use 250,000 tokens per day. Most requests
44 * Standard Analytics Properties can use up to 25,000 tokens per day;
45 * Analytics 360 Properties can use 250,000 tokens per day. Most requests
58 * Standard Analytics Properties can use up to 25,000 tokens per day;
59 * Analytics 360 Properties can use 250,000 tokens per day. Most requests
71 * Standard Analytics Properties can use up to 5,000 tokens per hour;
72 * Analytics 360 Properties can use 50,000 tokens per hour. An API request
86 * Standard Analytics Properties can use up to 5,000 tokens per hour;
87 * Analytics 360 Properties can use 50,000 tokens per hour. An API request
[all …]
/external/coreboot/src/mainboard/cavium/cn8100_sff_evb/
Dddr4-common.dtsi18 N#: Parameter can be different for each node. This specifies
27 N#: Parameter can be different for each node. This specifies
37 LMC#: Parameter can be different for memory controller. This
40 N#: Parameter can be different for each node. This specifies
51 LMC#: Parameter can be different for memory controller. This
54 N#: Parameter can be different for each node. This specifies
74 LMC#: Parameter can be different for memory controller. This
77 N#: Parameter can be different for each node. This specifies
85 DDR3 DQ/DQS I/Os have built-in termination resistors that can be
108 LMC#: Parameter can be different for memory controller. This
[all …]

12345678910>>...782