Lines Matching refs:pNewProp
1965 RootWinPropPtr pNewProp = NULL, pRegProp;
1978 for (pNewProp = xf86RegisteredPropertiesTable[ScrnIndex];
1979 pNewProp; pNewProp = pNewProp->next) {
1980 if (strcmp(pNewProp->name, NameForAtom(property)) == 0)
1985 if (!pNewProp) {
1986 if ((pNewProp = (RootWinPropPtr)malloc(sizeof(RootWinProp))) == NULL) {
1993 pNewProp->next = NULL;
1995 free(pNewProp->name);
1999 pNewProp->name = xnfstrdup(NameForAtom(property));
2000 pNewProp->type = type;
2001 pNewProp->format = format;
2002 pNewProp->size = len;
2003 pNewProp->data = value;
2025 xf86RegisteredPropertiesTable[ScrnIndex] = pNewProp;
2032 pRegProp->next = pNewProp;