Searched refs:key (Results 451 - 475 of 570) sorted by relevance

<<11121314151617181920>>

/haiku/headers/os/interface/
H A DInterfaceDefs.h448 status_t get_modifier_key(uint32 modifier, uint32 *key);
449 void set_modifier_key(uint32 modifier, uint32 key);
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp344 int32 rawChar, key; local
346 event->FindInt32("key", &key);
349 message.Add(key);
354 RemoteView::_StateCompareByKey(const uint32 *key, const engine_state *state) argument
356 if (state->token == *key)
359 if (state->token < *key)
/haiku/src/add-ons/kernel/network/stack/
H A Dinterfaces.cpp46 size_t HashKey(const KeyType& key) const
48 net_domain* domain = get_domain(key->sa_family);
52 return domain->address_module->hash_address(key, false);
61 bool Compare(const KeyType& key, InterfaceAddress* address) const argument
64 return key->sa_family == AF_UNSPEC;
66 if (address->local->sa_family != key->sa_family)
69 return address->domain->address_module->equal_addresses(key,
/haiku/src/apps/webpositive/
H A DBrowserWindow.cpp695 uint32 key = BUnicodeChar::FromUTF8(unmodified.ItemAt(i)); local
696 if (!HasShortcut(key, 0)) {
698 AddShortcut(key, B_COMMAND_KEY,
727 // Some function key Firefox compatibility
728 int32 key; local
729 if (message->FindInt32("key", &key) == B_OK) {
730 switch (key) {
745 // way to react *only* when the user presses the return key in the
773 // Default escape key behavio
[all...]
/haiku/src/system/kernel/
H A Dport.cpp168 size_t HashKey(port_id key) const
170 return key;
178 bool Compare(port_id key, Port* value) const argument
180 return value->id == key;
196 size_t HashKey(const char* key) const
198 // Hash function: hash(key) = key[0] * 31^(length - 1)
199 // + key[1] * 31^(length - 2) + ... + key[length - 1]
201 const size_t length = strlen(key);
218 Compare(const char* key, Port* value) const argument
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/volume/
H A DVolume.cpp1927 Node* key = node; local
1930 if (NodeListener* listener = fNodeListeners.Lookup(key)) {
1945 key = NULL;
1953 Node* key = node; local
1956 if (NodeListener* listener = fNodeListeners.Lookup(key)) {
1971 key = NULL;
1980 Node* key = node; local
1983 if (NodeListener* listener = fNodeListeners.Lookup(key)) {
1998 key = NULL;
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DSecurityContext.cpp542 BMessage* userArchive = userArchives.Get(entry.key.user);
543 error = userArchive->AddInt32(entry.key.path.GetString(),
680 if (entry.key.user == user)
1053 if (entry.key.user == user
1054 && _GetNodeForPath(entry.key.path.GetString(), &ref)) {
/haiku/src/apps/bootmanager/
H A Dbootman.S95 %assign GET_MODIFIER_KEYS 0x02 ;-> al - modifier key bitmask
143 ; Modifier key bitmasks
392 mov ah, GET_MODIFIER_KEYS ; Disable timeout if ALT key is pressed
407 jnz inputLoop ; cancel timeout if key is pressed
427 ; ================== Wait for a key and do something with it ==================
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A Dbtrfs.h88 int32 Compare(const btrfs_key& key) const;
130 btrfs_key key; member in struct:btrfs_index
146 btrfs_key key; member in struct:btrfs_entry
/haiku/src/apps/mandelbrot/
H A DMandelbrot.cpp640 // Matches WebPositive fullscreen key (F11)
641 int32 key; local
642 if (message->FindInt32("key", &key) == B_OK) {
643 switch (key) {
/haiku/src/kits/network/libnetservices/
H A DNetworkCookieJar.cpp143 HashString key(cookie->Domain());
150 BNetworkCookieList* list = fCookieHashMap->Get(key);
159 if (fCookieHashMap->Put(key, list) != B_OK) {
173 // Remove any cookie with the same key as the one we're trying to add (it
865 // Makes a copy of the characters from the key. This is important,
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyListView.cpp68 uint32 key; local
70 if (message->FindInt32("raw_char", (int32*)&key) >= B_OK
72 if (key == B_TAB && fTarget->TabFocus(modifiers & B_SHIFT_KEY))
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformBox.cpp260 TransformBox::HandleKeyDown(uint32 key, uint32 modifiers, Command** _command) argument
269 switch (key) {
303 TransformBox::HandleKeyUp(uint32 key, uint32 modifiers, Command** _command) argument
/haiku/src/system/libnetwork/netresolv/net/
H A Dgetaddrinfo.c830 struct sockaddr_in6 key; local
834 memcpy(&key, addr, sizeof(key));
838 memset(&key, 0, sizeof(key));
839 key.sin6_family = AF_INET6;
840 key.sin6_len = sizeof(key);
841 key.sin6_addr.s6_addr[10] = 0xff;
842 key
[all...]
/haiku/src/apps/haikudepot/ui/
H A DRatePackageWindow.cpp313 int8 key; local
315 if ((message->FindInt8("byte", &key) == B_OK)
316 && key == B_ESCAPE) {
/haiku/src/add-ons/kernel/network/protocols/udp/
H A Dudp.cpp133 size_t HashKey(const KeyType &key) const
135 return _Mix(module->hash_address_pair(key.first, key.second));
151 bool Compare(const KeyType &key, UdpEndpoint *endpoint) const argument
153 return endpoint->LocalAddress().EqualTo(key.first, true)
154 && endpoint->PeerAddress().EqualTo(key.second, true);
/haiku/src/tests/kits/opengl/demos/gears/
H A Dgears.c262 key(unsigned char k, int x, int y) function
400 glutKeyboardFunc(key);
/haiku/src/kits/debugger/controllers/
H A DTeamDebugger.cpp126 size_t HashKey(image_id key) const
128 return (size_t)key;
136 bool Compare(image_id key, const ImageHandler* value) const argument
138 return value->ImageID() == key;
190 size_t HashKey(image_id key) const
192 return (size_t)key;
200 bool Compare(image_id key, const ImageInfoPendingThread* value) const argument
202 return value->ImageID() == key;
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DDebug.cpp221 char buffer[256], *key = (char *)node->KeyAt(i, &length); local
227 memcpy(buffer, key, length);
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_output.c1346 struct ieee80211_key *key, struct mbuf *m)
1351 if (key != NULL) {
1353 needed_space += key->wk_cipher->ic_header;
1361 if (key->wk_flags & (IEEE80211_KEY_SWENCRYPT|IEEE80211_KEY_SWENMIC)) {
1422 * Return the transmit key to use in sending a unicast frame.
1423 * If a unicast key is set we use that. When no unicast key is set
1424 * we fall back to the default transmit key.
1441 * Return the transmit key to use in sending a multicast frame.
1442 * Multicast traffic always uses the group key whic
1345 ieee80211_mbuf_adjust(struct ieee80211vap *vap, int hdrsize, struct ieee80211_key *key, struct mbuf *m) argument
1479 struct ieee80211_key *key; local
[all...]
/haiku/src/tests/kits/net/service/
H A Dtestserver.py446 key, value = kvpair.strip().split('=')
447 d[key.strip()] = value.strip().strip('"')
488 key_file = os.path.join(temp_cert_dir, 'key.pem')
520 help='If set, a self-signed TLS certificate, key and CA will be'
/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/ral/
H A Drt2560reg.h228 uint8_t key[IEEE80211_KEYBUF_SIZE]; member in struct:rt2560_tx_desc
255 uint8_t key[IEEE80211_KEYBUF_SIZE]; member in struct:rt2560_rx_desc
/haiku/src/tests/kits/net/netservices2/
H A Dtestserver.py446 key, value = kvpair.strip().split('=')
447 d[key.strip()] = value.strip().strip('"')
488 key_file = os.path.join(temp_cert_dir, 'key.pem')
520 help='If set, a self-signed TLS certificate, key and CA will be'
/haiku/src/tools/fs_shell/
H A Dfuse.cpp582 process_options(void* data, const char* arg, int key, struct fuse_args* outArgs) argument
586 switch (key) {
/haiku/src/preferences/screen/
H A DScreenMode.cpp383 const struct pnp_id key = { id, "dummy" }; local
385 const pnp_id* element = std::find(kPNPIDs, lastElement, key);

Completed in 269 milliseconds

<<11121314151617181920>>