Home
last modified time | relevance | path

Searched refs:u_int8_t (Results 1 – 25 of 81) sorted by relevance

1234

/external/libusb-compat/libusb/
Dusb.h81 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/
Drijndael-api-fst.h54 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 …]
Drijndael-alg-fst.h19 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…
Drijndael_local.h6 typedef u_int8_t BYTE;
7 typedef u_int8_t word8;
/external/ipsec-tools/src/racoon/
Disakmp.h67 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 …]
Dhandler.h129 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;
Dpolicy.h43 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 */
Dadmin.h97 u_int8_t prefs;
98 u_int8_t prefd;
99 u_int8_t ul_proto;
100 u_int8_t reserved;
Dipsec_doi.h163 u_int8_t type; /* ID Type */
164 u_int8_t proto_id; /* Protocol ID */
223 u_int8_t *, u_int16_t *));
/external/libpcap/pcap/
Dusb.h58 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 …]
Dnflog.h43 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/
Dsha2.h66 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/
Dtcp.h70 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/
Dsockstorage.h31 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/
Dnfnetlink_log.h24 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;
Dnfnetlink_queue.h22 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 */
Dnfnetlink.h42 u_int8_t nfgen_family; /* AF_xxx */
43 u_int8_t version; /* nfnetlink version */
/external/iptables/include/linux/netfilter_ipv6/
Dip6_tables.h78 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/
Dip_tables.h79 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/
Dipx_pton.c46 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/
Dlibpfkey.h86 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/
Dpcap-netfilter-linux-android.h21 int android_nflog_send_config_cmd(int fd, u_int16_t group_id, u_int8_t cmd, u_int8_t family);
Dpcap-netfilter-linux-android.c20 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/
Dxtables.h223 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/
Dplatform.h56 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;

1234