Searched refs:key (Results 51 - 75 of 776) sorted by relevance

1234567891011>>

/haiku-fatelf/src/system/boot/platform/amiga_m68k/
H A Dkeyboard.h8 union key { union
33 extern union key wait_for_key(void);
/haiku-fatelf/src/system/boot/platform/atari_m68k/
H A Dkeyboard.h8 union key { union
33 extern union key wait_for_key(void);
/haiku-fatelf/src/system/boot/platform/bios_ia32/
H A Dkeyboard.h8 union key { union
30 extern union key wait_for_key(void);
/haiku-fatelf/src/system/boot/platform/u-boot/
H A Dkeyboard.h8 union key { union
30 extern union key wait_for_key(void);
/haiku-fatelf/src/system/libroot/posix/stdlib/
H A Dbsearch.c59 void const *key,
73 cmp = (*compar)(key, p);
77 if (cmp > 0) { /* key > p: move right */
58 bsearch( void const *key, void const *base0, size_t nmemb, size_t size, int (*compar)(void const *, void const *) ) argument
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/server-Windows/
H A DBlowFish.h16 short InitializeBlowfish(blf_ctx *, unsigned char key[], int keybytes);
19 void blf_key(blf_ctx *c, unsigned char *key, int len);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dsl.c82 l->header->key = NULL; /* just to be sure */
112 q = p->forward[0]; /* have a real key to it */
120 (*freeitem)(p->key);
158 int InsertSL(SkipList l, void *key) argument
169 while((q = p->forward[k]) && (*compare)(q->key, key) < 0)
176 if (q && (*compare)(q->key, key) == 0) /* item is a duplicate */
197 q->key = key;
213 DeleteSL(SkipList l, void *key) argument
262 SearchSL(SkipList l, void *key) argument
347 DoForRangeSL(SkipList l, void *key, int (*compare)(), int (*func)(), void *arg) argument
[all...]
/haiku-fatelf/headers/private/kernel/util/
H A DVectorMap.h71 references to the entry's key/value. This allows EntryStrategy::Entry
102 status_t Insert(const Key &key, const Value &value);
103 status_t Put(const Key &key, const Value &value);
104 Value &Get(const Key &key);
105 const Value &Get(const Key &key) const;
107 int32 Remove(const Key &key);
121 Iterator Find(const Key &key);
122 ConstIterator Find(const Key &key) const;
123 Iterator FindClose(const Key &key, bool less);
124 ConstIterator FindClose(const Key &key, boo
322 Insert(const Key &key, const Value &value) argument
341 Put(const Key &key, const Value &value) argument
357 Get(const Key &key) argument
394 Remove(const Key &key) argument
558 Find(const Key &key) argument
610 FindClose(const Key &key, bool less) argument
651 FindClose(const Key &key, bool less) const argument
678 _FindInsertionIndex(const Key &key, bool &exists) const argument
711 Entry(const Key &key, const Value &value) argument
714 Key key; member in class:VectorMapEntryStrategy::Pair::Entry
733 MakeEntry(const Key &key, const Value &value) const argument
779 AreCompatible(const Key &key, const Value &value) const argument
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/btrfs/
H A DAttributeIterator.cpp28 struct btrfs_key key; local
29 key.SetType(BTRFS_KEY_TYPE_XATTR_ITEM);
30 key.SetObjectID(inode->ID());
32 key);
52 btrfs_key key; local
55 status_t status = fIterator->GetPreviousEntry(key, (void**)&entries,
/haiku-fatelf/src/bin/gdb/readline/
H A Dtext.c229 The second is the key which invoked this command.
245 rl_forward_byte (count, key)
246 int count, key;
249 return (rl_backward_byte (-count, key));
278 rl_forward_char (count, key)
279 int count, key;
284 return (rl_forward_byte (count, key));
287 return (rl_backward_char (-count, key));
311 rl_forward_char (count, key)
312 int count, key;
[all...]
/haiku-fatelf/src/kits/network/libbind/resolv/
H A Dmtctxres.c14 static pthread_key_t key; variable
29 * Initialize the TSD key. By doing this at library load time, we're
37 pthread_keycreate_ret = pthread_key_create(&key, __res_destroy_ctx);
66 if (pthread_getspecific(key) != 0) {
78 if ((ret = pthread_setspecific(key, mt)) != 0) {
121 if (((mt = pthread_getspecific(key)) != 0) ||
123 (mt = pthread_getspecific(key)) != 0)) {
/haiku-fatelf/src/libs/fluidsynth/src/
H A Dfluid_tuning.c80 void fluid_tuning_set_key(fluid_tuning_t* tuning, int key, double pitch) argument
82 tuning->pitch[key] = pitch;
103 void fluid_tuning_set_pitch(fluid_tuning_t* tuning, int key, double pitch) argument
105 if ((key >= 0) && (key < 128)) {
106 tuning->pitch[key] = pitch;
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dtext.c237 The second is the key which invoked this command.
253 rl_forward_byte (count, key)
254 int count, key;
257 return (rl_backward_byte (-count, key));
286 rl_forward_char (count, key)
287 int count, key;
292 return (rl_forward_byte (count, key));
295 return (rl_backward_char (-count, key));
325 rl_forward_char (count, key)
326 int count, key;
[all...]
H A Dmisc.c123 int key, r; local
125 key = c;
127 /* If we see a key bound to `universal-argument' after seeing digits,
144 key = rl_read_key ();
149 if (key < 0)
151 return (_rl_dispatch (key, _rl_keymap));
179 r = _rl_dispatch (key, _rl_keymap);
232 rl_digit_argument (ignore, key)
233 int ignore, key;
238 _rl_arg_dispatch (_rl_argcxt, key);
[all...]
/haiku-fatelf/headers/private/userlandfs/shared/
H A DHashMap.h30 HashMapElement(const Key& key, const Value& value) argument
32 fKey(key),
49 size_t HashKey(const KeyType& key) const
50 { return key.GetHashCode(); }
53 bool Compare(const KeyType& key, const ValueType* value) const argument
54 { return value->fKey == key; }
67 Entry(const Key& key, Value value) : key(key), value(value) {} argument
69 Key key; member in class:HashMap::Entry
181 Put(const Key& key, const Value& value) argument
189 Remove(const Key& key) argument
338 Put(const Key& key, const Value& value) argument
363 Remove(const Key& key) argument
[all...]
/haiku-fatelf/src/bin/coreutils/lib/glthread/
H A Dtls.h96 pthread_key_t key; member in union:__anon3288
101 ? pthread_key_create (&(KEY)->key, DESTRUCTOR) \
105 ? pthread_getspecific ((NAME).key) \
109 ? pthread_setspecific ((KEY)->key, (POINTER)) \
112 (pthread_in_use () ? pthread_key_delete ((KEY)->key) : 0)
147 pth_key_t key; member in union:__anon3289
152 ? (!pth_key_create (&(KEY)->key, DESTRUCTOR) ? errno : 0) \
156 ? pth_key_getdata ((NAME).key) \
160 ? (!pth_key_setdata ((KEY)->key, (POINTER)) ? errno : 0) \
164 ? (!pth_key_delete ((KEY)->key)
199 thread_key_t key; member in union:__anon3290
[all...]
/haiku-fatelf/src/libs/ncurses/include/
H A DCaps.keys222 has_meta_key km bool km - - YB-GE Has a meta key (i.e., sets 8th-bit)
381 key_backspace kbs str kb KEY_BACKSPACE 0407 YB-G- backspace key
382 key_catab ktbc str ka KEY_CATAB 0526 -B-G-* clear-all-tabs key
383 key_clear kclr str kC KEY_CLEAR 0515 -B-G-* clear-screen or erase key
384 key_ctab kctab str kt KEY_CTAB 0525 -B-G-* clear-tab key
385 key_dc kdch1 str kD KEY_DC 0512 YB-G- delete-character key
386 key_dl kdl1 str kL KEY_DL 0510 -B-G-* delete-line key
387 key_down kcud1 str kd KEY_DOWN 0402 YBCGE down-arrow key
389 key_eol kel str kE KEY_EOL 0517 -B-G-* clear-to-end-of-line key
390 key_eos ked str kS KEY_EOS 0516 -B-G-* clear-to-end-of-screen key
[all...]
/haiku-fatelf/src/kits/network/libbind/dst/
H A Ddst_api.c32 * void dst_write_key() Function to write out a key.
35 * int dst_key_to_dnskey() Function to return a public key in DNS
38 * int *dst_key_to_buffer() Writes out DST_KEY key matterial in buffer
39 * void dst_free_key() Releases all memory referenced by key structure
65 const char *key_file_fmt_str = "Private-key-format: v%s\nAlgorithm: %d (%s)\n";
73 static int dst_s_write_public_key(const DST_KEY *key);
74 static int dst_s_write_private_key(const DST_KEY *key);
148 * This function allocates key structure and fills in some of the
151 * name: the name of the key
153 * flags: the dns flags of the key
367 dst_write_key(const DST_KEY *key, const int type) argument
406 dst_s_write_private_key(const DST_KEY *key) argument
585 dst_s_write_public_key(const DST_KEY *key) argument
702 dst_key_to_dnskey(const DST_KEY *key, u_char *out_storage, const int out_len) argument
791 dst_key_to_buffer(DST_KEY *key, u_char *out_buff, int buf_len) argument
1032 dst_sig_size(DST_KEY *key) argument
[all...]
H A Dhmac_link.c75 * priv_key key to use for signing.
92 HMAC_Key *key; local
106 key = (HMAC_Key *) d_key->dk_KEY_struct;
110 MD5Update(ctx, key->hk_ipad, HMAC_LEN);
123 MD5Update(ctx, key->hk_opad, HMAC_LEN);
146 * dkey key to use for verify.
161 HMAC_Key *key; local
174 key = (HMAC_Key *) d_key->dk_KEY_struct;
177 MD5Update(ctx, key->hk_ipad, HMAC_LEN);
184 if (signature == NULL || key
220 dst_buffer_to_hmac_md5(DST_KEY *dkey, const u_char *key, const int keylen) argument
280 u_char key[HMAC_LEN]; local
342 u_char key[HMAC_LEN+1]; /* b64_pton needs more than 64 bytes do decode local
428 dst_hmac_md5_free_key_structure(void *key) argument
444 dst_hmac_md5_generate_key(DST_KEY *key, const int nothing) argument
[all...]
/haiku-fatelf/src/apps/cortex/RouteApp/
H A DNodeSetIOContext.cpp60 const char* key) {
69 // already in set; does key match?
70 if(key &&
72 strcmp(key, (*it).first.String()) != 0) {
75 " found matching node with key '%s'!\n",
76 node, key, (*it).first.String()));
82 if(key)
83 m_nodes.push_back(node_entry(key, node));
158 const char* key,
161 if(!key || !*ke
58 addNode( media_node_id node, const char* key) argument
157 getNodeFor( const char* key, media_node_id* outNode) const argument
[all...]
/haiku-fatelf/src/apps/cortex/Persistence/Wrappers/
H A DMediaFormatIO.cpp195 const char* key,
201 context.writeAttr(key, "B_RGB32");
204 context.writeAttr(key, "B_RGBA32");
207 context.writeAttr(key, "B_RGB24");
210 context.writeAttr(key, "B_RGB16");
213 context.writeAttr(key, "B_RGB15");
216 context.writeAttr(key, "B_RGBA15");
219 context.writeAttr(key, "B_CMAP8");
222 context.writeAttr(key, "B_GRAY8");
225 context.writeAttr(key, "B_GRAY
194 write_colorspace_attr( const char* key, color_space c, ExportContext& context) argument
989 import_raw_audio_attribute( media_raw_audio_format& f, const char* key, const char* value, ImportContext& context) argument
1021 import_multi_audio_info_attribute( media_multi_audio_info& f, const char* key, const char* value, ImportContext& context) argument
1037 import_raw_video_attribute( media_raw_video_format& f, const char* key, const char* value, ImportContext& context) argument
1063 import_video_display_info_attribute( media_video_display_info& d, const char* key, const char* value, ImportContext& context) argument
1084 import_multistream_attribute( media_multistream_format& f, const char* key, const char* value, ImportContext& context) argument
1116 import_multistream_flags_attribute( uint32& flags, const char* key, const char* value, ImportContext& context) argument
1133 import_multistream_vid_info_attribute( media_multistream_format::vid_info& f, const char* key, const char* value, ImportContext& context) argument
1169 import_multistream_avi_info_attribute( media_multistream_format::avi_info& f, const char* key, const char* value, ImportContext& context) argument
1183 import_encoded_audio_attribute( media_encoded_audio_format& f, const char* key, const char* value, ImportContext& context) argument
1199 import_encoded_video_attribute( media_encoded_video_format& f, const char* key, const char* value, ImportContext& context) argument
1251 xmlImportAttribute( const char* key, const char* value, ImportContext& context) argument
1355 xmlImportChildAttribute( const char* key, const char* value, ImportContext& context) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/exfat/
H A DVolume.h23 struct node_key key; member in struct:node
37 return node->key;
45 static int Compare(KeyType key, const NodeType* node) argument
47 if (key.cluster == node->key.cluster) {
48 if (key.offset == node->key.offset)
50 return key.offset < node->key.offset ? -1 : 1;
52 return key
70 Compare(KeyType key, const NodeType* node) argument
[all...]
/haiku-fatelf/src/preferences/keymap/
H A DKeyboardLayoutView.cpp148 Key* key = _KeyAt(point); local
149 if (key == NULL)
162 = fKeymap->DeadKey(key->code, fModifiers, &isEnabled);
164 fKeymap->SetDeadKeyEnabled(key->code, fModifiers, !isEnabled);
165 _InvalidateKey(key);
169 if (fKeymap != NULL && fKeymap->IsModifierKey(key->code)) {
170 if (_KeyState(key->code)) {
171 uint32 modifier = fKeymap->Modifier(key->code);
173 _SetKeyState(key->code, false);
178 _SetKeyState(key
197 Key* key = _KeyAt(fClickPoint); local
264 Key* key = _KeyAt(fClickPoint); local
341 Key* key = fLayout->KeyAt(i); local
416 Key* key = _KeyForCode(keyCode); local
450 Key* key = _KeyForCode(keyCode); local
575 _DrawKey(BView* view, BRect updateRect, const Key* key, BRect rect, bool pressed) argument
839 _GetAbbreviatedKeyLabelIfNeeded(BView* view, BRect rect, const Key* key, char* text, size_t textSize) argument
869 _GetKeyLabel(const Key* key, char* text, size_t textSize, key_kind& keyKind) argument
953 Key* key = fLayout->KeyAt(i); local
970 _InvalidateKey(const Key* key) argument
982 _HandleDeadKey(uint32 key, int32 modifiers) argument
1010 int32 key; local
1057 Key* key = fLayout->KeyAt(i); local
1086 _FrameFor(const Key* key) argument
1142 _SendFakeKeyDown(const Key* key) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/packagefs/
H A DIndex.h46 bool Find(const void* key, size_t length,
49 // >= key
59 virtual AbstractIndexIterator* InternalFind(const void* key,
62 // value >= key
104 size_t HashKey(const char* key) const
106 return key != NULL ? hash_hash_string(key) : 0;
114 bool Compare(const char* key, const Index* value) const argument
116 return strcmp(value->Name(), key) == 0;
/haiku-fatelf/headers/private/shared/
H A DHashSet.h156 status_t Add(const Key& key);
157 bool Remove(const Key& key);
159 bool Contains(const Key& key) const;
171 Element *_FindElement(const Key& key) const;
192 status_t Add(const Key& key) argument
197 return fSet.Add(key);
200 bool Remove(const Key& key) argument
205 return fSet.Remove(key);
208 bool Contains(const Key& key) const
214 return fSet.Contains(key);
267 Add(const Key& key) argument
281 Remove(const Key& key) argument
[all...]

Completed in 181 milliseconds

1234567891011>>