Searched refs:list (Results 201 - 225 of 437) sorted by relevance

1234567891011>>

/haiku/src/tests/system/kernel/unit/
H A Dkernel_unit_tests.cpp37 " list\n"
230 } else if (strcmp(argv[0], "list") == 0) {
/haiku/headers/private/app/
H A DLooperList.h37 void GetLooperList(BList* list);
/haiku/src/preferences/printers/
H A DJobListView.cpp63 // clear list
267 BListView* list = dynamic_cast<BListView*>(owner); local
268 if (list) {
276 BRect bounds = list->ItemFrame(list->IndexOf(this));
/haiku/src/libs/compat/freebsd_network/
H A Dshared.h25 struct list children;
H A Ddevice.h18 #include <util/list.h>
/haiku/src/kits/tracker/infowindow/
H A DInfoWindow.h60 LockingList<BWindow>* list = NULL);
/haiku/src/add-ons/print/transports/ipp/
H A DIppURLConnection.cpp20 #include <list>
/haiku/src/apps/installer/
H A DWorkerThread.h29 void SetPackagesList(BList* list);
/haiku/src/system/kernel/fs/
H A Dnode_monitor.cpp26 #include <util/list.h>
523 list to a supplied array of listener lists.
525 Note, that in general not all of the listeners in an appended list will be
528 the first listener in the list, that is interested.
535 interested listeners for the node, the list will be appended to
538 \a interestedListeners array. Will be incremented, if a list is
555 interested_monitor_listener_list &list local
557 list.iterator = iterator;
558 list.flags = flags;
579 interested_monitor_listener_list &list local
604 interested_monitor_listener_list *list = interestedListeners; local
[all...]
/haiku/src/apps/haikudepot/build/scripts/
H A Dhdsjsonschemacommon.py127 def collect_all_objects(schema: dict[str, any]) -> list[dict[str, any]]:
144 result = list(assembly.values())
201 def collect_referenced_class_names() -> list[str]:
217 result_ordered = list(result)
244 # iterate over a list where each item in the list has some properties.
/haiku/headers/private/kernel/
H A Dint.h15 #include <util/list.h>
/haiku/src/bin/
H A Dfinddir.c169 retrieveDirValue(directoryType *list, const char *key, argument
174 while (list[i].key != NULL) {
175 if (strcmp(list[i].key, key) == 0) {
176 *valueOut = list[i].value;
191 printf("\t-l\t list valid which constants to use\n");
/haiku/src/kits/app/
H A DHandler.cpp149 // remove all observers (the observer list manages itself)
212 ObserverList* list = _ObserverList(); local
213 if (list != NULL) {
215 list->Add(target, what);
217 list->Remove(target, what);
392 anyone ever assigns a list of filters and then checks against
566 ObserverList* list = _ObserverList(); local
567 if (list == NULL)
570 return list->Add(handler, what);
584 ObserverList* list local
[all...]
H A DLooperList.cpp10 //! Maintains a global list of all loopers in a given team.
105 BLooperList::GetLooperList(BList* list) argument
112 list->AddItem(fData[i].looper);
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DKeyCommandMap.cpp309 // swap in the new list
330 KeyCommandMap::_DeleteHKSList(BList* list) argument
332 if (list == NULL)
335 int32 count = list->CountItems();
337 delete (hks*)list->ItemAt(i);
339 delete list;
/haiku/src/kits/interface/
H A DShelf.cpp169 static replicant_data* Find(BList const *list, BMessage const *msg);
170 static replicant_data* Find(BList const *list, BView const *view, bool allowZombie);
171 static replicant_data* Find(BList const *list, unsigned long id);
173 static int32 IndexOf(BList const *list, BMessage const *msg);
174 static int32 IndexOf(BList const *list, BView const *view, bool allowZombie);
175 static int32 IndexOf(BList const *list, unsigned long id);
240 find_replicant(BList &list, const char *className, const char *addOn) argument
244 while ((item = (replicant_data *)list.ItemAt(i++)) != NULL) {
319 replicant_data::Find(BList const *list, BMessage const *msg) argument
323 while ((item = (replicant_data*)list
334 Find(BList const *list, BView const *view, bool allowZombie) argument
352 Find(BList const *list, unsigned long id) argument
367 IndexOf(BList const *list, BMessage const *msg) argument
383 IndexOf(BList const *list, BView const *view, bool allowZombie) argument
402 IndexOf(BList const *list, unsigned long id) argument
[all...]
/haiku/src/kits/storage/mime/
H A DSnifferRules.cpp53 \c SnifferRules object managing the rule list is responsible for actually
83 the end of the list of rules).
128 \c Sniffer::Rule objects scattered throughout the rule list in
133 for (std::list<sniffer_rule>::iterator i = fRuleList.begin();
221 If the a rule currently exists in the rule list for the given type,
224 The new rule is inserted in its proper, sorted position in the list.
258 // the sorted rule list (remembering that our list
262 std::list<sniffer_rule>::iterator i;
277 /*! \brief Removes the sniffer rule for the given type from the rule list
[all...]
/haiku/src/tests/kits/game/chart/
H A DChartWindow.cpp428 fStars.list = (star*)malloc(sizeof(star)*STAR_DENSITY_MAX);
429 fSpecials.list = (star*)malloc(sizeof(star)*SPECIAL_COUNT_MAX);
950 free(fStars.list);
951 free(fSpecials.list);
1125 /* loop through the window list of the application, looking for
1485 /* check for change in the star colors list */
1488 /* if any, get the list of usable color index... */
1652 FillStarList(fStars.list, STAR_DENSITY_MAX);
1660 FillStarList(fStars.list, 8);
1662 amas[i].x = fStars.list[
1826 FillStarList(star *list, int32 count) argument
[all...]
/haiku/src/kits/media/
H A DMediaRoster.cpp21 * this list of conditions and the following disclaimer.
24 * in the binary, as well as this list of conditions and the following
444 BMediaRosterEx::GetAllOutputs(const media_node& node, List<media_output>* list) argument
461 list->MakeEmpty();
471 if (!list->Insert(reply.output)) {
472 ERROR("GetAllOutputs: list->Insert failed\n");
491 BMediaRosterEx::GetAllOutputs(BBufferProducer* node, List<media_output>* list) argument
501 list->MakeEmpty();
506 if (!list->Insert(output)) {
507 ERROR("GetAllOutputs: list
521 GetAllInputs(const media_node& node, List<media_input>* list) argument
568 GetAllInputs(BBufferConsumer* node, List<media_input>* list) argument
598 PublishOutputs(const media_node& node, List<media_output>* list) argument
2194 List<media_output> list; local
2201 List<media_input> list; local
[all...]
/haiku/src/servers/registrar/
H A DShutdownProcess.cpp737 // create the event list
796 // remove the app info from the respective list
835 // add the user app info to the respective list
1346 // get a list of all applications to shut down and sort them
1438 ShutdownProcess::_WaitForApp(team_id team, AppInfoList* list, bool systemApps) argument
1477 if (list != NULL && !list->InfoFor(team))
1486 ShutdownProcess::_QuitApps(AppInfoList& list, bool systemApps) argument
1518 // now iterate through the list of apps
1545 while (!list
1689 AppInfoList& list = fBackgroundApps; local
1752 _QuitBlockingApp(AppInfoList& list, team_id team, const char* appName, bool cancelAllowed) argument
[all...]
/haiku/src/libs/linprog/
H A DLinearSpec.cpp538 LinearSpec::_CheckSummandList(SummandList* list) argument
541 for (int i = 0; i < list->CountItems(); i++) {
542 if (list->ItemAt(i) == NULL) {
550 for (int i = 0; i < list->CountItems(); i++)
551 delete list->ItemAt(i);
552 delete list;
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DMultiAudioUtility.cpp202 get_buffers(int device, multi_buffer_list* list) argument
204 return call_driver(device, B_MULTI_GET_BUFFERS, list);
/haiku/src/tools/fs_shell/
H A Dpartition_support.cpp13 #include <list>
45 typedef std::list<FileRestriction*> FileRestrictionList;
/haiku/src/system/boot/platform/openfirmware/
H A Ddevices.cpp121 NodeList *list, NodeList *partitionList)
123 NodeIterator iterator = list->GetIterator();
183 // add all block devices to the list of possible boot devices
120 platform_get_boot_partitions(struct stage2_args *args, Node *device, NodeList *list, NodeList *partitionList) argument
/haiku/src/kits/network/libnetservices2/
H A DHttpTime.cpp13 #include <list>
36 static const std::list<std::pair<BHttpTimeFormat, const char*>> kDateFormats = {

Completed in 108 milliseconds

1234567891011>>