Searched defs:name (Results 1 - 25 of 43) sorted by relevance

12

/solaris-x11-s12/open-src/app/gfx-utils/sun-src/fbconf_xorg/fbc/
H A Dfbc_Option.h42 const char *option_name, /* Option name */
48 const char *option_name, /* Option name */
53 const char * const name; /* Option value keyword */ member in struct:__anon19
60 const char *option_name, /* Option name */
68 const char *option_name); /* Boolean Option name */
H A Dfbc_dev.h43 const char *name; /* Simple filename (e.g. "efb0a") */ member in struct:__anon21
44 const char *type; /* Device type name (e.g. "efb") */
66 fbc_dev_t *device); /* Returned device name components */
74 fbc_dev_t *device); /* Returned device name components */
H A Dfbc_propt.c44 * Display a label string, a quoted name string or the alternative
45 * string for a missing name, and a line terminator.
47 * The name string is quoted, as it is in the config file, since it
54 const char * const name, /* Name string, else NULL */
55 const char * const no_name) /* Alternate string for missing name */
58 if (name != NULL) {
59 printf("%s\"%s\"\n", label, name);
78 const char *name; /* Active section, etc. name */ local
79 const char *no_name; /* Alternate string for missing name */
52 fbc_propt_name( const char * const label, const char * const name, const char * const no_name) argument
[all...]
H A Dfbc.h62 #define FBC_DEVICE_SYMLINK_NAME "fb" /* Device symlink name */
74 #define FBC_STREAM_SUFFIX_CHARS "ab" /* Device name stream suffix chars */
113 #define FBC_MAX_MODE_NAME_LEN 256 /* Max mode name length (arbitrary) */
116 const char *name; /* Ptr to video mode name string */ member in struct:__anon18
H A Dsun_edid.h74 char *name, /* Manufacturer ID (3 chars & Nul) */
234 * Start of EDID video mode name list construction functions
238 char *name; /* Video mode name */ member in struct:__anon55
H A Dfbc_xorg.h48 const char *mode_name; /* Video mode name (for -propt) */
81 const char *name; /* Option entry name string */ member in struct:__anon43
96 #define FBC_PSEUDO_PREFIX "#" /* Not a legal Option name character */
186 #define FBC_NO_MODE_NAME NULL /* No video mode name string */
221 fbc_video_mode_t video_mode; /* Video mode (e.g. ModeLine) name */
H A Dsun_edid.c70 #define NAME_BUF_LEN (64) /* Buffer length for WxHxF mode name strings */
240 char *name, /* Manufacturer ID (3 chars & Nul) */
245 name[0] = 'A' - 1 + ((buf[0x08] >> 2) & 0x1F);
246 name[1] = 'A' - 1 + (((buf[0x08] << 3) | (buf[0x09] >> 5)) & 0x1F);
247 name[2] = 'A' - 1 + (buf[0x09] & 0x1F);
248 name[3] = '\0';
483 const char *const name; /* Video mode name */ member in struct:__anon47
907 * includes a dynamically allocated name string (id_string). Return
998 * The name strin
238 sun_edid_vendor( const uint8_t *buf, char *name, uint16_t *product_code, uint32_t *serial_num) argument
[all...]
/solaris-x11-s12/open-src/kernel/sys/drm/
H A Ddrm_sun_workqueue.h42 char *name; member in struct:workqueue_struct
48 extern struct workqueue_struct *create_workqueue(dev_info_t *dip, char *name);
H A Ddrm_sun_i2c.h52 char name[64]; member in struct:i2c_adapter
/solaris-x11-s12/open-src/kernel/drm/src/
H A Ddrm_sun_workqueue.c58 create_workqueue(dev_info_t *dip, char *name) argument
63 wq->taskq = ddi_taskq_create(dip, name, 1, TASKQ_DEFAULTPRI, 0);
66 wq->name = name;
H A Ddrm_sun_idr.c420 uint32_t name)
424 key = name % DRM_GEM_OBJIDR_HASHNODE;
427 if (entry->handle == name)
446 uint32_t name)
450 key = name % DRM_GEM_OBJIDR_HASHNODE;
453 if (entry->handle == name) {
459 DRM_ERROR("Failed to remove the object %d", name);
419 idr_list_find(struct idr_list *head, uint32_t name) argument
445 idr_list_remove(struct idr_list *head, uint32_t name) argument
H A Ddrm_gem.c536 * Create a global name for an object, returning the name.
538 * Note that the name does not hold a reference; when the object
539 * is freed, the name goes away.
563 if (!obj->name) {
565 &obj->name);
566 args->name = (uint64_t) obj->name;
575 /* Allocate a reference for the name table. */
578 args->name
821 drm_gem_object_track(struct drm_gem_object *obj, const char *name, uint32_t cur_seq, uint32_t last_seq, void* ptr) argument
[all...]
/solaris-x11-s12/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/
H A DModule.c23 * Except as contained in this notice, the name of the Metro Link shall not be
49 * Except as contained in this notice, the name of the copyright holder(s)
88 xf86parseModuleSubSection (XF86LoadPtr head, char *name) argument
93 ptr->load_name = name;
227 xf86addNewLoadDirective (XF86LoadPtr head, char *name, int type, XF86OptionPtr opts) argument
233 new->load_name = name;
H A DVendor.c23 * Except as contained in this notice, the name of the Metro Link shall not be
49 * Except as contained in this notice, the name of the copyright holder(s)
248 xf86findVendor (const char *name, XF86ConfVendorPtr list) argument
252 if (xf86nameCompare (list->vnd_identifier, name) == 0)
H A DLayout.c23 * Except as contained in this notice, the name of the Metro Link shall not be
49 * Except as contained in this notice, the name of the copyright holder(s)
526 xf86findLayout (const char *name, XF86ConfLayoutPtr list) argument
530 if (xf86nameCompare (list->lay_identifier, name) == 0)
H A DFlags.c23 * Except as contained in this notice, the name of the Metro Link shall not be
49 * Except as contained in this notice, the name of the copyright holder(s)
143 tmp = xf86configStrdup (ServerFlagsTab[i].name);
208 * option name is not already present in the list. If the option
209 * name is already present, replace the value, etc. of the existing
218 char *name, /* Ptr to new option name string */
236 old = xf86findOption(head, name);
248 new->opt_name = name;
300 * option name i
216 xf86addNewOptionOrValue( XF86OptionPtr head, char *name, char *val, int used) argument
305 xf86addNewOption(XF86OptionPtr head, char *name, char *val) argument
375 xf86newOption(char *name, char *value) argument
406 xf86findOption(XF86OptionPtr list, const char *name) argument
494 xf86findOptionValue(XF86OptionPtr list, const char *name) argument
638 char *name, *comment = NULL; local
[all...]
H A DMonitor.c23 * Except as contained in this notice, the name of the Metro Link shall not be
49 * Except as contained in this notice, the name of the copyright holder(s)
301 Error ("Mode name expected", NULL);
934 char *name; /* Mode flag name string */ member in struct:__anon57
1030 for (i = 0; modeFlagTab[i].name != NULL; i += 1) {
1038 fprintf(cf, "\"%s\"", modeFlagTab[i].name);
1128 /* ModeLine entry name w/ whitespace fields */
1146 for (i = 0; modeFlagTab[i].name != NULL; i += 1) {
1148 fprintf(cf, " %s", modeFlagTab[i].name);
[all...]
/solaris-x11-s12/open-src/kernel/i915/src/
H A Ddvo.h16 * that the name of the copyright holders not be used in advertising or
41 const char *name; member in struct:intel_dvo_device
H A Dintel_i2c.c42 const char *name; member in struct:gmbus_port
461 adapter->name);
485 adapter->name);
498 adapter->name, msgs[i].addr,
505 bus->adapter.name, bus->reg0 & 0xff);
552 snprintf(bus->adapter.name,
553 sizeof(bus->adapter.name),
555 gmbus_ports[i].name);
599 force_bit ? "en" : "dis", adapter->name,
H A Ddvo_ch7xxx.c95 char *name; member in struct:ch7xxx_id_struct
106 char *name; member in struct:ch7xxx_did_struct
122 return ch7xxx_ids[i].name;
134 return ch7xxx_dids[i].name;
173 addr, adapter->name, dvo->slave_addr);
199 addr, adapter->name, dvo->slave_addr);
211 char *name, *devid; local
224 name = ch7xxx_get_id(vendor);
225 if (!name) {
228 vendor, adapter->name, dv
[all...]
/solaris-x11-s12/open-src/app/cmap_alloc/sun-src/
H A Dcmap_alloc.c254 char *name; local
258 name = "StaticGray";
261 name = "GrayScale";
264 name = "StaticColor";
267 name = "PseudoColor";
270 name = "TrueColor";
273 name = "DirectColor";
276 name = "";
279 return name;
/solaris-x11-s12/open-src/app/cmap_compact/sun-src/
H A Dcmcutil.c86 ** If file name is not already absolute, make absolute
205 const char *name,
212 /* intern the property name */
213 Atom atom = XInternAtom(dpy, name, 0);
262 /* intern the property name */
202 prop_update( Display *dpy, Window w, const char *name, Atom type, int format, int data, int nelem) argument
/solaris-x11-s12/open-src/lib/libdga/sun-src/
H A Ddraw_inquiry.c704 char **name)
711 dgai_mbsmemb_rtndevtype((_Dga_window)dgadraw, type, name);
715 /* not applicable to pixmaps -- no dev type and name */
717 *name = NULL;
703 dga_draw_rtndevtype(Dga_drawable dgadraw, u_char *type, char **name) argument
H A Dmbsmemb_inquiry.c480 dgai_mbsmemb_rtndevtype (_Dga_window dgawin, u_char *type, char **name) argument
483 dga_rtn_devtype((Dga_window)dgawin, type, name);
487 *name = NULL;
/solaris-x11-s12/open-src/app/mkcookie/sun-src/
H A Dmkcookie.c37 * documentation, and that the name of M.I.T. not be used in advertising or
67 static void setAuthNumber(Xauth *auth, const char *name);
74 char * name; /* DISPLAY name */ member in struct:display
78 const char *authName; /* authorization protocol name */
146 printf("name: ");
147 dumpBytes(auth->name_length, auth->name);
217 writeLocalAuth(FILE *file, Xauth *auth, const char *name) argument
221 setAuthNumber(auth, name);
314 setAuthNumber(Xauth *auth, const char *name) argument
341 openFiles(const char *name, char *new_name, size_t new_name_size, FILE ** oldp, FILE ** newp) argument
390 GenerateAuthorization(const char *name) argument
545 char *name = NULL; local
[all...]

Completed in 64 milliseconds

12