/external/ethtool/libmnl/include/linux/ |
D | can.h | 3 * 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/ |
D | isotp_message_builder.uts | 13 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 …]
|
D | cansocket_native.uts | 9 + 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 …]
|
D | cansocket_python_can.uts | 9 + 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 …]
|
D | isotp_soft_socket.uts | 10 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 …]
|
D | cansocket.uts | 9 + 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 …]
|
D | isotpscan.uts | 26 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/ |
D | can.h | 3 * 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 …]
|
D | mii.h | 63 #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/ |
D | user-guide.md | 34 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/ |
D | gw.h | 3 * 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 …]
|
D | netlink.h | 3 * 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/ |
D | drive_v2.drives.html | 131 …kground image for this shared drive is set. This is a write only field; it can only be set on driv… 139 …"canAddChildren": True or False, # Whether the current user can add children to folders … 140 …iterPermissionRestriction": True or False, # Whether the current user can change the copyRequ… 141 …"canChangeDomainUsersOnlyRestriction": True or False, # Whether the current user can cha… 142 …"canChangeDriveBackground": True or False, # Whether the current user can change the bac… 143 …"canChangeDriveMembersOnlyRestriction": True or False, # Whether the current user can ch… 144 …"canComment": True or False, # Whether the current user can comment on files in this sha… 145 …"canCopy": True or False, # Whether the current user can copy files in this shared drive. 146 …"canDeleteChildren": True or False, # Whether the current user can delete children from … 147 …"canDeleteDrive": True or False, # Whether the current user can delete this shared drive… [all …]
|
D | drive_v3.drives.html | 120 …kground image for this shared drive is set. This is a write only field; it can only be set on driv… 128 …"canAddChildren": True or False, # Whether the current user can add children to folders … 129 …iterPermissionRestriction": True or False, # Whether the current user can change the copyRequ… 130 …"canChangeDomainUsersOnlyRestriction": True or False, # Whether the current user can cha… 131 …"canChangeDriveBackground": True or False, # Whether the current user can change the bac… 132 …"canChangeDriveMembersOnlyRestriction": True or False, # Whether the current user can ch… 133 …"canComment": True or False, # Whether the current user can comment on files in this sha… 134 …"canCopy": True or False, # Whether the current user can copy files in this shared drive. 135 …"canDeleteChildren": True or False, # Whether the current user can delete children from … 136 …"canDeleteDrive": True or False, # Whether the current user can delete this shared drive… [all …]
|
D | drive_v3.teamdrives.html | 114 …ackground image for this Team Drive is set. This is a write only field; it can only be set on driv… 122 …"canAddChildren": True or False, # Whether the current user can add children to folders … 123 …iterPermissionRestriction": True or False, # Whether the current user can change the copyRequ… 124 …"canChangeDomainUsersOnlyRestriction": True or False, # Whether the current user can cha… 125 …"canChangeTeamDriveBackground": True or False, # Whether the current user can change the… 126 …"canChangeTeamMembersOnlyRestriction": True or False, # Whether the current user can cha… 127 …"canComment": True or False, # Whether the current user can comment on files in this Tea… 128 … "canCopy": True or False, # Whether the current user can copy files in this Team Drive. 129 …"canDeleteChildren": True or False, # Whether the current user can delete children from … 130 …"canDeleteTeamDrive": True or False, # Whether the current user can delete this Team Dri… [all …]
|
D | drive_v2.teamdrives.html | 125 …ackground image for this Team Drive is set. This is a write only field; it can only be set on driv… 133 …"canAddChildren": True or False, # Whether the current user can add children to folders … 134 …iterPermissionRestriction": True or False, # Whether the current user can change the copyRequ… 135 …"canChangeDomainUsersOnlyRestriction": True or False, # Whether the current user can cha… 136 …"canChangeTeamDriveBackground": True or False, # Whether the current user can change the… 137 …"canChangeTeamMembersOnlyRestriction": True or False, # Whether the current user can cha… 138 …"canComment": True or False, # Whether the current user can comment on files in this Tea… 139 … "canCopy": True or False, # Whether the current user can copy files in this Team Drive. 140 …"canDeleteChildren": True or False, # Whether the current user can delete children from … 141 …"canDeleteTeamDrive": True or False, # Whether the current user can delete this Team Dri… [all …]
|
D | groupssettings_v1.groups.html | 106 …A String", # 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 …"default_sender": "A String", # 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't reach your g… 151 …# - true: Group member can post messages using the group's email address instead of their own… 152 # - false: Members can not post in behalf of the group's email address. 185 # - ALL_MEMBERS_CAN_ADD: Managers and members can directly add new members. [all …]
|
/external/iproute2/include/uapi/linux/ |
D | can.h | 3 * 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/ |
D | cansocket_python_can.py | 6 # 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/ |
D | PropertyQuotaOrBuilder.java | 30 * 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/ |
D | CanExitWithoutReturningValue.sksl | 98 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/ |
D | netlink.h | 3 * 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/ |
D | netlink.h | 3 * 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/ |
D | PropertyQuotaOrBuilder.java | 30 * 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/ |
D | ddr4-common.dtsi | 18 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 …]
|