Searched refs:key (Results 176 - 200 of 570) sorted by relevance

1234567891011>>

/haiku/src/add-ons/print/transports/usb_port/
H A DUSBTransport.cpp61 USBPrinter *Printer(const BString& key);
97 USBPrinterRoster::Printer(const BString& key) argument
99 if (fPrinters.ContainsKey(key.String()))
100 return fPrinters.Get(key.String());
187 fPrinters.Remove(entry.key);
267 BString key; local
269 if (printer->ReadAttrString("transport_address", &key) != B_OK)
276 fPrinter = fRoster->Printer(key.String());
/haiku/src/apps/cortex/Persistence/Wrappers/
H A DMediaFormatIO.h121 const char* key,
142 const char* key,
H A DMessageIO.h112 const char* key,
133 const char* key,
/haiku/src/apps/cortex/RouteApp/
H A DLiveNodeIO.h40 // In the first two cases, the node is described by a key
41 // string; the following preset key strings correspond to
91 // if true, call key() to fetch the key string; otherwise,
95 const char* key() const { return m_key.String(); } function in class:LiveNodeIO
134 const char* key,
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DManipulator.cpp96 Manipulator::HandleKeyDown(uint32 key, uint32 modifiers, Command** _command) argument
103 Manipulator::HandleKeyUp(uint32 key, uint32 modifiers, Command** _command) argument
H A DManipulator.h42 virtual bool HandleKeyDown(uint32 key, uint32 modifiers,
44 virtual bool HandleKeyUp(uint32 key, uint32 modifiers,
H A DMultipleManipulatorState.h42 virtual bool HandleKeyDown(uint32 key, uint32 modifiers,
44 virtual bool HandleKeyUp(uint32 key, uint32 modifiers,
H A DViewState.cpp100 ViewState::HandleKeyDown(uint32 key, uint32 modifiers, Command** _command) argument
107 ViewState::HandleKeyUp(uint32 key, uint32 modifiers, Command** _command) argument
H A DViewState.h55 virtual bool HandleKeyDown(uint32 key, uint32 modifiers,
57 virtual bool HandleKeyUp(uint32 key, uint32 modifiers,
/haiku/src/kits/mail/
H A Dcrypt.cpp13 static const char key[PASSWORD_LENGTH + 1] = "Dr. Zoidberg Enterprises, BeMail"; variable
56 out[i] ^= key[i];
/haiku/src/system/libroot/posix/sys/
H A Dxsi_sem.cpp25 semget(key_t key, int numSems, int semFlags) argument
27 RETURN_AND_SET_ERRNO(_kern_xsi_semget(key, numSems, semFlags));
/haiku/src/kits/debugger/debug_info/
H A DGlobalTypeLookup.cpp43 size_t HashKey(const BString& key) const
45 return StringUtils::HashValue(key);
53 bool Compare(const BString& key, const TypeEntry* value) const argument
55 return key == value->type->Name();
69 size_t HashKey(const BString& key) const
71 return StringUtils::HashValue(key);
79 bool Compare(const BString& key, const TypeEntry* value) const argument
81 return key == value->type->ID();
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DIndex.h38 bool Find(const uint8 *key, size_t length,
46 virtual AbstractIndexEntryIterator *InternalFind(const uint8 *key,
/haiku/src/apps/cortex/support/
H A Dset_tools.h69 template<class key, class value>
73 bool operator()(const std::pair<key,value>& p, const value& v) const {
80 //template<class key, class value>
82 // public unary_function<pair<key,value>, bool> {
88 // bool operator()(const std::pair<key,value>& p) const {
93 //template<class key, class value>
94 //inline map_value_predicate_t<key,value> map_value_predicate(
96 // return map_value_predicate_t<key,value>(fn);
/haiku/src/libs/libtelnet/
H A Denc_des.c51 #include "key-proto.h"
91 char *key; member in struct:keyidlist
95 { "\0", 1, 0, 0, 0 }, /* default key of zero */
158 * 2: Not yet. Other things (like getting the key from
371 cfb64_session(Session_Key *key, int server) argument
373 fb64_session(key, server, &fb[CFB]);
377 ofb64_session(Session_Key *key, int server) argument
379 fb64_session(key, server, &fb[OFB]);
383 fb64_session(Session_Key *key, int server, struct fb *fbp) argument
385 if (!key || ke
508 fb64_stream_key(Block key, struct stinfo *stp) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DNameIndex.cpp206 const char* key = (const char*)_key; local
208 // if the key is not null-terminated, copy it
210 if (key[length - 1] != '\0') {
214 memcpy(clonedKey, key, length);
217 key = clonedKey;
222 if (!iterator->SetTo(this, (const char*)key)) {
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DAttribute.cpp151 struct btrfs_key key; local
152 key.SetType(BTRFS_KEY_TYPE_XATTR_ITEM);
153 key.SetObjectID(fInode->ID());
154 key.SetOffset(hash);
159 status_t status = fInode->GetVolume()->FSTree()->FindExact(&path, key,
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DMainWindow.cpp156 // create a sub window key
157 ObjectSubWindowKey* key = new(std::nothrow) ObjectSubWindowKey(thread); local
158 if (key == NULL) {
162 ObjectDeleter<ObjectSubWindowKey> keyDeleter(key);
168 fSubWindowManager->LookupSubWindow(*key));
184 if (!window->AddToSubWindowManager(key)) {
/haiku/src/system/boot/platform/next_m68k/
H A Dconsole.cpp222 // wait for a key
231 union key key = wait_for_key(); local
233 if (key.code.ascii == 0) {
234 switch (key.code.bios) {
251 return key.code.ascii;
/haiku/src/system/boot/platform/bios_ia32/
H A Dconsole.cpp163 union key key = wait_for_key(); local
165 if (key.code.ascii == 0) {
166 switch (key.code.bios) {
187 return key.code.ascii;
/haiku/src/apps/drivesetup/
H A DSupport.cpp90 BString key; local
91 key << parentID << ':' << (uint64)spaceOffset;
93 if (ContainsKey(key.String()))
94 return Get(key.String());
97 Put(key.String(), newID);
/haiku/src/add-ons/kernel/file_cache/
H A Dlaunch_speedup.cpp70 size_t HashKey(KeyType key) const
72 return VNODE_HASH(key.device, key.node);
80 bool Compare(KeyType key, ValueType* node) const argument
82 return (node->ref.device == key.device && node->ref.node == key.node);
172 size_t HashKey(KeyType key) const
174 return VNODE_HASH(key.device, key.node);
182 bool Compare(KeyType key, ValueTyp argument
211 Compare(KeyType key, ValueType* session) const argument
462 node_ref key; local
[all...]
/haiku/src/system/boot/platform/atari_m68k/
H A Dconsole.cpp245 // wait for a key
254 union key key = wait_for_key(); local
256 if (key.code.ascii == 0) {
257 switch (key.code.bios) {
274 return key.code.ascii;
/haiku/src/system/kernel/posix/
H A Dxsi_semaphore.cpp309 return fPermissions.key;
442 void SetIpcKey(key_t key) argument
444 fPermissions.key = key;
494 size_t HashKey (const int key) const
496 return (size_t)key;
504 bool Compare(const int key, XsiSemaphoreSet *variable) const argument
506 return (int)key == (int)variable->ID();
519 Ipc(key_t key) argument
520 : fKey(key),
566 Compare(const key_t key, Ipc *variable) const argument
677 _user_xsi_semget(key_t key, int numberOfSemaphores, int flags) argument
985 key_t key = semaphoreSet->IpcKey(); local
[all...]
/haiku/src/kits/tracker/
H A DDeskWindow.cpp92 AddOneShortcut(Model* model, char key, uint32 modifiers, BDeskWindow* window) argument
94 if (key == '\0')
99 window->AddShortcut(key, modifiers, runAddOn);
106 if (item->key != item->defaultKey || item->modifiers != kDefaultModifiers) {
109 window->RemoveShortcut(item->key, item->modifiers);
110 item->key = item->defaultKey;
112 AddOneShortcut(item->model, item->key, item->modifiers, window);
162 item->key = '\0';
164 item->key = shortcut[0];
165 AddOneShortcut(model, item->key, kDefaultModifier
317 int32 key; local
[all...]

Completed in 199 milliseconds

1234567891011>>