Searched defs:list (Results 1 - 25 of 38) sorted by relevance

12

/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/fbc/
H A Dfbc_mode_list.h39 * Unintrusive singly-linked ModeLine / Mode-EndMode list element
42 GenericListRec list; /* Ptr to next Mode list element */ member in struct:fbc_mode_elem_st
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/
H A Dxf86Optrec.h83 GenericListRec list; member in struct:__anon58
97 XF86OptionPtr head, /* Ptr to head of option list */
110 XF86OptionPtr xf86nextOption(XF86OptionPtr list);
111 XF86OptionPtr xf86findOption(XF86OptionPtr list, const char *name);
112 char *xf86findOptionValue(XF86OptionPtr list, const char *name);
124 FILE *fp, XF86OptionPtr list, const char * const whitespace[]);
126 FILE *fp, XF86OptionPtr list, const char * const whitespace[]);
H A DVendor.c203 for (pptr = ptr->vnd_sub_lst; pptr; pptr = pptr->list.next)
214 ptr = ptr->list.next;
242 ptr = ptr->list.next;
248 xf86findVendor (const char *name, XF86ConfVendorPtr list) argument
250 while (list)
252 if (xf86nameCompare (list->vnd_identifier, name) == 0)
253 return (list);
254 list = list->list
[all...]
H A DLayout.c122 iptr->list.next = NULL;
138 aptr->list.next = NULL;
273 iptr->list.next = NULL;
330 for (aptr = ptr->lay_adjacency_lst; aptr; aptr = aptr->list.next)
370 for (iptr = ptr->lay_inactive_lst; iptr; iptr = iptr->list.next)
372 for (inptr = ptr->lay_input_lst; inptr; inptr = inptr->list.next)
375 for (optr = inptr->iref_option_lst; optr; optr = optr->list.next)
383 ptr = ptr->list.next;
399 ptr = ptr->list.next;
418 ptr = ptr->list
526 xf86findLayout(const char *name, XF86ConfLayoutPtr list) argument
[all...]
H A DFlags.c207 * Append a new Option record to the specified Option list if the
208 * option name is not already present in the list. If the option
210 * option. Return a pointer to the head of the list.
217 XF86OptionPtr head, /* Ptr to head of option list */
233 * Note that xf86findOption() accepts NULL as the list head
239 new->list.next = NULL;
270 * Add the new option and return the (new) list head
290 * Return the unchanged list head, having modified an existing option
299 * Append a new Option record to the specified Option list if the
300 * option name is not already present in the list
392 xf86nextOption(XF86OptionPtr list) argument
406 xf86findOption(XF86OptionPtr list, const char *name) argument
494 xf86findOptionValue(XF86OptionPtr list, const char *name) argument
752 xf86printOptionList( FILE *fp, XF86OptionPtr list, const char * const whitespace[]) argument
[all...]
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdps/
H A Ddpsabbrev.c331 void DPSFetchAbbrevList(DPSAbbrevRec **list, int *count) argument
333 *list = abbrev;
/solaris-x11-s11/open-src/lib/libXaw5/sun-src/
H A DAsciiText.c185 Arg list[4]; local
190 XtSetArg (list[ac], XtNfontSet, sink->multi_sink.fontset); ac++;
191 XtSetArg (list[ac], XtNinsertPosition, w->text.insertPos); ac++;
192 XtSetArg (list[ac], XtNforeground, sink->text_sink.foreground); ac++;
193 XtSetArg (list[ac], XtNbackground, sink->text_sink.background); ac++;
194 _XawImSetValues(new, list, ac);
H A DVendor.c240 char **list; local
250 if(XmbTextPropertyToTextList(dpy, &prop, &list, &count) < Success) {
256 len = strlen(*list);
259 strcpy(mbs, *list);
260 XFreeStringList(list);
H A DListP.h32 * This is a List widget. It allows the user to select an item in a list and
82 int nitems; /* number of items in the list. */
85 String * list; /* for i18n, always in multibyte format */ member in struct:__anon369
93 nrows, /* number of rows in the list. */
94 ncols; /* number of columns in the list. */
113 ListPart list; member in struct:_ListRec
H A DList.c31 * This is a List widget. It allows the user to select an item in a list and
52 I also added the freedoms member of the list widget part. */
58 #define HeightFree( w ) !(((ListWidget)(w))->list.freedoms & HeightLock )
59 #define WidthFree( w ) !(((ListWidget)(w))->list.freedoms & WidthLock )
60 #define LongestFree( w ) !(((ListWidget)(w))->list.freedoms & LongestLock )
82 offset(list.foreground), XtRString, XtDefaultForeground},
86 offset(list.font),XtRString, XtDefaultFont},
88 offset(list.fontset),XtRString, XtDefaultFontSet},
90 offset(list.list), XtRStrin
1083 XawListChange(Widget w, char ** list, int nitems, int longest, int resize_it) argument
[all...]
H A DXawIm.c1350 char *s, *save_s, *ss, *list[32], **lp, *end; local
1362 list[i] = s;
1381 memcpy((char *)lp, (char *)list, sizeof(char *) * i);
/solaris-x11-s11/open-src/kernel/drm/src/
H A Ddrm_ioctl.c133 struct list_head *list; local
143 list_for_each(list, &dev->maplist) {
145 r_list = list_entry(list, struct drm_map_list, head);
H A Ddrm_sun_idr.c71 fr_get(struct idr_free_id_range *list, int start) argument
73 struct idr_free_id_range *entry = list;
81 fr_insert(struct idr_free_id_range *list, int start) argument
83 struct idr_free_id_range *prev = list;
406 /* list add */
H A Ddrm_bufs.c93 int drm_map_handle(struct drm_device *dev, struct drm_map_list *list) argument
97 ret = idr_get_new_above(&dev->map_idr, list, 1, &newid);
101 list->user_token = newid << PAGE_SHIFT;
110 * type. Adds the map to the map list drm_device::maplist. Adds MTRR's where
119 struct drm_map_list *list; local
171 list = drm_find_matching_map(dev, map);
172 if (list != NULL) {
173 if (list->map->size != map->size) {
177 list->map->size);
178 list
319 struct drm_map_list *list; local
928 struct drm_freelist *list = &dma->bufs[i].freelist; local
[all...]
H A Ddrm_gem.c792 struct drm_history_list *list; local
793 list = drm_alloc(sizeof (struct drm_history_list), DRM_MEM_MAPS);
794 if (list != NULL) {
795 (void) memcpy(list->info, name, (strlen(name) * sizeof(char)));
796 list->cur_seq = cur_seq;
797 list->last_seq = last_seq;
798 list->ring_ptr = ptr;
799 list_add_tail(&list->head, &obj->his_list, (caddr_t)list);
H A Ddrm_modes.c551 * @index: index into the list of display timings in devicetree
597 * drm_mode_list_concat - move modes from one list to another
598 * @head: source list
599 * @new: dst list
882 * @mode_list: list of modes to check
916 * @mode_list: list of modes to check
924 * Some code may need to check a mode list against the clock limits of the
925 * device in question. This function walks the mode list, testing to make
951 * drm_mode_prune_invalid - remove invalid modes from mode list
953 * @mode_list: list o
1030 struct list_head *list, *temp; local
[all...]
/solaris-x11-s11/open-src/lib/libXaw4/sun-src/
H A DXaw3_1ListP.h30 * This is the List widget, it is useful to display a list, without the
31 * overhead of having a widget for each item in the list. It allows
32 * the user to select an item in a list and notifies the application through
82 int nitems; /* number of items in the list. */
84 String * list; member in struct:__anon305
93 nrows, /* number of rows in the list. */
94 ncols; /* number of columns in the list. */
111 ListPart list; member in struct:_ListRec
H A DXaw3_1TextAction.c191 struct _SelectionList* list = (struct _SelectionList*)client_data; local
192 if (list != NULL) {
193 GetSelection(w, list->time, list->params, list->count);
251 struct _SelectionList* list; local
253 list = XtNew(struct _SelectionList);
254 list->params = params + 1;
255 list->count = num_params;
256 list
[all...]
/solaris-x11-s11/open-src/lib/libXmu/sun-src/src/
H A DCmapEquiv.c57 * Build a list of VisualIds that are equivalant to vidIn
61 * The first entry in each is the number of elements in the list.
62 * The list of ids follows.
86 /* Build the list of VisualIDs equivalent to v */
107 /* terminate the list */
134 VisualID list[INIT_LIST_SIZE]; local
139 * Build a list of VisualIDS which are equivalent to v1
140 * using the array list if it fits.
142 pList = buildList(pPropString, v1, list);
146 /* now see if v2 is in the list */
[all...]
/solaris-x11-s11/open-src/lib/fontconfig/
H A DMakefile89 # Man pages to apply Sun footer to & attributes to list
90 FONTCONFIG_CMDS = fc-cache fc-list fc-query fc-cat fc-match fc-scan
106 SUNTOUCH_MAN_FLAGS_fc-list.1 = $(SUNTOUCH_MAN_FLAGS_CMDS)
/solaris-x11-s11/open-src/kernel/efb/src/
H A Ddrm_io32.h78 uint32_t list; member in struct:drm_buf_free_32
85 int idx; /* Index into the master buffer list */
92 int count; /* Length of the buffer list */
98 uint32_t list; /* Buffer information */ member in struct:drm_buf_map_32
H A Ddrm_sunmod.c140 drm_inst_list_t *list; local
143 list = (drm_inst_list_t *)handle;
144 mstate = &list->disl_state;
762 * Create a DRM entry and add it into the instance list (drm_inst_head).
769 drm_inst_list_t *list; local
772 /* protect the driver list */
775 list = *plist;
776 while (list) {
777 if (list->disl_state.mis_dip == dip) {
783 plist = &list
806 drm_inst_list_t *list; local
840 drm_inst_list_t *list; local
871 drm_inst_list_t *list; local
885 drm_inst_list_t *list; local
[all...]
/solaris-x11-s11/open-src/kernel/sys/drm/
H A Ddrm_io32.h95 uint32_t list; member in struct:drm_buf_free_32
102 int idx; /* Index into the master buffer list */
109 int count; /* Length of the buffer list */
115 uint32_t list; /* Buffer information */ member in struct:drm_buf_map_32
/solaris-x11-s11/open-src/kernel/mdb/modules/
H A Di915.c71 mdb_warn("failed to read list head at %p", wsp->walk_addr);
93 mdb_warn("uncompletement list");
99 mdb_warn("failed to read list at %p", wsp->walk_addr);
333 mdb_printf("Print objects information for a given list pointer\n"
348 struct list_head list; local
354 if (mdb_vread(&list, sizeof (struct list), addr) == -1) {
355 mdb_warn("failed to read list");
359 if (list.contain_ptr == 0) {
366 (uintptr_t)list
1122 struct list_head list; local
[all...]
/solaris-x11-s11/open-src/lib/libowconfig/sun-src/
H A DOWconfig.c85 * A class list is a child of the database.
86 * An instance list is a child of a class.
87 * An attribute list is a child of an instance.
95 struct nodeStruct *head; /* One end of the child list... */
109 * Store comments as a singly linked list...
181 freeNodeList: The generic node list destructor...
330 searchNodeList: Searches next-wise along a list, starting at the node
331 pointed to by "node", until either the end of the list is
1302 It takes a list of attributes and adds them to an instance of a class.
1455 "OWconfigGetClassNames" returns a list o
1523 OWconfigFreeClassNames(char **list) argument
[all...]

Completed in 62 milliseconds

12