/external/libusb-compat/libusb/ |
D | usb.h | 81 u_int8_t bLength; 82 u_int8_t bDescriptorType; 87 u_int8_t bLength; 88 u_int8_t bDescriptorType; 94 u_int8_t bLength; 95 u_int8_t bDescriptorType; 97 u_int8_t bCountryCode; 98 u_int8_t bNumDescriptors; 107 u_int8_t bLength; 108 u_int8_t bDescriptorType; [all …]
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
D | rijndael-api-fst.h | 54 u_int8_t direction; /* Key used for encrypting or decrypting? */ 61 u_int8_t xkS8[RIJNDAEL_MAXROUNDS+1][4][4]; /* key schedule */ 69 u_int8_t mode; /* MODE_ECB, MODE_CBC, or MODE_CFB1 */ 70 u_int8_t IV[MAX_IV_SIZE]; /* A possible Initialization Vector for ciphering */ 84 int rijndael_makeKey(keyInstance *key, u_int8_t direction, int keyLen, char *keyMaterial); 86 int rijndael_cipherInit(cipherInstance *cipher, u_int8_t mode, char *IV); 89 u_int8_t *input, int inputLen, u_int8_t *outBuffer); 92 u_int8_t *input, int inputOctets, u_int8_t *outBuffer); 95 u_int8_t *input, int inputLen, u_int8_t *outBuffer); 98 u_int8_t *input, int inputOctets, u_int8_t *outBuffer); [all …]
|
D | rijndael-alg-fst.h | 19 int rijndaelKeySched(u_int8_t k[RIJNDAEL_MAXKC][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int RO… 21 int rijndaelKeyEncToDec(u_int8_t W[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS); 23 int rijndaelEncrypt(u_int8_t a[16], u_int8_t b[16], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int RO… 26 int rijndaelEncryptRound(u_int8_t a[4][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS, int… 29 int rijndaelDecrypt(u_int8_t a[16], u_int8_t b[16], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int RO… 32 int rijndaelDecryptRound(u_int8_t a[4][4], u_int8_t rk[RIJNDAEL_MAXROUNDS+1][4][4], int ROUNDS, int…
|
D | rijndael_local.h | 6 typedef u_int8_t BYTE; 7 typedef u_int8_t word8;
|
/external/ipsec-tools/src/racoon/ |
D | isakmp.h | 67 u_int8_t np; /* Next Payload Type */ 68 u_int8_t v; 69 u_int8_t etype; /* Exchange Type */ 70 u_int8_t flags; /* Flags */ 158 u_int8_t np; /* Next Payload */ 159 u_int8_t reserved; /* RESERVED, unused, must set to 0 */ 204 u_int8_t p_no; /* Proposal # */ 205 u_int8_t proto_id; /* Protocol */ 206 u_int8_t spi_size; /* SPI Size */ 207 u_int8_t num_t; /* Number of Transforms */ [all …]
|
D | handler.h | 129 u_int8_t version; /* ISAKMP version */ 130 u_int8_t etype; /* Exchange type actually for use */ 131 u_int8_t flags; /* Flags */ 202 u_int8_t dpd_fails; /* number of failures */ 260 u_int8_t side; /* INITIATOR or RESPONDER */ 279 u_int8_t satype; /* satype in PF_KEY */ 285 u_int8_t flags; /* Flags for phase 2 */ 415 u_int8_t version; 416 u_int8_t etype;
|
D | policy.h | 43 u_int8_t ctx_doi; /* Security Context DOI */ 44 u_int8_t ctx_alg; /* Security Context Algorithm */ 61 u_int8_t dir; /* direction of packet flow, see blow */ 64 u_int8_t prefs; /* prefix length in bits for src */ 65 u_int8_t prefd; /* prefix length in bits for dst */ 93 u_int8_t mode; /* mode of protocol, see ipsec.h */
|
D | admin.h | 97 u_int8_t prefs; 98 u_int8_t prefd; 99 u_int8_t ul_proto; 100 u_int8_t reserved;
|
D | ipsec_doi.h | 163 u_int8_t type; /* ID Type */ 164 u_int8_t proto_id; /* Protocol ID */ 223 u_int8_t *, u_int16_t *));
|
/external/libpcap/pcap/ |
D | usb.h | 58 u_int8_t bmRequestType; 59 u_int8_t bRequest; 79 u_int8_t event_type; 80 u_int8_t transfer_type; 81 u_int8_t endpoint_number; 82 u_int8_t device_address; 104 u_int8_t event_type; 105 u_int8_t transfer_type; 106 u_int8_t endpoint_number; 107 u_int8_t device_address; [all …]
|
D | nflog.h | 43 u_int8_t nflog_family; /* address family */ 44 u_int8_t nflog_version; /* version */ 56 u_int8_t hook; /* netfilter hook */ 57 u_int8_t pad; /* padding to 32 bits */ 63 u_int8_t hw_addr[8]; /* address, up to 8 bytes */
|
/external/ipsec-tools/src/racoon/missing/crypto/sha2/ |
D | sha2.h | 66 typedef unsigned char u_int8_t; /* 1-byte (8-bits) */ 106 u_int8_t buffer[SHA256_BLOCK_LENGTH]; 111 u_int8_t buffer[SHA512_BLOCK_LENGTH]; 124 void SHA256_Update __P((SHA256_CTX*, const u_int8_t*, size_t)); 125 void SHA256_Final __P((u_int8_t[SHA256_DIGEST_LENGTH], SHA256_CTX*)); 128 char* SHA256_Data __P((const u_int8_t*, size_t, char[SHA256_DIGEST_STRING_LENGTH])); 132 void SHA384_Update __P((SHA384_CTX*, const u_int8_t*, size_t)); 133 void SHA384_Final __P((u_int8_t[SHA384_DIGEST_LENGTH], SHA384_CTX*)); 136 char* SHA384_Data __P((const u_int8_t*, size_t, char[SHA384_DIGEST_STRING_LENGTH])); 140 void SHA512_Update __P((SHA512_CTX*, const u_int8_t*, size_t)); [all …]
|
/external/iproute2/include/netinet/ |
D | tcp.h | 70 u_int8_t th_x2:4; /* (unused) */ 71 u_int8_t th_off:4; /* data offset */ 74 u_int8_t th_off:4; /* data offset */ 75 u_int8_t th_x2:4; /* (unused) */ 77 u_int8_t th_flags; 189 u_int8_t tcpi_state; 190 u_int8_t tcpi_ca_state; 191 u_int8_t tcpi_retransmits; 192 u_int8_t tcpi_probes; 193 u_int8_t tcpi_backoff; [all …]
|
/external/libpcap/Win32/Include/ |
D | sockstorage.h | 31 u_int8_t __ss_len; 32 u_int8_t __ss_family; 33 u_int8_t fill[126]; 35 u_int8_t __ss_family; 36 u_int8_t fill[127];
|
/external/libnl/include/linux/netfilter/ |
D | nfnetlink_log.h | 24 u_int8_t hook; /* netfilter hook */ 25 u_int8_t _pad; 31 u_int8_t hw_addr[8]; 69 u_int8_t command; /* nfulnl_msg_config_cmds */ 74 u_int8_t copy_mode; 75 u_int8_t _pad;
|
D | nfnetlink_queue.h | 22 u_int8_t hook; /* netfilter hook */ 28 u_int8_t hw_addr[8]; 68 u_int8_t command; /* nfqnl_msg_config_cmds */ 69 u_int8_t _pad; 81 u_int8_t copy_mode; /* enum nfqnl_config_mode */
|
D | nfnetlink.h | 42 u_int8_t nfgen_family; /* AF_xxx */ 43 u_int8_t version; /* nfnetlink version */
|
/external/iptables/include/linux/netfilter_ipv6/ |
D | ip6_tables.h | 78 u_int8_t tos; 81 u_int8_t flags; 83 u_int8_t invflags; 181 u_int8_t type; /* type to match */ 182 u_int8_t code[2]; /* range of code */ 183 u_int8_t invflags; /* Inverse flags */
|
/external/iptables/include/linux/netfilter_ipv4/ |
D | ip_tables.h | 79 u_int8_t flags; 81 u_int8_t invflags; 144 u_int8_t type; /* type to match */ 145 u_int8_t code[2]; /* range of code */ 146 u_int8_t invflags; /* Inverse flags */
|
/external/iproute2/lib/ |
D | ipx_pton.c | 46 static int ipx_getnode(u_int8_t *node, const char *str) in ipx_getnode() 54 node[i] = (u_int8_t)tmp; in ipx_getnode() 58 node[i] |= (u_int8_t)tmp; in ipx_getnode()
|
/external/ipsec-tools/src/libipsec/ |
D | libpfkey.h | 86 u_int8_t l_natt_type; 90 u_int8_t ctxdoi, ctxalg; /* Security context DOI and algorithm */ 176 u_int8_t, u_int16_t, u_int16_t, struct sockaddr *, u_int16_t)); 185 u_int8_t, u_int16_t, u_int16_t, struct sockaddr *, u_int16_t)); 199 static __inline u_int8_t
|
/external/libpcap/ |
D | pcap-netfilter-linux-android.h | 21 int android_nflog_send_config_cmd(int fd, u_int16_t group_id, u_int8_t cmd, u_int8_t family);
|
D | pcap-netfilter-linux-android.c | 20 android_nflog_send_config_cmd(int fd, u_int16_t group_id, u_int8_t cmd, u_int8_t family) in android_nflog_send_config_cmd()
|
/external/iptables/include/ |
D | xtables.h | 223 u_int8_t revision; 226 u_int8_t ext_flags; 300 u_int8_t revision; 303 u_int8_t ext_flags; 376 u_int8_t num;
|
/external/avahi/avahi-compat-howl/include/salt/ |
D | platform.h | 56 typedef unsigned char u_int8_t; 82 # define u_int8_t uint8_t macro 92 typedef u_int8_t sw_uint8; 93 typedef u_int8_t sw_bool; 104 typedef const u_int8_t * sw_const_octets; 107 typedef u_int8_t * sw_const_octets;
|