![]() |
My Project
|
Go to the source code of this file.
Macros | |
| #define | NULL ((void*) 0) |
| #define | _VALUE(list, offset) |
| #define | VALUE(list, offset) |
| #define | NEXT(list) |
| #define | ITER(list) |
Functions | |
| int | _omListLength (void *list, int next) |
| void * | _omListLast (void *list, int next) |
| void * | _omListHasCycle (void *list, int next) |
| void * | _omIsOnList (void *list, int next, void *addr) |
| void * | _omRemoveFromList (void *list, int next, void *addr) |
| void * | _omFindInList (void *list, int next, int long_field, unsigned long what) |
| void * | _omFindInSortedList (void *list, int next, int long_field, unsigned long what) |
| void * | _omRemoveFromSortedList (void *list, int next, int long_field, void *addr) |
| void * | _omInsertInSortedList (void *list, int next, int long_field, void *addr) |
| omError_t | _omCheckList (void *list, int next, int level, omError_t report, OM_FLR_DECL) |
| omError_t | _omCheckSortedList (void *list, int next, int long_field, int level, omError_t report, OM_FLR_DECL) |
| #define _VALUE | ( | list, | |
| offset ) |
| #define ITER | ( | list | ) |
| #define NEXT | ( | list | ) |
| #define VALUE | ( | list, | |
| offset ) |
Definition at line 178 of file omList.c.
| omError_t _omCheckSortedList | ( | void * | list, |
| int | next, | ||
| int | long_field, | ||
| int | level, | ||
| omError_t | report, | ||
| OM_FLR_DECL | ) |
| void * _omFindInList | ( | void * | list, |
| int | next, | ||
| int | long_field, | ||
| unsigned long | what ) |
| void * _omFindInSortedList | ( | void * | list, |
| int | next, | ||
| int | long_field, | ||
| unsigned long | what ) |
| void * _omInsertInSortedList | ( | void * | list, |
| int | next, | ||
| int | long_field, | ||
| void * | addr ) |
| void * _omIsOnList | ( | void * | list, |
| int | next, | ||
| void * | addr ) |
| void * _omListHasCycle | ( | void * | list, |
| int | next ) |
| void * _omListLast | ( | void * | list, |
| int | next ) |
| int _omListLength | ( | void * | list, |
| int | next ) |
| void * _omRemoveFromList | ( | void * | list, |
| int | next, | ||
| void * | addr ) |
| void * _omRemoveFromSortedList | ( | void * | list, |
| int | next, | ||
| int | long_field, | ||
| void * | addr ) |