Searched refs:list (Results 151 - 175 of 726) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/gdb/gdb/gdbserver/
H A Dserver.h63 /* Generic information for tracking a list of ``inferiors'' - threads,
92 void add_inferior_to_list (struct inferior_list *list,
94 void for_each_inferior (struct inferior_list *list,
97 void remove_inferior (struct inferior_list *list,
107 struct inferior_list_entry *find_inferior_id (struct inferior_list *list,
113 void change_inferior_id (struct inferior_list *list,
/haiku-fatelf/src/tests/add-ons/print/ppd/test/
H A DTestParser.cpp71 void ExtractChildren(StatementList* list, int level);
124 void ExtractChildren(StatementList* list, int level) argument
126 if (list == NULL) return;
127 for (int32 i = 0; i < list->Size(); i ++) {
128 Statement* statement = list->StatementAt(i);
/haiku-fatelf/src/bin/gdb/gdb/cli/
H A Dcli-decode.c132 Add this command to command list *LIST.
139 char *doc, struct cmd_list_element **list)
145 delete_cmd (name, list);
147 if (*list == NULL || strcmp ((*list)->name, name) >= 0)
149 c->next = *list;
150 *list = c;
154 p = *list;
216 int abbrev_flag, struct cmd_list_element **list)
224 old = lookup_cmd (&copied_name, *list, "",
137 add_cmd(char *name, enum command_class class, void (*fun) (char *, int), char *doc, struct cmd_list_element **list) argument
214 add_alias_cmd(char *name, char *oldname, enum command_class class, int abbrev_flag, struct cmd_list_element **list) argument
249 add_prefix_cmd(char *name, enum command_class class, void (*fun) (char *, int), char *doc, struct cmd_list_element **prefixlist, char *prefixname, int allow_unknown, struct cmd_list_element **list) argument
264 add_abbrev_prefix_cmd(char *name, enum command_class class, void (*fun) (char *, int), char *doc, struct cmd_list_element **prefixlist, char *prefixname, int allow_unknown, struct cmd_list_element **list) argument
300 add_set_or_show_cmd(char *name, enum cmd_types type, enum command_class class, var_types var_type, void *var, char *doc, struct cmd_list_element **list) argument
372 add_set_cmd(char *name, enum command_class class, var_types var_type, void *var, char *doc, struct cmd_list_element **list) argument
391 add_set_enum_cmd(char *name, enum command_class class, const char *enumlist[], const char **var, char *doc, struct cmd_list_element **list) argument
544 deprecated_add_show_from_set(struct cmd_list_element *setcmd, struct cmd_list_element **list) argument
563 delete_cmd(char *name, struct cmd_list_element **list) argument
776 help_list(struct cmd_list_element *list, char *cmdtype, enum command_class class, struct ui_file *stream) argument
892 help_cmd_list(struct cmd_list_element *list, enum command_class class, char *prefix, int recurse, struct ui_file *stream) argument
1142 lookup_cmd(char **line, struct cmd_list_element *list, char *cmdtype, int allow_unknown, int ignore_help_classes) argument
1454 complete_on_cmdlist(struct cmd_list_element *list, char *text, char *word) argument
[all...]
H A Dcli-setshow.c98 command). C is the command list element for the command. */
353 /* Show all the settings in a list of show commands. */
356 cmd_show_list (struct cmd_list_element *list, int from_tty, char *prefix)
361 for (; list != NULL; list = list->next)
363 /* If we find a prefix, run its list, prefixing our output by its
365 if (list->prefixlist && !list->abbrev_flag)
369 char *new_prefix = strstr (list
354 cmd_show_list(struct cmd_list_element *list, int from_tty, char *prefix) argument
[all...]
/haiku-fatelf/src/libs/glut/
H A DglutMenu.cpp168 item = gState.currentMenu->list;
195 item = gState.currentMenu->list;
222 prev = &gState.currentMenu->list;
223 item = gState.currentMenu->list;
229 /* Patch up menu's item list. */
275 GlutMenuItem *item = list;
303 while (list) {
304 GlutMenuItem *next = list->next;
305 delete list;
306 list
[all...]
/haiku-fatelf/src/add-ons/tracker/zipomatic/
H A DZipOMatic.cpp200 BList list; local
211 list.AddItem(zWindow);
227 zWindow = new ZippoWindow(list);
230 zWindow = new ZippoWindow(list, true);
242 BList list; local
253 list.AddItem(zippo);
257 zippo = static_cast<ZippoWindow*>(list.ItemAt(i));
/haiku-fatelf/src/bin/gdb/gdb/tui/
H A Dtui-wingeneral.c252 tui_refresh_all (struct tui_win_info * * list) argument
259 if (list[type] && list[type]->generic.is_visible)
263 touchwin (list[type]->detail.source_info.execution_info->handle);
264 tui_refresh_win (list[type]->detail.source_info.execution_info);
266 touchwin (list[type]->generic.handle);
267 tui_refresh_win (&list[type]->generic);
/haiku-fatelf/src/libs/ncurses/form/
H A Dfty_num.c147 wchar_t *list = _nc_Widen_String((char *)bp, &len); local
149 if (list != 0)
156 if (list[n] != ' ')
162 else if (list[n] == ' ')
166 else if (isDecimalPoint(list[n]))
174 else if (!isDigit(list[n]))
180 free(list);
H A Dform.priv.h204 wchar_t *list = _nc_Widen_String((char *)buffer, &len); \
205 if (list != 0) \
212 if (list[n] != ' ') \
218 else if (list[n] == ' ') \
223 else if (!ccheck(list[n], NULL)) \
229 free(list); \
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/MyNetwork/
H A DMyNetView.cpp34 #define TEXT_WARN_NETUNREACH "A network error has prevented the discovery of other computers on your network. Consequently, the list of those computers cannot be displayed."
159 list = new IconListView(Bounds(), "Other Computers");
160 list->SetSelectionMessage(new BMessage(MSG_HOST_SELECT));
161 list->SetInvocationMessage(new BMessage(MSG_HOST_INVOKE));
172 AddChild(new BScrollView("scroll", list, B_FOLLOW_ALL, 0, false, true));
180 for (i = 0; item = list->ItemAt(i); i++)
183 delete list;
194 list->LockLooper();
195 list->AddItem(item);
196 list
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/kernelland_emu/
H A Dmodule.cpp122 status_t ReadNextModuleName(module_name_list *list, char *buffer,
124 status_t CloseModuleList(module_name_list *list);
134 const char *suffix, module_name_list *list);
136 module_name_list *list);
489 module_name_list *list = NULL; local
491 list = new module_name_list;
492 _FindBuiltInModules(prefix, suffix, list);
499 _FindModules(dir, gModuleDirs[i], suffix, list);
503 list->it = list
510 ReadNextModuleName(module_name_list *list, char *buffer, size_t *bufferSize) argument
533 CloseModuleList(module_name_list *list) argument
606 _FindModules(BDirectory &dir, const char *moduleDir, const char *suffix, module_name_list *list) argument
633 _FindBuiltInModules(const char *prefix, const char *suffix, module_name_list *list) argument
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/udf/
H A DIcb.cpp236 AllocationDescriptorList<ShortDescriptorAccessor> list(this,
238 status = list.FindExtent(pos, &extent, &isEmpty);
249 AllocationDescriptorList<LongDescriptorAccessor> list(this);
250 status = list.FindExtent(pos, &extent, &isEmpty);
261 // AllocationDescriptorList<ExtendedDescriptorAccessor> list(this, ExtendedDescriptorAccessor(0));
262 // RETURN(_Read(list, pos, buffer, length, block));
313 AllocationDescriptorList<ShortDescriptorAccessor> list(this,
315 RETURN(_Read(list, pos, buffer, length, block));
322 AllocationDescriptorList<LongDescriptorAccessor> list(this);
323 RETURN(_Read(list, po
357 _Read(DescriptorList &list, off_t pos, void *_buffer, size_t *length, uint32 *block) argument
491 _GetFileMap(DescriptorList &list, off_t offset, size_t size, struct file_io_vec *vecs, size_t *count) argument
[all...]
/haiku-fatelf/src/add-ons/accelerants/neomagic/
H A Dbe_driver_proto.h48 void SCREEN_TO_SCREEN_BLIT(engine_token *et, blit_params *list, uint32 count);
49 void SCREEN_TO_SCREEN_TRANSPARENT_BLIT(engine_token *et, uint32 transparent_colour, blit_params *list, uint32 count);
50 void SCREEN_TO_SCREEN_SCALED_FILTERED_BLIT(engine_token *et, scaled_blit_params *list, uint32 count);
51 void FILL_RECTANGLE(engine_token *et, uint32 color, fill_rect_params *list, uint32 count);
52 void INVERT_RECTANGLE(engine_token *et, fill_rect_params *list, uint32 count);
53 void FILL_SPAN(engine_token *et, uint32 color, uint16 *list, uint32 count);
/haiku-fatelf/src/add-ons/accelerants/nvidia/
H A Dbe_driver_proto.h56 void SCREEN_TO_SCREEN_BLIT_PIO(engine_token *et, blit_params *list, uint32 count);
57 void SCREEN_TO_SCREEN_TRANSPARENT_BLIT_PIO(engine_token *et, uint32 transparent_colour, blit_params *list, uint32 count);
58 void SCREEN_TO_SCREEN_SCALED_FILTERED_BLIT_PIO(engine_token *et, scaled_blit_params *list, uint32 count);
59 void FILL_RECTANGLE_PIO(engine_token *et, uint32 color, fill_rect_params *list, uint32 count);
60 void INVERT_RECTANGLE_PIO(engine_token *et, fill_rect_params *list, uint32 count);
61 void FILL_SPAN_PIO(engine_token *et, uint32 color, uint16 *list, uint32 count);
/haiku-fatelf/src/add-ons/accelerants/nvidia_gpgpu/
H A Dbe_driver_proto.h52 void SCREEN_TO_SCREEN_BLIT_PIO(engine_token *et, blit_params *list, uint32 count);
53 void SCREEN_TO_SCREEN_TRANSPARENT_BLIT_PIO(engine_token *et, uint32 transparent_colour, blit_params *list, uint32 count);
54 void SCREEN_TO_SCREEN_SCALED_FILTERED_BLIT_PIO(engine_token *et, scaled_blit_params *list, uint32 count);
55 void FILL_RECTANGLE_PIO(engine_token *et, uint32 color, fill_rect_params *list, uint32 count);
56 void INVERT_RECTANGLE_PIO(engine_token *et, fill_rect_params *list, uint32 count);
57 void FILL_SPAN_PIO(engine_token *et, uint32 color, uint16 *list, uint32 count);
/haiku-fatelf/src/add-ons/accelerants/skeleton/
H A Dbe_driver_proto.h48 void SCREEN_TO_SCREEN_BLIT(engine_token *et, blit_params *list, uint32 count);
49 void SCREEN_TO_SCREEN_TRANSPARENT_BLIT(engine_token *et, uint32 transparent_colour, blit_params *list, uint32 count);
50 void SCREEN_TO_SCREEN_SCALED_FILTERED_BLIT(engine_token *et, scaled_blit_params *list, uint32 count);
51 void FILL_RECTANGLE(engine_token *et, uint32 color, fill_rect_params *list, uint32 count);
52 void INVERT_RECTANGLE(engine_token *et, fill_rect_params *list, uint32 count);
53 void FILL_SPAN(engine_token *et, uint32 color, uint16 *list, uint32 count);
/haiku-fatelf/src/add-ons/accelerants/via/
H A Dbe_driver_proto.h48 void SCREEN_TO_SCREEN_BLIT(engine_token *et, blit_params *list, uint32 count);
49 void SCREEN_TO_SCREEN_TRANSPARENT_BLIT(engine_token *et, uint32 transparent_colour, blit_params *list, uint32 count);
50 void SCREEN_TO_SCREEN_SCALED_FILTERED_BLIT(engine_token *et, scaled_blit_params *list, uint32 count);
51 void FILL_RECTANGLE(engine_token *et, uint32 color, fill_rect_params *list, uint32 count);
52 void INVERT_RECTANGLE(engine_token *et, fill_rect_params *list, uint32 count);
53 void FILL_SPAN(engine_token *et, uint32 color, uint16 *list, uint32 count);
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dundo.c56 the undo list. */
62 /* The current undo list for THE_LINE. */
104 /* Free the existing undo list. */
140 UNDO_LIST *list, *new, *roving, *c; local
142 list = head;
144 while (list)
146 c = _rl_copy_undo_entry (list);
154 list = list->next;
161 /* Undo the next thing in the list
[all...]
/haiku-fatelf/src/servers/app/
H A DScreenManager.cpp92 int32 wishCount, const char* target, bool force, ScreenList& list)
97 // TODO: don't ignore the wish list
102 if (item->owner == NULL && list.AddItem(item->screen)) {
124 if (item != NULL && list.AddItem(item->screen)) {
137 ScreenManager::ReleaseScreens(ScreenList& list) argument
144 for (int32 j = 0; j < list.CountItems(); j++) {
145 Screen* screen = list.ItemAt(j);
91 AcquireScreens(ScreenOwner* owner, int32* wishList, int32 wishCount, const char* target, bool force, ScreenList& list) argument
/haiku-fatelf/headers/os/support/
H A DStringList.h24 bool Add(const BStringList& list, int32 index);
25 bool Add(const BStringList& list);
29 bool Remove(const BStringList& list,
/haiku-fatelf/src/bin/network/wget/build-aux/
H A Duseless-if-before-free64 --list print only the name of each matching FILE (\0-terminated)
65 --name=N add name N to the list of \`free\'-like functions to detect;
101 my $list;
107 list => \$list,
155 $list
/haiku-fatelf/src/tests/kits/net/DialUpPreflet/
H A DInterfaceUtils.cpp47 FindNextListInsertionIndex(BListView *list, const char *name) argument
51 for(; index < list->CountItems(); index++) {
52 item = static_cast<BStringItem*>(list->ItemAt(index));
/haiku-fatelf/src/tests/kits/net/preflet/DialUpAddOn/
H A DInterfaceUtils.cpp63 FindNextListInsertionIndex(BListView *list, const char *name) argument
67 for(; index < list->CountItems(); index++) {
68 item = static_cast<BStringItem*>(list->ItemAt(index));
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/lio_listio/
H A D8-1.c46 struct aiocb *list[1]; local
86 list[0] = &aiocb;
88 if (lio_listio(LIO_WAIT, list, 1, NULL) == -1)
H A D9-1.c47 struct aiocb *list[1]; local
79 list[0] = &aiocb;
81 if (lio_listio(LIO_WAIT, list, 1, NULL) == -1)

Completed in 216 milliseconds

1234567891011>>