Searched defs:elemInList (Results 1 - 1 of 1) sorted by relevance

/external/mdnsresponder/mDNSShared/
H A DGenLinkedList.c95 int ReplaceElem( GenLinkedList *pList, void *elemInList, void *newElem) argument
100 if ( elemInList == NULL || newElem == NULL)
105 if ( iElem == elemInList)
107 ASSIGNLINK( newElem, GETLINK( elemInList, pList->LinkOffset), pList->LinkOffset);
116 if ( pList->Tail == elemInList)
287 int OffsetReplaceElem( GenLinkedOffsetList *pList, void *elemInList, void *newElem) argument
292 if ( elemInList == NULL || newElem == NULL)
298 if ( iElem == elemInList)
300 AssignOffsetLink( newElem, GetOffsetLink( pList, elemInList), pList->LinkOffset);
309 if ( GetTailPtr( pList) == elemInList)
[all...]

Completed in 104 milliseconds