Searched refs:prop (Results 1 - 25 of 268) sorted by relevance

1234567891011

/xsrc/external/mit/xorg-server.old/dist/hw/xwin/
H A Dwinmultiwindowclass.c51 struct _Property *prop; variable in typeref:struct:_Property *
64 prop = (struct _Property *) pwin->optional->userProps;
66 prop = NULL;
70 while (prop)
72 if (prop->propertyName == XA_WM_CLASS
73 && prop->type == XA_STRING
74 && prop->format == 8
75 && prop->data)
77 len_name = strlen ((char *) prop->data);
88 strncpy ((*res_name), prop
122 struct _Property *prop; local in function:winMultiWindowGetWMHints
159 struct _Property *prop; local in function:winMultiWindowGetWindowRole
207 struct _Property *prop; local in function:winMultiWindowGetWMNormalHints
243 struct _Property *prop; local in function:winMultiWindowGetTransientFor
280 struct _Property *prop; local in function:winMultiWindowGetWMName
[all...]
/xsrc/external/mit/libX11/dist/src/
H A DGetFProp.c41 register XFontProp *prop = fs->properties; local in function:XGetFontProperty
42 register XFontProp *last = prop + fs->n_properties;
44 while (prop != last) {
45 if (prop->name == name) {
46 *valuePtr = prop->card32;
49 prop++;
H A DGetNrmHint.c70 xPropSizeHints *prop = NULL; local in function:XGetWMSizeHints
80 (unsigned char **)&prop)
86 Xfree (prop);
90 hints->flags = prop->flags;
92 hints->x = cvtINT32toInt (prop->x);
93 hints->y = cvtINT32toInt (prop->y);
94 hints->width = cvtINT32toInt (prop->width);
95 hints->height = cvtINT32toInt (prop->height);
96 hints->min_width = cvtINT32toInt (prop->minWidth);
97 hints->min_height = cvtINT32toInt (prop
[all...]
H A DSetWMCMapW.c66 Atom prop; local in function:XSetWMColormapWindows
68 prop = XInternAtom (dpy, "WM_COLORMAP_WINDOWS", False);
69 if (prop == None) return False;
71 XChangeProperty (dpy, w, prop, XA_WINDOW, 32,
H A DSetWMProto.c66 Atom prop; local in function:XSetWMProtocols
68 prop = XInternAtom (dpy, "WM_PROTOCOLS", False);
69 if (prop == None) return False;
71 XChangeProperty (dpy, w, prop, XA_ATOM, 32,
H A DGetRGBCMap.c47 xPropStandardColormap *data = NULL; /* data read in from prop */
48 Atom actual_type; /* how the prop was actually stored */
54 VisualID def_visual = None; /* visual to use if prop too short */
115 register xPropStandardColormap *prop; local in function:XGetRGBColormaps
117 for (i = ncmaps, map = cmaps, prop = data; i > 0; i--, map++, prop++) {
118 map->colormap = prop->colormap;
119 map->red_max = prop->red_max;
120 map->red_mult = prop->red_mult;
121 map->green_max = prop
[all...]
H A DSetHints.c69 xPropSizeHints prop; local in function:XSetSizeHints
70 memset(&prop, 0, sizeof(prop));
71 prop.flags = (hints->flags & (USPosition|USSize|PAllHints));
73 prop.x = hints->x;
74 prop.y = hints->y;
77 prop.width = hints->width;
78 prop.height = hints->height;
81 prop.minWidth = hints->min_width;
82 prop
114 xPropWMHints prop; local in function:XSetWMHints
185 xPropIconSize *pp, *prop; local in function:XSetIconSizes
[all...]
H A DGetHints.c65 xPropSizeHints *prop = NULL; local in function:XGetSizeHints
73 &nitems, &leftover, (unsigned char **)&prop)
78 Xfree (prop);
81 hints->flags = (prop->flags & (USPosition|USSize|PAllHints));
82 hints->x = cvtINT32toInt (prop->x);
83 hints->y = cvtINT32toInt (prop->y);
84 hints->width = cvtINT32toInt (prop->width);
85 hints->height = cvtINT32toInt (prop->height);
86 hints->min_width = cvtINT32toInt (prop->minWidth);
87 hints->min_height = cvtINT32toInt (prop
110 xPropWMHints *prop = NULL; local in function:XGetWMHints
179 xPropIconSize *prop = NULL; local in function:XGetIconSizes
[all...]
H A DGetWMCMapW.c64 Atom prop; local in function:XGetWMColormapWindows
68 prop = XInternAtom(dpy, "WM_COLORMAP_WINDOWS", False);
69 if (prop == None) return False;
72 if (XGetWindowProperty (dpy, w, prop,
H A DGetWMProto.c64 Atom prop; local in function:XGetWMProtocols
68 prop = XInternAtom(dpy, "WM_PROTOCOLS", False);
69 if (prop == None) return False;
72 if (XGetWindowProperty (dpy, w, prop,
H A DIconify.c70 Atom prop; local in function:XIconifyWindow
72 prop = XInternAtom (dpy, "WM_CHANGE_STATE", False);
73 if (prop == None)
79 .message_type = prop,
/xsrc/external/mit/xorg-server/dist/hw/xwin/
H A Dwinmultiwindowclass.c50 struct _Property *prop; variable in typeref:struct:_Property *
62 prop = (struct _Property *) pwin->optional->userProps;
64 prop = NULL;
68 while (prop) {
69 if (prop->propertyName == XA_WM_CLASS
70 && prop->type == XA_STRING && prop->format == 8 && prop->data) {
75 len_name = strlen((char *) prop->data);
76 if (len_name > prop
120 struct _Property *prop; local in function:winMultiWindowGetWMHints
152 struct _Property *prop; local in function:winMultiWindowGetWindowRole
194 struct _Property *prop; local in function:winMultiWindowGetWMNormalHints
226 struct _Property *prop; local in function:winMultiWindowGetTransientFor
260 struct _Property *prop; local in function:winMultiWindowGetWMName
[all...]
/xsrc/external/mit/libSM/dist/src/
H A Dsm_misc.c43 SmFreeProperty(SmProp *prop) argument
45 if (prop)
49 if (prop->name)
50 free (prop->name);
51 if (prop->type)
52 free (prop->type);
53 if (prop->vals)
55 for (i = 0; i < prop->num_vals; i++)
56 if (prop->vals[i].value)
57 free (prop
[all...]
/xsrc/external/mit/xorg-server/dist/randr/
H A Drrproviderproperty.c57 RRDestroyProviderProperty(RRPropertyPtr prop) argument
59 free(prop->valid_values);
60 free(prop->current.data);
61 free(prop->pending.data);
62 free(prop);
66 RRDeleteProperty(RRProviderRec * provider, RRPropertyRec * prop) argument
73 .atom = prop->propertyName,
79 RRDestroyProviderProperty(prop);
85 RRPropertyPtr prop, next; local in function:RRDeleteAllProviderProperties
87 for (prop
105 RRPropertyPtr prop; local in function:RRCreateProviderProperty
125 RRPropertyRec *prop, **prev; local in function:RRDeleteProviderProperty
140 RRPropertyPtr prop; local in function:RRChangeProviderProperty
298 RRPropertyPtr prop; local in function:RRQueryProviderProperty
309 RRPropertyPtr prop = RRQueryProviderProperty(provider, property); local in function:RRGetProviderProperty
332 RRPropertyPtr prop = RRQueryProviderProperty(provider, property); local in function:RRConfigureProviderProperty
395 RRPropertyPtr prop; local in function:ProcRRListProviderProperties
437 RRPropertyPtr prop; local in function:ProcRRQueryProviderProperty
551 RRPropertyPtr prop; local in function:ProcRRDeleteProviderProperty
581 RRPropertyPtr prop, *prev; local in function:ProcRRGetProviderProperty
[all...]
H A Drrproperty.c58 RRDestroyOutputProperty(RRPropertyPtr prop) argument
60 free(prop->valid_values);
61 free(prop->current.data);
62 free(prop->pending.data);
63 free(prop);
67 RRDeleteProperty(RROutputRec * output, RRPropertyRec * prop) argument
74 .atom = prop->propertyName,
80 RRDestroyOutputProperty(prop);
86 RRPropertyPtr prop, next; local in function:RRDeleteAllOutputProperties
88 for (prop
106 RRPropertyPtr prop; local in function:RRCreateOutputProperty
126 RRPropertyRec *prop, **prev; local in function:RRDeleteOutputProperty
164 RRPropertyPtr prop; local in function:RRChangeOutputProperty
322 RRPropertyPtr prop; local in function:RRQueryOutputProperty
333 RRPropertyPtr prop = RRQueryOutputProperty(output, property); local in function:RRGetOutputProperty
356 RRPropertyPtr prop = RRQueryOutputProperty(output, property); local in function:RRConfigureOutputProperty
419 RRPropertyPtr prop; local in function:ProcRRListOutputProperties
463 RRPropertyPtr prop; local in function:ProcRRQueryOutputProperty
582 RRPropertyPtr prop; local in function:ProcRRDeleteOutputProperty
615 RRPropertyPtr prop, *prev; local in function:ProcRRGetOutputProperty
[all...]
/xsrc/external/mit/fonttosfnt/dist/
H A Dutil.c226 BDF_PropertyRec prop; local in function:faceFoundry
228 rc = FT_Get_BDF_Property(face, "FOUNDRY", &prop);
229 if(rc == 0 && prop.type == BDF_PROPERTY_TYPE_ATOM && prop.u.atom) {
230 if(strcasecmp(prop.u.atom, "adobe") == 0)
232 else if(strcasecmp(prop.u.atom, "agfa") == 0)
234 else if(strcasecmp(prop.u.atom, "altsys") == 0)
236 else if(strcasecmp(prop.u.atom, "apple") == 0)
238 else if(strcasecmp(prop.u.atom, "arphic") == 0)
240 else if(strcasecmp(prop
283 BDF_PropertyRec prop; local in function:faceWeight
312 BDF_PropertyRec prop; local in function:faceWidth
343 BDF_PropertyRec prop; local in function:faceItalicAngle
365 BDF_PropertyRec prop; local in function:faceFlags
383 BDF_PropertyRec prop; local in function:faceIntProp
396 BDF_PropertyRec prop; local in function:faceStringProp
[all...]
/xsrc/external/mit/freetype/dist/src/pcf/
H A Dpcfread.h37 const FT_String* prop );
/xsrc/external/mit/ctwm/dist/
H A Dmwmhints.c32 unsigned long *prop = NULL; local in function:GetMWMHints
52 (unsigned char **)&prop); /* unsigned char ** */
58 mwmHints->flags = (int)prop[0];
59 mwmHints->functions = (int)prop[1];
60 mwmHints->decorations = (int)prop[2];
62 mwmHints->input_mode = (int)prop[3];
63 mwmHints->status = (int)prop[4];
83 if(prop != NULL) {
84 XFree(prop);
/xsrc/external/mit/libdrm/dist/tests/proptest/
H A Dproptest.c80 drmModePropertyPtr prop; local in function:dump_prop
82 prop = drmModeGetProperty(fd, prop_id);
85 if (!prop) {
90 printf(" %s:\n", prop->name);
93 if (prop->flags & DRM_MODE_PROP_PENDING)
95 if (prop->flags & DRM_MODE_PROP_IMMUTABLE)
97 if (drm_property_type_is(prop, DRM_MODE_PROP_SIGNED_RANGE))
99 if (drm_property_type_is(prop, DRM_MODE_PROP_RANGE))
101 if (drm_property_type_is(prop, DRM_MODE_PROP_ENUM))
103 if (drm_property_type_is(prop, DRM_MODE_PROP_BITMAS
[all...]
/xsrc/external/mit/xf86-input-synaptics/dist/src/
H A Dproperties.c364 SetProperty(DeviceIntPtr dev, Atom property, XIPropertyValuePtr prop, argument
382 if (prop->size != 4 || prop->format != 32 || prop->type != XA_INTEGER)
385 edges = (INT32 *) prop->data;
398 if (prop->size != 3 || prop->format != 32 || prop->type != XA_INTEGER)
401 finger = (INT32 *) prop->data;
409 if (prop
[all...]
/xsrc/external/mit/xorg-server.old/dist/randr/
H A Drrproperty.c57 RRDestroyOutputProperty (RRPropertyPtr prop) argument
59 free(prop->valid_values);
60 free(prop->current.data);
61 free(prop->pending.data);
62 free(prop);
66 RRDeleteProperty(RROutputRec *output, RRPropertyRec *prop) argument
73 event.atom = prop->propertyName;
78 RRDestroyOutputProperty(prop);
84 RRPropertyPtr prop, next; local in function:RRDeleteAllOutputProperties
86 for (prop
104 RRPropertyPtr prop; local in function:RRCreateOutputProperty
124 RRPropertyRec *prop, **prev; local in function:RRDeleteOutputProperty
139 RRPropertyPtr prop; local in function:RRChangeOutputProperty
302 RRPropertyPtr prop; local in function:RRQueryOutputProperty
313 RRPropertyPtr prop = RRQueryOutputProperty (output, property); local in function:RRGetOutputProperty
336 RRPropertyPtr prop = RRQueryOutputProperty (output, property); local in function:RRConfigureOutputProperty
394 RRPropertyPtr prop; local in function:ProcRRListOutputProperties
437 RRPropertyPtr prop; local in function:ProcRRQueryOutputProperty
575 RRPropertyPtr prop, *prev; local in function:ProcRRGetOutputProperty
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/xfree86/os-support/bus/
H A DnetbsdSbus.c111 promGetProperty(const char *prop, int *lenp) argument
115 ofio.of_name = (char *)prop;
116 ofio.of_namelen = strlen(prop);
132 promGetBool(const char *prop) argument
135 ofio.of_name = (char *)prop;
136 ofio.of_namelen = strlen(prop);
220 sparcPromGetProperty(sbusPromNodePtr pnode, const char *prop, int *lenp) argument
225 return promGetProperty(prop, lenp);
229 sparcPromGetBool(sbusPromNodePtr pnode, const char *prop) argument
234 return promGetBool(prop);
242 char *prop; local in function:promWalkAssignNodes
389 char *prop; local in function:promGetReg
430 char *prop, *p; local in function:promWalkNode2Pathname
477 char *prop, *p; local in function:promWalkPathname2Node
564 char *prop; local in function:promWalkGetDriverName
[all...]
H A DSbus.c101 promGetProperty(const char *prop, int *lenp) argument
105 strcpy(promOpio->oprom_array, prop);
113 promGetBool(const char *prop) argument
124 if (!strcmp(promOpio->oprom_array, prop))
226 sparcPromGetProperty(sbusPromNodePtr pnode, const char *prop, int *lenp) argument
230 return promGetProperty(prop, lenp);
234 sparcPromGetBool(sbusPromNodePtr pnode, const char *prop) argument
238 return promGetBool(prop);
246 char *prop; local in function:promWalkGetDriverName
249 prop
300 char *prop; local in function:promWalkAssignNodes
440 char *prop; local in function:promGetReg
481 char *prop, *p; local in function:promWalkNode2Pathname
528 char *prop, *p; local in function:promWalkPathname2Node
[all...]
/xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/bus/
H A DnetbsdSbus.c111 promGetProperty(const char *prop, int *lenp) argument
115 ofio.of_name = (char *)prop;
116 ofio.of_namelen = strlen(prop);
132 promGetBool(const char *prop) argument
135 ofio.of_name = (char *)prop;
136 ofio.of_namelen = strlen(prop);
220 sparcPromGetProperty(sbusPromNodePtr pnode, const char *prop, int *lenp) argument
225 return promGetProperty(prop, lenp);
229 sparcPromGetBool(sbusPromNodePtr pnode, const char *prop) argument
234 return promGetBool(prop);
242 char *prop; local in function:promWalkAssignNodes
389 char *prop; local in function:promGetReg
430 char *prop, *p; local in function:promWalkNode2Pathname
477 char *prop, *p; local in function:promWalkPathname2Node
564 char *prop; local in function:promWalkGetDriverName
[all...]
H A DSbus.c106 promGetProperty(const char *prop, int *lenp) argument
110 strcpy(promOpio->oprom_array, prop);
119 promGetBool(const char *prop) argument
130 if (!strcmp(promOpio->oprom_array, prop))
233 sparcPromGetProperty(sbusPromNodePtr pnode, const char *prop, int *lenp) argument
237 return promGetProperty(prop, lenp);
241 sparcPromGetBool(sbusPromNodePtr pnode, const char *prop) argument
245 return promGetBool(prop);
253 char *prop; local in function:promWalkGetDriverName
256 prop
310 char *prop; local in function:promWalkAssignNodes
458 char *prop; local in function:promGetReg
505 char *prop, *p; local in function:promWalkNode2Pathname
556 char *prop, *p; local in function:promWalkPathname2Node
[all...]

Completed in 13 milliseconds

1234567891011