![]() |
My Project
|
Go to the source code of this file.
Macros | |
| #define | OM_LIST_OFFSET(ptr, name_of_offset_field) |
| #define | omListLength(ptr) |
| #define | omListLast(ptr) |
| #define | omListHasCycle(ptr) |
| #define | omIsOnList(ptr, addr) |
| #define | omRemoveFromList(ptr, addr) |
| #define | omFindInList(ptr, what, value) |
| #define | omInsertInSortedList(ptr, what, addr) |
| #define | omFindInSortedList(ptr, what, value) |
| #define | omRemoveFromSortedList(ptr, what, addr) |
| #define | omTestList(ptr, level) |
| #define | omCheckList(ptr, level, report, OM_FLR_VAL) |
| #define | omCheckSortedList(ptr, what, level, report, OM_FLR_VAL) |
| #define | omGListLength(ptr, next) |
| #define | omGListLast(ptr, next) |
| #define | omGListHasCycle(ptr, next) |
| #define | omIsOnGList(ptr, next, addr) |
| #define | omRemoveFromGList(ptr, next, addr) |
| #define | omFindInGList(ptr, next, what, value) |
| #define | omInsertInSortedGList(ptr, next, what, addr) |
| #define | omFindInSortedGList(ptr, next, what, value) |
| #define | omRemoveFromSortedGList(ptr, next, what, addr) |
| #define | omTestGList(ptr, next, level) |
| #define | omCheckGList(ptr, next, level, report, OM_FLR_VAL) |
| #define | omCheckSortedGList(ptr, next, what, level, report, OM_FLR_VAL) |
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 OM_LIST_OFFSET | ( | ptr, | |
| name_of_offset_field ) |
Definition at line 115 of file omList.h.
| #define omCheckList | ( | ptr, | |
| level, | |||
| report, | |||
| OM_FLR_VAL ) |
Definition at line 83 of file omList.h.
Definition at line 117 of file omList.h.
| #define omCheckSortedList | ( | ptr, | |
| what, | |||
| level, | |||
| report, | |||
| OM_FLR_VAL ) |
| #define omFindInGList | ( | ptr, | |
| next, | |||
| what, | |||
| value ) |
Definition at line 104 of file omList.h.
| #define omFindInList | ( | ptr, | |
| what, | |||
| value ) |
| #define omFindInSortedGList | ( | ptr, | |
| next, | |||
| what, | |||
| value ) |
Definition at line 108 of file omList.h.
| #define omFindInSortedList | ( | ptr, | |
| what, | |||
| value ) |
Definition at line 76 of file omList.h.
| #define omGListHasCycle | ( | ptr, | |
| next ) |
| #define omGListLast | ( | ptr, | |
| next ) |
| #define omGListLength | ( | ptr, | |
| next ) |
| #define omInsertInSortedGList | ( | ptr, | |
| next, | |||
| what, | |||
| addr ) |
Definition at line 106 of file omList.h.
| #define omInsertInSortedList | ( | ptr, | |
| what, | |||
| addr ) |
Definition at line 74 of file omList.h.
| #define omIsOnGList | ( | ptr, | |
| next, | |||
| addr ) |
| #define omIsOnList | ( | ptr, | |
| addr ) |
Definition at line 68 of file omList.h.
| #define omListHasCycle | ( | ptr | ) |
Definition at line 66 of file omList.h.
| #define omListLast | ( | ptr | ) |
Definition at line 64 of file omList.h.
| #define omListLength | ( | ptr | ) |
Definition at line 62 of file omList.h.
| #define omRemoveFromGList | ( | ptr, | |
| next, | |||
| addr ) |
| #define omRemoveFromList | ( | ptr, | |
| addr ) |
Definition at line 70 of file omList.h.
| #define omRemoveFromSortedGList | ( | ptr, | |
| next, | |||
| what, | |||
| addr ) |
Definition at line 110 of file omList.h.
| #define omRemoveFromSortedList | ( | ptr, | |
| what, | |||
| addr ) |
Definition at line 78 of file omList.h.
| #define omTestList | ( | ptr, | |
| level ) |
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 ) |