Searched refs:list (Results 276 - 300 of 437) sorted by relevance

<<1112131415161718

/haiku/headers/private/kernel/util/
H A DSinglyLinkedList.h99 Iterator(const List* list) argument
101 fList(list)
152 // O(1) if either list is empty, otherwise O(n).
190 /*! Removes \a element from the list.
191 It is safe to call the list with a \c NULL element or an element that isn't
192 in the list.
194 \return \c true, if the element was in the list and has been removed,
249 // This list is empty -- just transfer the head.
255 // Neither list is empty -- find the tail of this list
[all...]
/haiku/src/apps/installer/
H A DPackageViews.cpp286 PackagesView::GetPackagesToInstall(BList* list, int32* size) argument
293 list->AddItem(cb->GetPackage());
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_qpair.c12 * notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in
409 LIST_REMOVE(tr, list);
410 LIST_INSERT_HEAD(&qpair->free_tr, tr, list);
503 tr = LIST_NEXT(tr, list);
525 * Build PRP list describing physically contiguous payload buffer.
581 * Build SGL list describing scattered payload buffer.
662 * Build Physical Region Page list describing scattered payload buffer.
766 LIST_FOREACH_SAFE(tr, &qpair->outstanding_tr, list, tr_temp) {
796 LIST_FOREACH_SAFE(tr, &qpair->outstanding_tr, list, tem
[all...]
/haiku/src/system/boot/platform/riscv/
H A Ddevices.cpp186 NodeList *list, NodeList *partitionList)
188 NodeIterator iterator = list->GetIterator();
185 platform_get_boot_partitions(struct stage2_args* args, Node* bootDevice, NodeList *list, NodeList *partitionList) argument
/haiku/src/kits/tracker/
H A DModel.h181 bool IsDropTargetForList(const BObjectList<BString>* list) const;
182 // <list> contains mime types of all documents about to be handled
192 const BObjectList<BString>* list, bool exactReason = false) const;
193 // pass in one string in <type> or a bunch in <list>
H A DModel.cpp1092 Model::SupportsMimeType(const char* type, const BObjectList<BString>* list, argument
1095 ASSERT((type == 0) != (list == 0));
1128 if (type != NULL || (list != NULL && list->IsEmpty())) {
1132 match = WhileEachListItem(const_cast<BObjectList<BString>*>(list),
1155 Model::IsDropTargetForList(const BObjectList<BString>* list) const
1168 return SupportsMimeType(0, list) != kDoesNotSupportType;
H A DThumbnails.cpp11 #include <list>
57 static std::list<GenerateThumbnailJob*> sActiveJobs;
273 for (std::list<GenerateThumbnailJob*>::iterator it = sActiveJobs.begin();
/haiku/src/libs/linprog/
H A DActiveSetSolver.cpp663 ActiveSetSolver::_RemoveSoftConstraint(ConstraintList& list) argument
673 list.AddItem(constraint);
679 ActiveSetSolver::_AddSoftConstraint(const ConstraintList& list) argument
681 for (int i = 0; i < list.CountItems(); i++) {
682 Constraint* constraint = list.ItemAt(i);
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPJob.cpp237 GPJob::PrintPage(list<GPBand*>& bands) {
269 list<GPBand*>::iterator it = fBands->begin();
366 GPJob::GetPrintRectangle(list<GPBand*>& bands)
368 list<GPBand*>::iterator it = bands.begin();
436 list<GPBand*>::iterator it = fBands->begin();
/haiku/src/kits/interface/
H A DDragger.cpp69 BList list; member in struct:__anon9::DraggerManager
616 for (int32 i = manager->list.CountItems(); i-- > 0;) {
617 BDragger* dragger = (BDragger*)manager->list.ItemAt(i);
637 manager->list.AddItem(this);
658 manager->list.RemoveItem(this);
/haiku/src/kits/mail/
H A DMailMessage.cpp117 BList list; local
118 get_address_list(list, CC(), extract_address);
119 get_address_list(list, To(), extract_address);
131 for (int32 i = list.CountItems(); i-- > 0;) {
132 char* address = (char*)list.RemoveItem((int32)0);
135 // list
/haiku/src/bin/
H A Dxres.cpp776 bool list = false; local
837 list = true;
891 if ((list && noList) || (list && !hasInputFiles))
896 if (list)
/haiku/src/apps/bootmanager/
H A Dbootman.S459 jne .done ; At end of list?
474 jnz .done ; At top of list?
487 ; ======================= Print the OS list ============================
492 mov si, list ; Start at top of list
607 mov si, list ; Search address of start sector
690 list equ timeout + 2 define
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddevice_manager.cpp153 status_t _GetNextDriver(void* list,
1353 device_node::_GetNextDriver(void* list, driver_module_info*& driver) argument
1359 status_t status = read_next_module_name(list, name, &nameLength);
1387 void* list = open_module_list_etc(path, "driver_v1"); local
1389 while (_GetNextDriver(list, driver) == B_OK) {
1408 close_module_list(list);
1417 void* list = open_module_list_etc(path, "driver_v1"); local
1421 while (_GetNextDriver(list, driver) == B_OK) {
1432 close_module_list(list);
/haiku/src/add-ons/accelerants/ati/
H A Dmode.cpp20 // Search the mode list for the mode with specified width, height,
173 // Obtain EDID info which is needed for for building the mode list.
205 display_mode* list; local
212 (check_display_mode_hook)checkMode, &list, &count);
219 gInfo.modeList = list;
237 // Search the mode list for the specified mode.
247 return B_OK; // mode found in list
250 return B_BAD_VALUE; // mode not found in list
340 // Return the number of display modes in the mode list.
349 // Copy the list o
[all...]
/haiku/src/add-ons/accelerants/s3/
H A Dmode.cpp114 // Search the mode list for the mode with specified width, height,
234 // Obtain EDID info which is needed for for building the mode list.
272 display_mode* list; local
279 (check_display_mode_hook)checkMode, &list, &count);
286 gInfo.modeList = list;
304 // Search the mode list for the specified mode.
314 return B_OK; // mode found in list
317 return B_BAD_VALUE; // mode not found in list
417 // Return the number of display modes in the mode list.
426 // Copy the list o
[all...]
/haiku/src/apps/patchbay/
H A DPatchView.cpp152 for (list<EndpointInfo>::const_iterator i = fProducers.begin();
160 for (list<EndpointInfo>::const_iterator i = fConsumers.begin();
366 for (list<EndpointInfo>::const_iterator i = fConsumers.begin();
/haiku/src/tests/add-ons/print/ppd/ui/
H A DPPDConfigView.cpp127 void Visit(StatementList* list);
186 void DetailsBuilder::Visit(StatementList* list) argument
190 StatementListVisitor::Visit(list);
398 // add category outline list view
/haiku/src/preferences/time/
H A DNetworkTimeView.cpp500 B_TRANSLATE("Reset to default server list"),
587 BList* list = (BList*)params; local
588 BMessenger* messenger = (BMessenger*)list->ItemAt(1);
592 status_t status = update_time(*(Settings*)list->ItemAt(0),
/haiku/src/servers/launch/
H A DJob.cpp550 Job::_AddStringList(std::vector<const char*>& array, const BStringList& list) argument
552 int32 count = list.CountStrings();
554 array.push_back(list.StringAt(index).String());
/haiku/src/system/kernel/device_manager/
H A Ddevice_manager.cpp170 status_t _GetNextDriver(void* list,
402 void* list = open_module_list_etc(path.Path(), "driver_v1"); local
405 while (read_next_module_name(list, name, &nameLength) == B_OK) {
419 close_module_list(list);
1797 device_node::_GetNextDriver(void* list, driver_module_info*& driver) argument
1803 status_t status = read_next_module_name(list, name, &nameLength);
1831 void* list = open_module_list_etc(path, "driver_v1"); local
1833 while (_GetNextDriver(list, driver) == B_OK) {
1852 close_module_list(list);
1861 void* list local
[all...]
/haiku/headers/private/net/
H A Dnet_buffer.h13 #include <util/list.h>
/haiku/src/add-ons/kernel/drivers/disk/virtual/nbd/
H A Dnbd-server.py103 abuf = list(afile.read())
/haiku/src/bin/rc/
H A Dcompile.cpp62 typedef std::list<mem_t> mem_list_t;
/haiku/src/system/boot/platform/amiga_m68k/
H A Dvideo.cpp19 #include <util/list.h>

Completed in 140 milliseconds

<<1112131415161718