/haiku/src/kits/media/ |
H A D | SharedBufferList.cpp | 122 if (fInfos[i].reclaim_sem == groupReclaimSem) { in DeleteGroupAndPut() 124 delete fInfos[i].buffer; in DeleteGroupAndPut() 130 fInfos[i--] = fInfos[fCount]; in DeleteGroupAndPut() 218 fInfos[fCount].id = buffer->ID(); in AddBuffer() 219 fInfos[fCount].buffer = buffer; in AddBuffer() 220 fInfos[fCount].reclaim_sem = groupReclaimSem; in AddBuffer() 221 fInfos[fCount].reclaimed = true; in AddBuffer() 239 if (fInfos[i].id == id in CheckID() 240 && fInfos[i].reclaim_sem == groupSem) { in CheckID() 301 if (fInfos[i].reclaim_sem == groupReclaimSem in RequestBuffer() [all …]
|
/haiku/src/servers/registrar/ |
H A D | AppInfoList.cpp | 49 : fInfos() in AppInfoList() 75 result = fInfos.AddItem(info); in AddInfo() 87 return fInfos.RemoveItem(info); in RemoveInfo() 101 fInfos.MakeEmpty(); in MakeEmpty() 173 return fInfos.CountItems(); in CountInfos() 197 RosterAppInfo **infos = (RosterAppInfo **)fInfos.Items(); in Sort() 211 return (RosterAppInfo*)fInfos.RemoveItem(index); in RemoveInfo() 223 return (RosterAppInfo*)fInfos.ItemAt(index); in InfoAt() 235 return fInfos.IndexOf(info); in IndexOf()
|
H A D | AppInfoList.h | 77 BList fInfos;
|
/haiku/src/apps/terminal/ |
H A D | TerminalRoster.cpp | 96 fInfos(10, true), in TerminalRoster() 208 if (!fInfos.BinaryInsert(fOurInfo, &_CompareInfos)) { in Register() 217 fInfos.MakeEmpty(true); in Register() 259 fInfos.RemoveItem(fOurInfo); in Unregister() 396 while (oldIndex < fInfos.CountItems() || newIndex < infos.CountItems()) { in _UpdateInfos() 397 Info* oldInfo = fInfos.ItemAt(oldIndex); in _UpdateInfos() 402 if (!fInfos.AddItem(newInfo, oldIndex++)) in _UpdateInfos() 411 delete fInfos.RemoveItemAt(oldIndex); in _UpdateInfos()
|
H A D | TerminalRoster.h | 67 { return fInfos.CountItems(); } in CountTerminals() 69 { return fInfos.ItemAt(index); } in TerminalAt() 96 InfoList fInfos; variable
|
/haiku/src/apps/processcontroller/ |
H A D | QuitMenu.cpp | 40 fInfos(infos), in QuitMenu() 96 while (t < fInfosCount && tmid != fInfos[t].team_info.team) { in AddTeam() 104 item = new QuitMenuItem(tmid, fInfos[t].team_icon, fInfos[t].team_name, in AddTeam()
|
H A D | QuitMenu.h | 24 const info_pack* fInfos;
|
/haiku/src/tests/add-ons/kernel/kernelland_emu/ |
H A D | module.cpp | 65 module_info **ModuleInfos() const { return fInfos; } in ModuleInfos() 70 module_info **fInfos; member in ModuleAddOn 158 fInfos(NULL), in ModuleAddOn() 202 fInfos = infos; in Load() 219 fInfos = NULL; in Unload() 257 if (fInfos && name) { in FindModuleInfo() 258 for (int32 i = 0; module_info *info = fInfos[i]; i++) { in FindModuleInfo()
|
/haiku/src/system/libroot/posix/stdlib/ |
H A D | exit.cpp | 63 AtExitInfo* info = &fInfos[fFirstUnused++]; in AllocateInfo() 78 AtExitInfo fInfos[ATEXIT_MAX]; member
|
/haiku/src/kits/tracker/ |
H A D | VirtualDirectoryManager.cpp | 606 NodeRefInfoMap::const_iterator it = fInfos.find(nodeRef); in _InfoForNodeRef() 607 return it != fInfos.end() ? it->second : NULL; in _InfoForNodeRef() 615 fInfos[info->DefinitionFileNodeRef()] = info; in _AddInfo() 626 NodeRefInfoMap::iterator it = fInfos.find(info->DefinitionFileNodeRef()); in _RemoveInfo() 627 if (it != fInfos.end()) in _RemoveInfo() 628 fInfos.erase(it); in _RemoveInfo()
|
H A D | VirtualDirectoryManager.h | 109 NodeRefInfoMap fInfos; variable
|
/haiku/headers/private/media/ |
H A D | SharedBufferList.h | 74 _shared_buffer_info fInfos[kMaxBuffers]; variable
|
/haiku/src/kits/interface/ |
H A D | GridLayout.cpp | 68 for (int32 i = 0; Info* info = (Info*)fInfos.ItemAt(i); i++) in ~RowInfoArray() 74 return fInfos.CountItems(); in Count() 125 return (Info*)fInfos.ItemAt(index); in _InfoAt() 144 fInfos.AddItem(info); in _InfoAt() 151 BList fInfos; member in BGridLayout::RowInfoArray
|
/haiku/src/tests/kits/storage/testapps/ |
H A D | PathMonitorTest2.cpp | 452 fInfos.push_back(info); in Add() 471 return fInfos.empty(); in IsEmpty() 476 return fInfos.size(); in CountInfos() 481 return fInfos[index]; in InfoAt() 486 fInfos.erase(fInfos.begin() + index); in Remove() 502 std::vector<MonitoringInfo> fInfos; member
|
/haiku/src/add-ons/kernel/file_systems/userlandfs/private/ |
H A D | Requests.cpp | 346 : fInfos(infos), in RequestAddressInfoGetter() 353 return request->GetAddressInfos(fInfos, fCount); in operator ()() 357 AddressInfo* fInfos; member
|