Searched refs:key (Results 351 - 375 of 570) sorted by relevance

<<11121314151617181920>>

/haiku/src/apps/debuganalyzer/model/
H A DModel.cpp380 type_and_object key; local
381 key.type = type;
382 key.object = object;
384 return fWaitObjectGroups.BinarySearchByKey(key,
922 type_and_object key; local
923 key.type = type;
924 key.object = object;
926 return fWaitObjectGroups.BinarySearchByKey(key,
/haiku/src/add-ons/kernel/file_cache/
H A Drule_based_prefetcher.cpp156 size_t HashKey(KeyType key) const
158 return hash_hash_string(key);
166 bool Compare(KeyType key, ValueType* rules) const argument
168 return strcmp(rules->name, key) == 0;
182 size_t HashKey(KeyType key) const
184 return key;
192 bool Compare(KeyType key, ValueType* value) const argument
194 return value->team == key;
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformBox.h55 virtual bool HandleKeyDown(uint32 key,
57 virtual bool HandleKeyUp(uint32 key,
/haiku/src/kits/storage/
H A DPathMonitor.cpp238 size_t HashKey(const node_ref& key) const
240 return size_t(key.device ^ key.node);
248 bool Compare(const node_ref& key, Ancestor* value) const argument
250 return key == value->NodeRef();
320 size_t HashKey(const char* key) const
322 return BString::HashValue(key);
330 bool Compare(const char* key, Entry* value) const argument
332 return value->Name() == key;
421 size_t HashKey(const node_ref& key) cons
431 Compare(const node_ref& key, Node* value) const argument
650 Compare(const char* key, PathHandler* value) const argument
716 Compare(const BMessenger& key, Watcher* value) const argument
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_opt.c137 static int call_proc(struct fuse_opt_context *ctx, const char *arg, int key, argument
140 if (key == FUSE_OPT_KEY_DISCARD)
143 if (key != FUSE_OPT_KEY_KEEP && ctx->proc) {
144 int res = ctx->proc(ctx->data, arg, key, &ctx->outargs);
/haiku/src/apps/cortex/RouteApp/
H A DRouteApp.h114 const char* key,
H A DRouteAppNodeManager.h181 const char* key,
232 // void _exportNode(NodeRef* ref, const char* key, ExportContext& context) const;
/haiku/src/bin/unzip/
H A Dcrypt.h120 #define IZ_PWLEN 80 /* input buffer size for reading encryption key */
152 extern char *key;
/haiku/src/libs/glut/
H A DglutWindow.h60 GLUTspecialCB special; /* special key */
61 GLUTspecialCB specialUp; /* special key up */
84 unsigned char key; // for keyboard callback member in class:GlutWindow
87 int specialKey; // for special key callback
89 int modifierKeys; // modifier key state
/haiku/src/apps/haikudepot/textview/
H A DTextEditor.h22 int32 key; member in class:KeyEvent
/haiku/src/apps/remotedesktop/
H A DRemoteView.h52 static int _StateCompareByKey(const uint32 *key,
/haiku/src/system/boot/platform/bios_ia32/
H A Dmenu.cpp17 warm_reboot(char key) argument
/haiku/src/servers/app/font/
H A DFontCacheEntry.cpp52 size_t HashKey(uint32 key) const
54 return key;
62 bool Compare(uint32 key, GlyphCache* value) const argument
64 return value->glyph_index == key;
/haiku/headers/libs/print/libprint/
H A DPrinterCap.h251 KeyPredicate(const char* key) argument
252 : fKey(key)
275 const EnumCap* FindCapWithKey(CapID category, const char* key)
/haiku/src/tools/locale/
H A DPlainTextCatalog.cpp224 // SetString(key, translated.c_str());
285 original = entry.key.fString;
286 comment = entry.key.fComment;
295 << entry.key.fContext.String() << "\t"
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DSizeIndex.cpp208 SizeIndex::InternalFind(const uint8 *key, size_t length) argument
210 if (!key || length != sizeof(off_t))
214 if (!iterator->SetTo(this, *(const off_t*)key)) {
H A DLastModifiedIndex.cpp209 LastModifiedIndex::InternalFind(const uint8 *key, size_t length) argument
211 if (!key || length != sizeof(time_t))
215 if (!iterator->SetTo(this, *(const time_t*)key)) {
H A DQuery.cpp25 status_t Find(const uint8 *const key, size_t keyLength);
47 IndexIterator::Find(const uint8 *const key, size_t keyLength) argument
53 fInitialized = fIndex->Find(key, keyLength, &fIterator);
85 // get key
/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dplugin.py74 key = arg
83 key = e
89 r = "%s = %s = 0x%x (%d): %s" % (key, expr, int(value), value, err['str'])
/haiku/src/system/kernel/arch/ppc/
H A Darch_platform.cpp165 int key; local
166 if (of_interpret("key", 0, 1, &key) == OF_FAILED)
168 return (char)key;
/haiku/headers/private/kernel/vm/
H A DVMArea.h189 int Compare(area_id key, const VMArea* value) const argument
192 if (valueId == key)
194 return key < valueId ? -1 : 1;
/haiku/src/apps/haikudepot/build/scripts/
H A Dustache.py179 Tokens are tuples containing a renderer decission path, key, content and flags.
190 ``key: Optional[slice]``
191 Template slice for token scope key, if any.
251 def get(self, key: _abc.Hashable, default: D = None) -> typing.Union[T, D]:
253 Get value for given key or default if not present.
255 :param key: hashable
256 :param default: value will be returned if key is not present
257 :returns: value if key is present, default if not
261 return self[key]
265 def __getitem__(self, key
[all...]
/haiku/src/add-ons/kernel/network/stack/
H A Dstack.cpp109 size_t HashKey(KeyType key) const
111 return HASH(&key);
121 bool Compare(KeyType key, ValueType* chain) const argument
123 if (chain->family == key.family
124 && chain->type == key.type
125 && chain->protocol == key.protocol)
141 size_t HashKey(KeyType key) const
143 return key;
151 bool Compare(KeyType key, ValueType* family) const argument
153 return family->type == key;
337 struct chain_key key = { family, type, protocol }; local
[all...]
/haiku/src/system/kernel/
H A Dmodule.cpp170 size_t HashKey(KeyType key) const
172 return ((uint32)(key->node >> 32) + (uint32)key->node) ^ key->device;
175 bool Compare(KeyType key, ValueType* entry) const argument
177 return key->device == entry->device
178 && key->node == entry->node;
288 size_t HashKey(KeyType key) const
290 return hash_hash_string(key);
293 bool Compare(KeyType key, ValueTyp argument
318 Compare(KeyType key, ValueType* image) const argument
1328 struct entry key = {device, node}; local
1586 struct entry key = {device, node}; local
[all...]
/haiku/src/bin/
H A Dsetmime.cpp591 uint32 key = hash_function(*arg); local
593 map<uint32, const CmdOption*>::iterator I = cmdOptionsMap.find(key);
606 fOpMode = key;
621 TUserArgsI A = fUserArguments.find(key);
626 pair<uint32, const char*>(key, param));
636 pair<uint32, const char*>(key, *arg));
649 TUserArgsI A = fUserAttributes.back().find(key);
655 pair<uint32, const char*>(key, *arg));
1035 uint32 key = hash_function(i->second);
1036 if (fExtensions.find(key)
[all...]

Completed in 152 milliseconds

<<11121314151617181920>>