Searched refs:fMap (Results 1 - 25 of 47) sorted by path

12

/haiku/headers/os/package/
H A DPackageInfoSet.h61 const PackageMap* fMap; member in class:BPackageKit::BPackageInfoSet::Iterator
/haiku/headers/private/shared/
H A DHashMap.h83 fMap(other.fMap),
105 fMap = other.fMap;
114 fMap(map),
125 const HashMap<Key, Value>* fMap; member in class:BPrivate::HashMap::Iterator
170 return fMap.InitCheck();
178 return fMap.Put(key, value);
186 return fMap.Remove(key);
194 return fMap
240 HashMap<Key, Value> fMap; member in class:BPrivate::SynchronizedHashMap
[all...]
H A DLRUCache.h74 return fMap.InitCheck();
79 LRUNode* node = fMap.Get(key);
90 status_t result = fMap.Put(key, node);
104 LRUNode* node = fMap.Get(key);
108 fMap.Remove(key);
117 fMap.Clear();
127 LRUNode* node = fMap.Get(key);
137 return fMap.ContainsKey(key);
142 return fMap.Size();
197 HashMap<Key, LRUNode*> fMap; member in class:BPrivate::LRUCache
[all...]
/haiku/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();
75 result = fMap->KeyEvent(message, outList, fMessenger);
81 fMap->MouseMessageReceived(message);
84 fMap->DrainInjectedEvents(message, outList, fMessenger);
H A DShortcutsServerFilter.h42 KeyCommandMap* fMap; member in class:ShortcutsServerFilter
/haiku/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),
83 fMap = file_map_create(fVolume->ID(), ID(), Size());
98 fMap(NULL),
H A DInode.h86 void* Map() const { return fMap; }
112 void* fMap; member in class:Inode
/haiku/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DThreadLocal.h31 ThreadLocalMap* fMap; member in class:ThreadLocal
/haiku/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/src/add-ons/kernel/file_systems/nfs4/
H A DInodeIdMap.cpp18 AVLTreeMap<ino_t, FileInfo>::Iterator iterator = fMap.Find(id);
26 fMap.Remove(id);
38 return fMap.Insert(id, fileInfo);
48 AVLTreeMap<ino_t, FileInfo>::Iterator iterator = fMap.Find(id);
62 return fMap.Remove(id);
72 AVLTreeMap<ino_t, FileInfo>::Iterator iterator = fMap.Find(id);
H A DInodeIdMap.h36 AVLTreeMap<ino_t, FileInfo> fMap; member in class:InodeIdMap
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A DPartitionMapParser.h54 PartitionMap* fMap; member in class:PartitionMapParser
/haiku/src/kits/media/
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 DTimeSourceObjectManager.h33 NodeMap fMap; member in class:BPrivate::media::TimeSourceObjectManager
/haiku/src/kits/package/
H A DPackageInfoSet.cpp178 fMap(map),
203 = fMap->GetIterator(fNextInfo->Name());
/haiku/src/servers/media/
H A DAppManager.cpp65 return fMap.find(team) != fMap.end();
82 fMap.insert(std::make_pair(team, messenger));
97 bool isRemoved = fMap.erase(team) != 0;
123 AppMap::iterator found = fMap.find(team);
124 if (found == fMap.end())
140 AppMap::iterator iterator = fMap.begin();
141 for (; iterator != fMap.end(); iterator++) {
158 AppMap::iterator iterator = fMap.begin();
159 for (; iterator != fMap
[all...]
H A DAppManager.h39 AppMap fMap; member in class:AppManager
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 DMediaFilesManager.h72 TypeMap fMap; member in class:MediaFilesManager
/haiku/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/src/tests/system/kernel/util/
H A DOrderedMapTest.h190 : fMap(s),
197 : fMap(other.fMap),
208 if (refResult == fMap->fReferenceMap.end())
209 CHK(myResult == fMap->fMyMap.End());
223 if (refResult == fMap->fReferenceMap.end())
224 CHK(myResult == fMap->fMyMap.End());
229 return Iterator(fMap, myResult, refResult);
249 return Iterator(fMap, myResult, refResult);
254 fMap
299 TestMap *fMap; member in class:TestIterator
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp347 fMap(NULL)
381 fMap(NULL)
460 if (NeedsFileCache() && (fCache == NULL || fMap == NULL))
H A DInode.h192 void* Map() const { return fMap; }
193 void SetMap(void* map) { fMap = map; }
264 void* fMap; member in class:Inode
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DInode.cpp34 fMap(NULL)
42 fMap = file_map_create(fVolume->ID(), ID(), Size());
53 fMap(NULL),
59 fMap = file_map_create(fVolume->ID(), ID(), Size());
69 fMap(NULL),
H A DInode.h71 void* Map() const { return fMap; }
97 void* fMap; member in class:Inode

Completed in 133 milliseconds

12