|
xbt_fifo_t | xbt_fifo_new (void) |
| Constructor. More...
|
|
void | xbt_fifo_free (xbt_fifo_t) |
| Destructor. More...
|
|
void | xbt_fifo_reset (xbt_fifo_t) |
| Makes a fifo empty. More...
|
|
xbt_fifo_item_t | xbt_fifo_push (xbt_fifo_t, void *) |
| Push. More...
|
|
void * | xbt_fifo_pop (xbt_fifo_t) |
| Pop. More...
|
|
xbt_fifo_item_t | xbt_fifo_unshift (xbt_fifo_t, void *) |
|
void * | xbt_fifo_shift (xbt_fifo_t) |
| Shift. More...
|
|
int | xbt_fifo_size (xbt_fifo_t) |
|
int | xbt_fifo_is_in (xbt_fifo_t, void *) |
|
xbt_fifo_item_t | xbt_fifo_search_item (xbt_fifo_t f, int_f_pvoid_pvoid_t cmp_fun, void *closure) |
| Search the given element in the fifo using a comparison function. More...
|
|
xbt_fifo_item_t | xbt_fifo_new_item (void) |
| Constructor. More...
|
|
void | xbt_fifo_set_item_content (xbt_fifo_item_t, void *) |
|
void * | xbt_fifo_get_item_content (xbt_fifo_item_t) |
|
void | xbt_fifo_free_item (xbt_fifo_item_t) |
| Destructor. More...
|
|
void | xbt_fifo_push_item (xbt_fifo_t, xbt_fifo_item_t) |
| Push a bucket. More...
|
|
xbt_fifo_item_t | xbt_fifo_pop_item (xbt_fifo_t) |
| Pop bucket. More...
|
|
void | xbt_fifo_unshift_item (xbt_fifo_t, xbt_fifo_item_t) |
| Push a bucket. More...
|
|
xbt_fifo_item_t | xbt_fifo_shift_item (xbt_fifo_t) |
| Shift bucket. More...
|
|
int | xbt_fifo_remove (xbt_fifo_t, void *) |
|
int | xbt_fifo_remove_all (xbt_fifo_t, void *) |
|
void | xbt_fifo_remove_item (xbt_fifo_t, xbt_fifo_item_t) |
|
xbt_fifo_item_t | xbt_fifo_get_first_item (xbt_fifo_t l) |
|
xbt_fifo_item_t | xbt_fifo_get_last_item (xbt_fifo_t l) |
|
xbt_fifo_item_t | xbt_fifo_get_next_item (xbt_fifo_item_t i) |
|
xbt_fifo_item_t | xbt_fifo_get_prev_item (xbt_fifo_item_t i) |
|
void ** | xbt_fifo_to_array (xbt_fifo_t) |
|
xbt_fifo_t | xbt_fifo_copy (xbt_fifo_t) |
|
xbt_fifo_item_t | xbt_fifo_newitem (void) |
|
void | xbt_fifo_freeitem (xbt_fifo_item_t) |
| Destructor. More...
|
|
xbt_fifo_item_t | xbt_fifo_getFirstItem (xbt_fifo_t l) |
|
xbt_fifo_item_t | xbt_fifo_getNextItem (xbt_fifo_item_t i) |
|
xbt_fifo_item_t | xbt_fifo_getPrevItem (xbt_fifo_item_t i) |
|