Lines Matching refs:NULL

95  * Returns the link containing the data or NULL
102 if (l == NULL)
103 return(NULL);
115 * Returns the link containing the data or NULL
122 if (l == NULL)
123 return(NULL);
135 * Returns the link containing the data or NULL
141 if (l == NULL)
142 return(NULL);
145 return NULL;
149 return NULL;
160 * Returns the link containing the data or NULL
166 if (l == NULL)
167 return(NULL);
170 return NULL;
174 return NULL;
185 * Returns the new list or NULL in case of error
191 if (NULL == (l = (xmlListPtr )xmlMalloc( sizeof(xmlList)))) {
194 return (NULL);
196 /* Initialize the list to NULL */
200 if (NULL ==(l->sentinel = (xmlLinkPtr )xmlMalloc(sizeof(xmlLink)))) {
204 return (NULL);
208 l->sentinel->data = NULL;
211 if (deallocator != NULL)
214 if (compare != NULL)
228 * Returns the value associated to @data or NULL in case of error
234 if (l == NULL)
235 return(NULL);
239 return NULL;
249 * Returns the value associated to @data or NULL in case of error
255 if (l == NULL)
256 return(NULL);
260 return NULL;
277 if (l == NULL)
282 if (lkNew == NULL) {
309 if (l == NULL)
314 if (lkNew == NULL) {
335 if (l == NULL)
357 if (l == NULL)
361 if (lk != NULL) {
382 if (l == NULL)
386 if (lk != NULL) {
407 if (l == NULL)
426 if (l == NULL)
448 if (l == NULL)
459 * Returns the first element in the list, or NULL
464 if (l == NULL)
465 return(NULL);
475 * Returns the last element in the list, or NULL
480 if (l == NULL)
481 return(NULL);
499 if (l == NULL)
546 if (l == NULL)
551 if (lkNew == NULL) {
578 if (l == NULL)
582 if (NULL ==(lkNew = (xmlLinkPtr )xmlMalloc(sizeof(xmlLink)))) {
606 if (lk == NULL)
607 return(NULL);
623 if (l == NULL)
647 if (l == NULL)
658 if (NULL ==(lTemp = xmlListDup(l)))
679 if ((l == NULL) || (walker == NULL))
700 if ((l == NULL) || (walker == NULL))
729 * Returns a new copy of the list or NULL in case of error
736 if (old == NULL)
737 return(NULL);
744 if (NULL ==(cur = xmlListCreate(NULL, old->linkCompare)))
745 return (NULL);
747 return NULL;
766 if ((old == NULL) || (cur == NULL))