Home | History | Annotate | Download | only in inc

Lines Matching refs:IN

5  *  you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
84 * An empty list is indicated by the "next" pointer in the element
120 extern VOID LST_Delete(IN struct LST_LIST* pList);
150 extern struct LST_ELEM* LST_First(IN struct LST_LIST* pList);
170 * NULL No elements in list
181 extern struct LST_ELEM* LST_GetHead(IN struct LST_LIST* pList);
208 * This function must not be called to "reset" an element in the middle
212 extern VOID LST_InitElem(IN struct LST_ELEM* pListElem);
220 * pElem: Pointer to element in list to insert.
230 extern VOID LST_InsertBefore(IN struct LST_LIST* pList,
231 IN struct LST_ELEM* pElem,
232 IN struct LST_ELEM* pElemExisting);
241 * pCurElem: Pointer to element in list to remove.
250 extern struct LST_ELEM* LST_Next(IN struct LST_LIST* pList,
251 IN struct LST_ELEM* pCurElem);
284 extern VOID LST_PutTail(IN struct LST_LIST* pList,
285 IN struct LST_ELEM* pListElem);
294 * pCurElem: Pointer to element in list to remove.
302 extern VOID LST_RemoveElem(IN struct LST_LIST* pList,
303 IN struct LST_ELEM* pCurElem);