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

12

/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/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/xfs/
H A DSymlink.cpp36 fMap.br_state = firstHalf >> 63;
37 fMap.br_startoff = (firstHalf & MASK(63)) >> 9;
38 fMap.br_startblock = ((firstHalf & MASK(9)) << 43) | (secondHalf >> 21);
39 fMap.br_blockcount = secondHalf & MASK(21);
41 "blockcount:(%" B_PRIu64 "),state:(%" B_PRIu8 ")\n", fMap.br_startoff, fMap.br_startblock,
42 fMap.br_blockcount, fMap.br_state);
51 if (fMap.br_state != 0)
60 fInode->FileSystemBlockToAddr(fMap
[all...]
H A DExtent.cpp34 fMap->br_state = (firstHalf >> 63);
35 fMap->br_startoff = (firstHalf & MASK(63)) >> 9;
36 fMap->br_startblock = ((firstHalf & MASK(9)) << 43) | (secondHalf >> 21);
37 fMap->br_blockcount = (secondHalf & MASK(21));
39 "blockcount:(%" B_PRIu64 "),state:(%" B_PRIu8 ")\n", fMap->br_startoff, fMap->br_startblock,
40 fMap->br_blockcount, fMap->br_state);
47 if (fMap->br_state != 0)
56 fInode->FileSystemBlockToAddr(fMap
[all...]
H A DNodeAttribute.cpp27 delete fMap;
38 fMap = new(std::nothrow) ExtentMapEntry;
39 if (fMap == NULL)
57 status = _FillBuffer(fNodeBuffer, fMap->br_startblock);
65 if (!VerifyHeader<NodeHeader>(header, fNodeBuffer, fInode, 0, fMap, ATTR_NODE)) {
89 fMap->br_state = firstHalf >> 63;
90 fMap->br_startoff = (firstHalf & MASK(63)) >> 9;
91 fMap->br_startblock = ((firstHalf & MASK(9)) << 43) | (secondHalf >> 21);
92 fMap->br_blockcount = secondHalf & MASK(21);
108 return fMap
[all...]
H A DLeafAttribute.cpp16 fMap(NULL),
25 delete fMap;
47 if (!VerifyHeader<AttrLeafHeader>(header, fLeafBuffer, fInode, 0, fMap, ATTR_LEAF)) {
61 fMap = new(std::nothrow) ExtentMapEntry;
62 if (fMap == NULL)
75 fMap->br_state = firstHalf >> 63;
76 fMap->br_startoff = (firstHalf & MASK(63)) >> 9;
77 fMap->br_startblock = ((firstHalf & MASK(9)) << 43) | (secondHalf >> 21);
78 fMap->br_blockcount = secondHalf & MASK(21);
80 "blockcount:(%" B_PRIu64 "),state:(%" B_PRIu8 ")\n", fMap
[all...]
H A DNodeAttribute.h39 ExtentMapEntry* fMap; member in class:NodeAttribute
/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 DBufferCache.cpp31 BufferMap::Iterator iterator = fMap.GetIterator();
46 if (fMap.Get(id, existing)) {
66 status_t error = fMap.Put(id, entry);
80 BufferMap::Iterator iterator = fMap.GetIterator();
96 fMap.Remove(iterator);
H A DTimeSourceObjectManager.h33 NodeMap fMap; member in class:BPrivate::media::TimeSourceObjectManager
H A DBufferCache.h39 BufferMap fMap; member in class:BPrivate::BufferCache
/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 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.h39 AppMap fMap; member in class:AppManager
/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/headers/private/shared/
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...]
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...]
/haiku/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/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/add-ons/kernel/file_systems/netfs/headers/shared/
H A DThreadLocal.h31 ThreadLocalMap* fMap; member in class:ThreadLocal
/haiku/headers/os/package/
H A DPackageInfoSet.h61 const PackageMap* fMap; member in class:BPackageKit::BPackageInfoSet::Iterator
/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),

Completed in 150 milliseconds

12