Searched refs:key (Results 426 - 450 of 570) sorted by relevance

<<11121314151617181920>>

/haiku/src/bin/unzip/
H A Dglobals.h293 char *key; /* crypt static: decryption password or NULL */ member in struct:Globals
/haiku/src/tests/system/kernel/slab/
H A DSlab.h331 size_t HashKey(void *key) const
333 return (((uint8_t *)key) - ((uint8_t *)0)) >> parent->fLowerBoundary;
338 bool Compare(void *key, Link *value) const argument
340 return value->buffer == key;
/haiku/src/bin/package/
H A Dcommand_extract.cpp261 size_t HashKey(const char* key) const
263 return string_hash(key);
271 bool Compare(const char* key, const Entry* value) const argument
273 return strcmp(value->Name(), key) == 0;
/haiku/src/servers/app/stackandtile/
H A DStackAndTile.h59 virtual bool KeyPressed(uint32 what, int32 key,
/haiku/headers/libs/glut/GL/
H A Dglut.h628 GLUTAPI void GLUTAPIENTRY glutKeyboardFunc(void (GLUTCALLBACK *func)(unsigned char key, int x, int y));
638 GLUTAPI void GLUTAPIENTRY glutSpecialFunc(void (GLUTCALLBACK *func)(int key, int x, int y));
653 GLUTAPI void GLUTAPIENTRY glutKeyboardUpFunc(void (GLUTCALLBACK *func)(unsigned char key, int x, int y));
654 GLUTAPI void GLUTAPIENTRY glutSpecialUpFunc(void (GLUTCALLBACK *func)(int key, int x, int y));
/haiku/src/servers/registrar/
H A DTRoster.h97 void _AddIARRequest(IARRequestMap& map, int32 key,
/haiku/src/add-ons/translators/gif/
H A DGIFSave.cpp583 unsigned int key = (r << 16) + (g << 8) + b;
584 ColorCache* cc = (ColorCache*)hash->GetItem(key);
587 cc->key = key;
/haiku/src/servers/app/drawing/interface/remote/
H A DRemoteHWInterface.h97 static int _CallbackCompare(const uint32* key,
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_wds.c418 struct ieee80211_key *key; local
570 if (ieee80211_crypto_decap(ni, m, hdrspace, &key) == 0) {
580 key = NULL;
606 if (!ieee80211_crypto_demic(vap, key, m, 0)) {
639 * authorization. For open/shared-key
/haiku/src/add-ons/input_server/devices/virtio/
H A DVirtioInputDevice.cpp60 TRACE("key, ");
405 KeyboardHandler::_IsKeyPressed(const KeyboardState &state, uint32 key) argument
407 return key < 256 && IsBitSet(state.keys[key / 8], key % 8);
575 msg->AddInt32("key", i);
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp135 size_t HashKey(const NodeListenerKey& key) const
137 return key.HashValue();
145 bool Compare(const NodeListenerKey& key, argument
148 return key == *value;
/haiku/src/system/kernel/
H A Dsystem_info.cpp213 size_t HashKey(int32 key) const
215 return key;
223 bool Compare(int32 key, const ListenerList* value) const argument
225 return value->object == key;
/haiku/src/libs/compat/openbsd_wlan/
H A Dsubr_tree.c440 /* Finds the node with the same key as elm */
442 _rb_find(const struct rb_type *t, struct rb_tree *rbt, const void *key) argument
450 comp = (*t->t_compare)(key, node);
462 /* Finds the first node greater than or equal to the search key */
464 _rb_nfind(const struct rb_type *t, struct rb_tree *rbt, const void *key) argument
473 comp = (*t->t_compare)(key, node);
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/usb/wlan/
H A Dif_rumvar.h73 struct ieee80211_key key; member in union:sec_param
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DCheckVisitor.cpp761 uint8 key[MAX_INDEX_KEY_LENGTH]; local
762 size_t keyLength = sizeof(key);
763 if (inode->ReadAttribute(index->name, B_ANY_TYPE, 0, key,
765 status = tree->Insert(transaction, key, keyLength, inode->ID());
/haiku/src/system/kernel/device_manager/
H A DIOSchedulerSimple.cpp74 size_t HashKey(thread_id key) const { return key; }
76 bool Compare(thread_id key, const IORequestOwner* value) const argument
77 { return value->thread == key; }
H A Dlegacy_drivers.cpp165 size_t HashKey(ino_t* key) const
166 { return _Hash(*key); }
169 bool Compare(ino_t* key, directory_node_entry* entry) const argument
170 { return *key == entry->node; }
228 size_t HashKey(KeyType key) const
230 return hash_hash_string(key);
238 bool Compare(KeyType key, ValueType* driver) const argument
240 return strcmp(driver->name, key) == 0;
/haiku/src/system/kernel/locks/
H A Duser_mutex.cpp46 size_t HashKey(generic_addr_t key) const
48 return key >> 2;
56 bool Compare(generic_addr_t key, const UserMutexEntry* value) const argument
58 return value->address == key;
/haiku/src/apps/deskbar/
H A DSwitcher.cpp114 void DoKey(uint32 key, uint32 modifiers);
269 IsKeyDown(int32 key) argument
274 return (keyInfo.key_states[key >> 3] & (1 << ((7 - key) & 7))) != 0;
590 int32 key = 0; local
591 message->FindInt32("key", &key);
593 Process((modifiers & B_SHIFT_KEY) == 0, key == 0x11);
672 int32 key; local
673 message->FindInt32("key", (int3
771 int32 key = 0; local
1727 DoKey(uint32 key, uint32 modifiers) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DAttributeIndex.cpp99 // key always less than an actual tree node with the same attribute
395 AttributeIndex::InternalFind(const void* key, size_t length) argument
402 if (!iterator->SetTo(this, TreeKey(key, length))) {
/haiku/src/servers/app/
H A DDesktopListener.cpp95 DesktopObservable::NotifyKeyPressed(uint32 what, int32 key, int32 modifiers) argument
104 if (listener->KeyPressed(what, key, modifiers))
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/
H A Dif_ipwreg.h172 uint8_t key[IEEE80211_KEYBUF_SIZE]; member in struct:ipw_hdr
237 uint8_t key[13]; member in struct:ipw_wep_key
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DCommandActuators.h30 // server add-on will execute the CommandActuator associated with a key combo
31 // when that key combo is detected.
40 // Called by the InputFilter whenever a key is pressed or depressed.
126 int32 offsets[128], char key,
129 void _SetStateBit(uint8* setStates, uint32 key,
228 // B_KEY_DOWN events are detected for its key This way a key can act sort of
/haiku/src/bin/bfs_tools/lib/
H A Ddump.cpp236 char* key = (char *)node->KeyAt(i, &length); local
244 memcpy(buffer, key, length);
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/
H A Dif_rtwn_cam.c131 "%s: group key slot %d is already used!\n",
185 "%s: no free space in the key table\n", __func__);
237 /* Write key. */
268 const struct ieee80211_key *k = &data->key;
296 struct ieee80211_key *k = &data->key;
306 /* Clear key. */

Completed in 513 milliseconds

<<11121314151617181920>>