Searched refs:fMap (Results 1 - 25 of 33) sorted by relevance

12

/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/shared/
H A DThreadLocal.cpp32 : fMap(NULL),
35 fMap = new(std::nothrow) ThreadLocalMap;
41 delete fMap;
48 if (!fMap)
51 fMap->Lock();
53 if (fFreeHandler &&fMap->ContainsKey(thread))
54 fFreeHandler->Free(fMap->Get(thread));
56 status_t error = fMap->Put(thread, data);
57 fMap->Unlock();
65 if (!fMap)
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/shared/
H A DThreadLocal.cpp32 : fMap(NULL),
35 fMap = new(nothrow) ThreadLocalMap;
41 delete fMap;
48 if (!fMap)
51 fMap->Lock();
53 if (fFreeHandler &&fMap->ContainsKey(thread))
54 fFreeHandler->Free(fMap->Get(thread));
56 status_t error = fMap->Put(thread, data);
57 fMap->Unlock();
65 if (!fMap)
[all...]
/haiku-fatelf/src/add-ons/input_server/filters/shortcut_catcher/
H A DShortcutsServerFilter.cpp39 fMap = new KeyCommandMap(path.Path());
43 fMap->Run();
50 if (fMap->Lock())
51 fMap->Quit();
76 ret = fMap->KeyEvent(msg, outlist, fMessenger);
82 fMap->MouseMoved(msg);
85 fMap->DrainInjectedEvents(msg, outlist, fMessenger);
H A DShortcutsServerFilter.h40 KeyCommandMap* fMap; member in class:ShortcutsServerFilter
/haiku-fatelf/src/kits/media/
H A DBufferCache.cpp28 for (BufferMap::iterator iterator = fMap.begin(); iterator != fMap.end();
38 BufferMap::iterator found = fMap.find(id);
39 if (found != fMap.end())
49 fMap.insert(std::make_pair(id, buffer));
H A DTimeSourceObjectManager.cpp45 NodeMap::iterator iterator = fMap.begin();
46 for (; iterator != fMap.end(); iterator++) {
73 NodeMap::iterator found = fMap.find(node.node);
74 if (found != fMap.end())
82 fMap.insert(std::make_pair(node.node, timeSource));
98 fMap.erase(timeSource->ID());
H A DBufferCache.h31 BufferMap fMap; member in class:BPrivate::BufferCache
H A DTimeSourceObjectManager.h33 NodeMap fMap; member in class:BPrivate::media::TimeSourceObjectManager
/haiku-fatelf/src/servers/media/
H A DAppManager.cpp71 return fMap.find(team) != fMap.end();
87 fMap.insert(std::make_pair(team, messenger));
102 bool isRemoved = fMap.erase(team) != 0;
128 AppMap::iterator found = fMap.find(team);
129 if (found == fMap.end())
145 AppMap::iterator iterator = fMap.begin();
146 for (; iterator != fMap.end(); iterator++) {
201 AppMap::iterator iterator = fMap.begin();
202 for (; iterator != fMap
[all...]
H A DMediaFilesManager.cpp80 TypeMap::iterator iterator = fMap.begin();
81 for (; iterator != fMap.end(); iterator++) {
129 TypeMap::iterator iterator = fMap.begin();
130 for (; iterator != fMap.end(); iterator++) {
158 count = fMap.size();
173 TypeMap::iterator iterator = fMap.begin();
174 for (; iterator != fMap.end(); iterator++, start += B_MEDIA_NAME_LENGTH) {
192 TypeMap::iterator found = fMap.find(BString(type));
193 if (found == fMap.end()) {
297 TypeMap::iterator found = fMap
[all...]
H A DAppManager.h41 AppMap fMap; member in class:AppManager
H A DMediaFilesManager.h72 TypeMap fMap; member in class:MediaFilesManager
/haiku-fatelf/headers/private/userlandfs/shared/
H A DHashMap.h79 fMap(other.fMap),
106 fMap->fTable.RemoveUnchecked(fElement);
115 fMap = other.fMap;
124 fMap(map),
135 HashMap<Key, Value>* fMap; member in class:HashMap::Iterator
178 return fMap.InitCheck();
186 return fMap.Put(key, value);
194 return fMap
240 HashMap<Key, Value> fMap; member in class:SynchronizedHashMap
[all...]
/haiku-fatelf/src/add-ons/kernel/partitioning_systems/intel/
H A DPartitionMapParser.cpp61 fMap(NULL)
82 fMap = map;
83 fMap->Unset();
95 || !fMap->Check(fSessionSize))) {
100 int32 previousPartitionCount = fMap->CountNonEmptyPartitions();
105 fMap->Unset();
108 if (fMap->CountNonEmptyPartitions() < previousPartitionCount
110 || !fMap->Check(fSessionSize)) {
114 fMap->Unset();
121 if (error == B_OK && !fMap
[all...]
H A DPartitionMapParser.h54 PartitionMap* fMap; member in class:PartitionMapParser
/haiku-fatelf/headers/private/shared/
H A DHashMap.h92 fMap(other.fMap),
128 fMap->fTable.Remove(fLastElement, true);
135 fMap = other.fMap;
145 fMap(const_cast<HashMap<Key, Value>*>(map)),
158 fElement = fMap->fTable.ElementAt(fElement->fNext);
162 int32 arraySize = fMap->fTable.ArraySize();
164 fElement = fMap->fTable.FindFirst(fIndex);
170 HashMap<Key, Value>* fMap; member in class:BPrivate::HashMap::Iterator
279 HashMap<Key, Value> fMap; member in class:BPrivate::SynchronizedHashMap
[all...]
/haiku-fatelf/src/apps/webpositive/support/
H A DHashMap.h92 fMap(other.fMap),
128 fMap->fTable.Remove(fLastElement, true);
135 fMap = other.fMap;
145 fMap(const_cast<HashMap<Key, Value>*>(map)),
158 fElement = fMap->fTable.ElementAt(fElement->fNext);
162 int32 arraySize = fMap->fTable.ArraySize();
164 fElement = fMap->fTable.FindFirst(fIndex);
170 HashMap<Key, Value>* fMap; member in class:BPrivate::HashMap::Iterator
279 HashMap<Key, Value> fMap; member in class:BPrivate::SynchronizedHashMap
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/headers/shared/
H A DHashMap.h88 : fMap(other.fMap),
114 fMap->fTable.Remove(fLastElement, true);
121 fMap = other.fMap;
130 : fMap(map),
143 fElement = fMap->fTable.ElementAt(fElement->fNext);
147 int32 arraySize = fMap->fTable.ArraySize();
149 fElement = fMap->fTable.FindFirst(fIndex);
155 HashMap<Key, Value>* fMap; member in class:HashMap::Iterator
263 HashMap<Key, Value> fMap; member in class:SynchronizedHashMap
[all...]
/haiku-fatelf/src/tests/system/kernel/cache/
H A Dfile_map_test.cpp43 void* fMap; member in class:Map
61 fMap(NULL),
71 file_map_delete(fMap);
78 file_map_delete(fMap);
80 fMap = file_map_create((dev_t)this, 0, size);
81 if (fMap == NULL)
123 file_map_set_size(fMap, size);
133 file_map_invalidate(fMap, start, size);
140 file_map_set_mode(fMap, mode);
153 status_t status = file_map_translate(fMap, offse
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DThreadLocal.h31 ThreadLocalMap* fMap; member in class:ThreadLocal
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DThreadLocal.h31 ThreadLocalMap* fMap; member in class:ThreadLocal
/haiku-fatelf/src/bin/debug/strace/
H A DTypeHandler.cpp158 EnumTypeHandler::EnumTypeHandler(const EnumMap &m) : fMap(m) {}
177 EnumMap::const_iterator i = fMap.find(value);
178 if (i != fMap.end() && i->second != NULL)
187 : fMap(m), fSibling(sibling), fDefault(def) {}
197 SelectMap::const_iterator i = fMap.find(index);
198 if (i != fMap.end())
H A DTypeHandler.h49 const EnumMap &fMap; member in class:EnumTypeHandler
64 const SelectMap &fMap; member in class:TypeHandlerSelector
/haiku-fatelf/src/add-ons/kernel/file_systems/exfat/
H A DInode.cpp38 fMap(NULL)
52 fMap = file_map_create(fVolume->ID(), ID(), Size());
66 fMap(NULL),
82 fMap = file_map_create(fVolume->ID(), ID(), Size());
97 fMap(NULL),
/haiku-fatelf/src/add-ons/kernel/file_systems/btrfs/
H A DInode.h68 void* Map() const { return fMap; }
83 void* fMap; member in class:Inode

Completed in 164 milliseconds

12