#include <asterisk/lock.h>
Go to the source code of this file.
Defines | |
#define | AST_LIST_LOCK(head) ast_mutex_lock(&head->lock) |
#define | AST_LIST_UNLOCK(head) ast_mutex_unlock(&head->lock) |
#define | AST_LIST_HEAD(name, type) |
#define | AST_LIST_HEAD_SET(head, entry) |
#define | AST_LIST_ENTRY(type) |
#define | AST_LIST_FIRST(head) ((head)->first) |
#define | AST_LIST_NEXT(elm, field) ((elm)->field.next) |
#define | AST_LIST_EMPTY(head) (AST_LIST_FIRST(head) == NULL) |
#define | AST_LIST_TRAVERSE(head, var, field) for((var) = (head)->first; (var); (var) = (var)->field.next) |
#define | AST_LIST_HEAD_INIT(head) |
#define | AST_LIST_INSERT_AFTER(listelm, elm, field) |
#define | AST_LIST_INSERT_HEAD(head, elm, field) |
#define | AST_LIST_INSERT_TAIL(head, elm, type, field) |
#define | AST_LIST_REMOVE_HEAD(head, field) |
#define | AST_LIST_REMOVE(head, elm, type, field) |
|
Definition at line 32 of file linkedlists.h. Referenced by ast_channel_free(), and pbx_builtin_clear_globals(). |
|
Value: Definition at line 23 of file linkedlists.h. |
|
Definition at line 28 of file linkedlists.h. Referenced by ast_channel_free(), and pbx_builtin_clear_globals(). |
|
Value: Definition at line 12 of file linkedlists.h. |
|
Value: Definition at line 37 of file linkedlists.h. Referenced by ast_channel_alloc(), and load_pbx(). |
|
Value: Definition at line 18 of file linkedlists.h. |
|
Value: Definition at line 42 of file linkedlists.h. |
|
Value: Definition at line 47 of file linkedlists.h. Referenced by ast_channel_alloc(), and pbx_builtin_setvar_helper(). |
|
Definition at line 52 of file linkedlists.h. |
|
Definition at line 6 of file linkedlists.h. |
|
Definition at line 30 of file linkedlists.h. |
|
Definition at line 69 of file linkedlists.h. Referenced by pbx_builtin_setvar_helper(). |
|
Value: Definition at line 65 of file linkedlists.h. Referenced by ast_channel_free(), and pbx_builtin_clear_globals(). |
|
Definition at line 34 of file linkedlists.h. Referenced by pbx_builtin_getvar_helper(), and pbx_builtin_setvar_helper(). |
|
Definition at line 9 of file linkedlists.h. |