|
| LALListItem * | XLALListItemAlloc (size_t size) |
| |
| LALListItem * | XLALListItemRealloc (LALListItem *item, size_t size) |
| |
| LALListItem * | XLALListItemSet (LALListItem *item, const void *data, size_t size, LALTYPECODE type) |
| |
| LALListItem * | XLALListItemSetValue (LALListItem *item, const LALValue *value) |
| |
| LALListItem * | XLALListItemDuplicate (const LALListItem *item) |
| |
| const LALValue * | XLALListItemGetValue (const LALListItem *item) |
| |
| LALTYPECODE | XLALListItemGetValueType (const LALListItem *item) |
| |
| void * | XLALListItemGetValueData (void *data, size_t size, LALTYPECODE type, const LALListItem *item) |
| |
| void * | XLALListItemGetBLOBValue (const LALListItem *item) |
| |
| const char * | XLALListItemGetStringValue (const LALListItem *item) |
| |
| CHAR | XLALListItemGetCHARValue (const LALListItem *item) |
| |
| INT2 | XLALListItemGetINT2Value (const LALListItem *item) |
| |
| INT4 | XLALListItemGetINT4Value (const LALListItem *item) |
| |
| INT8 | XLALListItemGetINT8Value (const LALListItem *item) |
| |
| UCHAR | XLALListItemGetUCHARValue (const LALListItem *item) |
| |
| UINT2 | XLALListItemGetUINT2Value (const LALListItem *item) |
| |
| UINT4 | XLALListItemGetUINT4Value (const LALListItem *item) |
| |
| UINT8 | XLALListItemGetUINT8Value (const LALListItem *item) |
| |
| REAL4 | XLALListItemGetREAL4Value (const LALListItem *item) |
| |
| REAL8 | XLALListItemGetREAL8Value (const LALListItem *item) |
| |
| COMPLEX8 | XLALListItemGetCOMPLEX8Value (const LALListItem *item) |
| |
| COMPLEX16 | XLALListItemGetCOMPLEX16Value (const LALListItem *item) |
| |
| REAL8 | XLALListItemGetValueAsREAL8 (const LALListItem *item) |
| |
| void | XLALDestroyList (LALList *list) |
| |
| LALList * | XLALCreateList (void) |
| |
| LALList * | XLALListDuplicate (const LALList *list) |
| |
| int | XLALListReverse (LALList *list) |
| |
| int | XLALListSort (LALList *list, int(*cmp)(const LALValue *, const LALValue *, void *), void *thunk) |
| |
| size_t | XLALListSize (const LALList *list) |
| |
| void | XLALListForeach (LALList *list, void(*func)(LALValue *, void *), void *thunk) |
| |
| LALListItem * | XLALListPop (LALList *list) |
| |
| LALListItem * | XLALListLast (LALList *list) |
| |
| LALListItem * | XLALListFind (LALList *list, int(*func)(const LALValue *, void *), void *thunk) |
| |
| LALListItem * | XLALListFindValue (LALList *list, const LALValue *value) |
| |
| int | XLALListReplace (LALList *list, int(*func)(const LALValue *, void *), void *thunk, const LALValue *replace) |
| |
| int | XLALListReplaceAll (LALList *list, int(*func)(const LALValue *, void *), void *thunk, const LALValue *replace) |
| |
| int | XLALListReplaceValue (LALList *list, const LALValue *value, const LALValue *replace) |
| |
| int | XLALListReplaceValueAll (LALList *list, const LALValue *value, const LALValue *replace) |
| |
| int | XLALListRemove (LALList *list, int(*func)(const LALValue *, void *), void *thunk) |
| |
| int | XLALListRemoveAll (LALList *list, int(*func)(const LALValue *, void *), void *thunk) |
| |
| int | XLALListRemoveValue (LALList *list, const LALValue *value) |
| |
| int | XLALListRemoveValueAll (LALList *list, const LALValue *value) |
| |
| void | XLALListIterInit (LALListIter *iter, LALList *list) |
| |
| LALListItem * | XLALListIterNext (LALListIter *iter) |
| |
| int | XLALListAdd (LALList *list, const void *data, size_t size, LALTYPECODE type) |
| |
| int | XLALListAddValue (LALList *list, const LALValue *value) |
| |
| int | XLALListAddBLOBValue (LALList *list, const void *blob, size_t size) |
| |
| int | XLALListAddStringValue (LALList *list, const char *string) |
| |
| int | XLALListAddCHARValue (LALList *list, CHAR value) |
| |
| int | XLALListAddINT2Value (LALList *list, INT2 value) |
| |
| int | XLALListAddINT4Value (LALList *list, INT4 value) |
| |
| int | XLALListAddINT8Value (LALList *list, INT8 value) |
| |
| int | XLALListAddUCHARValue (LALList *list, UCHAR value) |
| |
| int | XLALListAddUINT2Value (LALList *list, UINT2 value) |
| |
| int | XLALListAddUINT4Value (LALList *list, UINT4 value) |
| |
| int | XLALListAddUINT8Value (LALList *list, UINT8 value) |
| |
| int | XLALListAddREAL4Value (LALList *list, REAL4 value) |
| |
| int | XLALListAddREAL8Value (LALList *list, REAL8 value) |
| |
| int | XLALListAddCOMPLEX8Value (LALList *list, COMPLEX8 value) |
| |
| int | XLALListAddCOMPLEX16Value (LALList *list, COMPLEX16 value) |
| |
| char * | XLALListAsStringAppend (char *s, const LALList *list) |
| |
| void | XLALListPrint (const LALList *list, int fd) |
| |