Searched defs:key (Results 1 - 25 of 315) sorted by relevance

1234567891011>>

/drivers/macintosh/
H A Dvia-pmu-event.c59 void via_pmu_event(int key, int down) argument
65 switch (key) {
73 /* no such key handled */
/drivers/net/ethernet/cisco/enic/
H A Dvnic_rss.h22 /* RSS key array */
27 } key[4]; member in union:vnic_rss_key
/drivers/usb/storage/
H A Ddebug.c160 unsigned char key,
166 keystr = scsi_sense_key_string(key);
159 usb_stor_show_sense( unsigned char key, unsigned char asc, unsigned char ascq) argument
/drivers/net/wireless/bcmdhd/include/
H A Dminiopt.h56 char key[MINIOPT_MAXKEY]; member in struct:miniopt
/drivers/net/wireless/orinoco/
H A Dmic.c46 int orinoco_mic(struct crypto_hash *tfm_michael, u8 *key, argument
72 if (crypto_hash_setkey(tfm_michael, key, MIC_KEYLEN))
/drivers/staging/wlan-ng/
H A Dp80211req.c189 u8 *key = mibitem->data + sizeof(p80211pstrd_t); local
194 wep_change_key(wlandev, 0, key, pstr->len);
199 wep_change_key(wlandev, 1, key, pstr->len);
204 wep_change_key(wlandev, 2, key, pstr->len);
209 wep_change_key(wlandev, 3, key, pstr->len);
H A Dp80211wep.c123 int wep_change_key(wlandevice_t *wlandev, int keynum, u8 *key, int keylen) argument
129 if (key == NULL)
138 "WEP key %d len %d = %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
139 keynum, keylen, key[0], key[1], key[2], key[3], key[4], key[5],
140 key[
157 u8 s[256], key[64], c_crc[4]; local
236 u8 s[256], key[64]; local
[all...]
/drivers/ide/
H A Dide-cd_verbose.c213 { 0x056f00, "Copy protection key exchange failure"
215 { 0x056f01, "Copy protection key exchange failure - Key not present" },
216 { 0x056f02, "Copy protection key exchange failure"
236 /* Here we use 0xff for the key (not a valid key) to signify
237 * that these can have _any_ key value associated with them... */
255 const char *s = "bad sense key!";
271 printk(KERN_CONT "%s -- (Sense key=0x%02x)\n", s, sense->sense_key);
279 unsigned long key = (sense->sense_key << 16); local
281 key |
[all...]
/drivers/infiniband/hw/cxgb3/
H A Diwch_user.h49 __u64 key; member in struct:iwch_create_cq_resp_v0
55 __u64 key; member in struct:iwch_create_cq_resp
63 __u64 key; member in struct:iwch_create_qp_resp
/drivers/infiniband/hw/cxgb4/
H A Duser.h45 __u64 key; member in struct:c4iw_create_cq_resp
/drivers/input/keyboard/
H A Dpxa930_rotary.c45 int ercr, delta, key; local
57 key = (delta > 0) ? pdata->up_key : pdata->down_key;
58 input_report_key(r->input_dev, key, 1);
60 input_report_key(r->input_dev, key, 0);
/drivers/media/dvb/dvb-usb/
H A Da800.c82 u8 *key = kmalloc(5, GFP_KERNEL); local
83 if (!key)
87 0x04, USB_TYPE_VENDOR | USB_DIR_IN, 0, 0, key, 5,
93 /* call the universal NEC remote processor, to find out the key's state and event */
94 dvb_usb_nec_rc_key_to_event(d,key,event,state);
95 if (key[0] != 0)
96 deb_rc("key: %x %x %x %x %x\n",key[0],key[1],key[
[all...]
H A Dnova-t-usb2.c72 /* Firmware bug? sometimes, when a new key is pressed, the previous pressed key
77 u8 key[5],cmd[2] = { DIBUSB_REQ_POLL_REMOTE, 0x35 }, data,toggle,custom; local
82 dvb_usb_generic_rw(d,cmd,2,key,5,0);
85 switch (key[0]) {
87 raw = ((key[1] << 8) | key[2]) >> 3;
92 deb_rc("raw key code 0x%02x, 0x%02x, 0x%02x to c: %02x d: %02x toggle: %d\n",key[1],key[
[all...]
/drivers/misc/ibmasm/
H A Dremote.c173 unsigned int key; local
177 key = xlate_high[code & 0xff];
179 key = xlate[code];
180 input_report_key(dev, key, input->data.keyboard.key_down);
/drivers/net/ethernet/ibm/emac/
H A Ddebug.c241 static void emac_sysrq_handler(int key) argument
/drivers/net/wireless/rt2x00/
H A Drt2x00crypto.c32 enum cipher rt2x00crypto_key_to_cipher(struct ieee80211_key_conf *key) argument
34 switch (key->cipher) {
80 struct ieee80211_key_conf *key = tx_info->control.hw_key; local
83 if (!test_bit(CAPABILITY_HW_CRYPTO, &rt2x00dev->cap_flags) || !key)
91 overhead += key->icv_len;
93 if (!(key->flags & IEEE80211_KEY_FLAG_GENERATE_IV))
94 overhead += key->iv_len;
96 if (!(key->flags & IEEE80211_KEY_FLAG_GENERATE_MMIC)) {
97 if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
/drivers/staging/rtl8192u/ieee80211/
H A Ddigest.c61 static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen) argument
67 key, keylen, &flags);
/drivers/staging/tidspbridge/gen/
H A Dgh.c110 void *gh_find(struct gh_t_hash_tab *hash_tab, void *key) argument
114 elem = hash_tab->buckets[(*hash_tab->hash) (key, hash_tab->max_bucket)];
117 if ((*hash_tab->match) (key, elem->data))
137 void *gh_insert(struct gh_t_hash_tab *hash_tab, void *key, void *value) argument
152 i = (*hash_tab->hash) (key, hash_tab->max_bucket);
/drivers/base/regmap/
H A Dregcache.c416 struct reg_default key; local
419 key.reg = reg;
420 key.def = 0;
422 r = bsearch(&key, map->reg_defaults, map->num_reg_defaults,
/drivers/char/agp/
H A Dcompat_ioctl.h71 compat_int_t key; /* tag of allocation */ member in struct:agp_allocate32
81 compat_int_t key; /* tag of allocation */ member in struct:agp_bind32
86 compat_int_t key; /* tag of allocation */ member in struct:agp_unbind32
103 struct agp_memory *agp_find_mem_by_key(int key);
/drivers/gpu/drm/
H A Ddrm_hashtab.c59 void drm_ht_verbose_list(struct drm_open_hash *ht, unsigned long key) argument
67 hashed_key = hash_long(key, ht->order);
68 DRM_DEBUG("Key is 0x%08lx, Hashed key is 0x%08x\n", key, hashed_key);
72 DRM_DEBUG("count %d, key: 0x%08lx\n", count++, entry->key);
77 unsigned long key)
84 hashed_key = hash_long(key, ht->order);
88 if (entry->key == key)
76 drm_ht_find_key(struct drm_open_hash *ht, unsigned long key) argument
103 unsigned long key = item->key; local
154 drm_ht_find_item(struct drm_open_hash *ht, unsigned long key, struct drm_hash_item **item) argument
168 drm_ht_remove_key(struct drm_open_hash *ht, unsigned long key) argument
[all...]
/drivers/hid/
H A Dhid-microsoft.c138 unsigned int key = 0; local
140 case 0x01: key = KEY_F14; break;
141 case 0x02: key = KEY_F15; break;
142 case 0x04: key = KEY_F16; break;
143 case 0x08: key = KEY_F17; break;
144 case 0x10: key = KEY_F18; break;
146 if (key) {
147 input_event(input, usage->type, key, 1);
148 last_key = key;
H A Dhid-zydacron.c117 unsigned key; local
124 key = zc->last_key[index];
125 if (key) {
126 input_event(zc->input_ep81, EV_KEY, key, 0);
131 key = 0;
137 key = KEY_MODE;
141 key = KEY_SCREEN;
145 key = KEY_INFO;
149 key = KEY_RADIO;
154 if (key) {
[all...]
/drivers/infiniband/hw/ehca/
H A Dehca_cq.c58 unsigned int key = qp_num & (QP_HASHTAB_LEN-1); local
62 hlist_add_head(&qp->list_entries, &cq->qp_hashtab[key]);
74 unsigned int key = real_qp_num & (QP_HASHTAB_LEN-1); local
80 hlist_for_each(iter, &cq->qp_hashtab[key]) {
103 unsigned int key = real_qp_num & (QP_HASHTAB_LEN-1); local
106 hlist_for_each(iter, &cq->qp_hashtab[key]) {
/drivers/input/
H A Dkeyreset.c30 unsigned long key[BITS_TO_LONGS(KEY_CNT)]; member in struct:keyreset_state
65 if (!test_bit(code, state->key) == !value)
67 __change_bit(code, state->key);
83 pr_debug("reset key changed %d %d new state %d-%d-%d\n", code, value,
137 pr_info("using input dev %s for key reset\n", dev->name);
167 int key, *keyp; local
180 while ((key = *keyp++)) {
181 if (key >= KEY_MAX)
184 __set_bit(key, state->keybit);
188 while ((key
[all...]

Completed in 647 milliseconds

1234567891011>>