Lines Matching defs:pval
39 PropValue *pval;
43 pval = (PropValue *) pv->thing;
44 XtFree ((char *) pval->value);
45 XtFree ((char *) pval);
90 PropValue *pval;
101 pval = (PropValue *) vl->thing;
104 (char *) pval->value);
111 pval = (PropValue *) vl->thing;
113 hint = (int) *((char *) (pval->value));
168 PropValue *pval = (PropValue *) XtMalloc (sizeof (PropValue));
170 pval->length = theProp->vals[i].length;
171 pval->value = (XtPointer) XtMalloc (theProp->vals[i].length + 1);
172 memcpy (pval->value, theProp->vals[i].value, theProp->vals[i].length);
173 ((char *) pval->value)[theProp->vals[i].length] = '\0';
175 ListAddLast (pprop->values, (char *) pval);
341 PropValue *pval;
375 pval = (PropValue *) pj->thing;
377 propValRet->length = pval->length;
378 propValRet->value = (SmPointer) XtMalloc (pval->length);
379 memcpy (propValRet->value, pval->value, pval->length);