Searched refs:list (Results 426 - 450 of 726) sorted by relevance

<<11121314151617181920>>

/haiku-fatelf/src/system/kernel/
H A Dtimer.cpp72 add_event_to_list(timer* event, timer* volatile* list) argument
77 // stick it in the event list
78 for (next = *list; next; last = next, next = (timer*)next->next) {
88 *list = event;
121 // affectedTimers list.
221 "Prints a list of all scheduled timers.\n", 0);
303 // we need to adjust it and add it back to the list
381 // if we were stuck at the head of the list, set the hardware timer
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/server-Windows/
H A Dubi_AVLtree.cpp568 int ubi_avlModuleID( int size, char *list[] )
572 * Input: size - The number of elements in the array <list>.
573 * list - An array of pointers of type (char *). This array
576 * Output: The number of elements of <list> that were used. If this value
588 list[0] = ModuleID;
590 return( 1 + ubi_btModuleID( --size, &(list[1]) ) );
/haiku-fatelf/headers/os/game/
H A DWindowScreen.h45 void SetColorList(rgb_color* list, int32 firstIndex = 0,
/haiku-fatelf/src/apps/diskusage/
H A DPieView.h57 void _AddAppToList(vector<AppMenuItem*>& list,
/haiku-fatelf/src/apps/mail/
H A DEnclosures.cpp38 // The enclosures list view (TListView), the list items (TListItem),
39 // and the view containing the list
218 BListView *list; local
219 msg->FindPointer("source", (void **)&list);
220 if (list)
222 TListItem *item = (TListItem *) (list->ItemAt(msg->FindInt32("index")));
/haiku-fatelf/src/bin/gdb/gdb/
H A Dsymfile.h49 struct partial_symbol **list; member in struct:psymbol_allocation_list
58 point somewhere between list[0] and list[size], and when at
59 list[size] the array will be expanded on the next attempt to
334 /* Hack to force structures to exist before use in parameter list. */
/haiku-fatelf/src/bin/network/tcpdump/
H A DMakefile188 list="" ; tar="tar chf" ; \
189 for i in `cat FILES` ; do list="$$list $$name/$$i" ; done; \
195 (cd .. ; $$tar - $$list) | compress > /tmp/$$name.tar.Z ; \
/haiku-fatelf/src/bin/network/wget/tests/
H A DFTPServer.pm780 my $list = [];
785 push @$list, $self->_format_for_list($item, $info->{$item});
788 push @$list, $self->_format_for_list(final_component($path), $info);
791 return $list;
/haiku-fatelf/src/preferences/media/
H A DMediaViews.cpp71 SettingsView::AddInputNodes(NodeList& list) argument
76 _PopulateMenu(fInputMenu, list, message);
81 SettingsView::AddOutputNodes(NodeList& list) argument
86 _PopulateMenu(fOutputMenu, list, message);
/haiku-fatelf/src/servers/registrar/mime/
H A DMimeUpdateThread.cpp140 a std::list to save unnecessarily \c statvfs()ing devices that have
153 std::list< std::pair<dev_t,bool> >::iterator i;
164 // If we get here, no such device is yet in our list,
/haiku-fatelf/src/add-ons/accelerants/common/
H A Dcreate_display_modes.cpp23 // TODO: move this list into the app_server
285 // Add other modes from the base list that satisfy the display's
376 // sort mode list
390 // Check the manually tweaked list first
489 // compile initial mode list from the different sources
518 display_mode *list; local
519 area_id area = create_area(name, (void **)&list, B_ANY_ADDRESS,
524 memcpy(list, modes.Modes(), sizeof(display_mode) * modes.Count());
525 *_modes = list;
/haiku-fatelf/data/bin/
H A Dinstalloptionalpackage32 -s Show the final list of packages that would be installed\n\
33 -f Remove cached data and list installable packages\n\
289 # AddExpanderRuleToHaikuImage <mimetype> : <extension> : <list> : <extract>
295 local list=\${functionArgs[2]}
303 TrimLeadingSpace list
304 TrimEndingSpace list
307 local rule_raw="\${mimetype}\\t\${extension}\\t\${list}\\t\${extract}"
463 # read list into associative array
479 echo "Generating a list of Package Names ..."
/haiku-fatelf/src/preferences/printers/
H A DPrinterListView.cpp55 // clear list
372 BListView* list = dynamic_cast<BListView*>(owner); local
373 if (list == NULL)
384 BRect bounds = list->ItemFrame(list->IndexOf(this));
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dkernel.c89 vnlink list; member in struct:vnode
192 static void move_vnode(vnode *vn, int list);
193 static vnode * steal_vnode(int list);
233 va_list list; local
235 va_start(list, s);
236 vfprintf(stdout, s, list);
237 va_end(list);
293 kprintf("nspace 0x%x list 0x%x rcnt 0x%x data 0x%x\n", &vn->nspace,
294 &vn->list, vn->rcnt, vn->data);
497 vns[i].list
2765 move_vnode(vnode *vn, int list) argument
2788 steal_vnode(int list) argument
[all...]
/haiku-fatelf/headers/private/fs_shell/
H A DSinglyLinkedList.h102 Iterator(const List* list) argument
104 fList(list)
/haiku-fatelf/headers/private/kernel/util/
H A DSinglyLinkedList.h96 Iterator(const List* list) argument
98 fList(list)
149 // O(1) if either list is empty, otherwise O(n).
187 /*! Removes \a element from the list.
188 It is safe to call the list with a \c NULL element or an element that isn't
189 in the list.
191 \return \c true, if the element was in the list and has been removed,
246 // This list is empty -- just transfer the head.
252 // Neither list is empty -- find the tail of this list
[all...]
/haiku-fatelf/headers/private/net/
H A Dnet_stack.h12 #include <util/list.h>
37 struct list buffers;
/haiku-fatelf/headers/private/package/hpkg/
H A DWriterImplBase.h164 BPackageResolvableExpression>& list,
177 BPackageResolvableExpression>& list,
/haiku-fatelf/src/add-ons/kernel/file_systems/ramfs/
H A DSLList.h161 inline void _SetTo(SL_LIST_CLASS_NAME *list, Node *previous, Node *node) argument
163 fList = list;
/haiku-fatelf/src/add-ons/kernel/file_systems/udf/
H A DIcb.h139 status_t _GetFileMap(DescriptorList &list, off_t offset,
143 status_t _Read(DescriptorList &list, off_t pos,
/haiku-fatelf/src/apps/cortex/Persistence/
H A DImporter.cpp10 * notice, this list of conditions, and the following disclaimer.
13 * notice, this list of conditions, and the following disclaimer in the
96 list<BString>& errors) :
122 list<BString>& errors,
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dhistexpand.c89 /* The list of characters which inhibit the expansion of text if found
1355 char **list; local
1360 if ((list = history_tokenize (string)) == NULL)
1363 for (len = 0; list[len]; len++)
1385 size += strlen (list[i]) + 1;
1391 strcpy (result + offset, list[i]);
1392 offset += strlen (list[i]);
1402 free (list[i]);
1403 free (list);
/haiku-fatelf/src/bin/bash/support/
H A Dxenix-link.sh78 getcwd.o siglist.o vprint.o oslib.o list.o stringlib.o locale.o \
/haiku-fatelf/src/bin/gdb/readline/
H A Dhistexpand.c86 /* The list of characters which inhibit the expansion of text if found
1288 char **list; local
1293 if ((list = history_tokenize (string)) == NULL)
1296 for (len = 0; list[len]; len++)
1318 size += strlen (list[i]) + 1;
1324 strcpy (result + offset, list[i]);
1325 offset += strlen (list[i]);
1335 free (list[i]);
1336 free (list);
/haiku-fatelf/src/bin/makeudfimage/
H A DAllocator.cpp68 // Add a new chunk to the end of the chunk list if
78 // Block is not past tail, so check the chunk list
79 for (list<Udf::extent_address>::iterator i = fChunkList.begin();
166 for (list<Udf::extent_address>::iterator i = fChunkList.begin();

Completed in 394 milliseconds

<<11121314151617181920>>