Kannel: Open Source WAP and SMS gateway
svn-r5336
|
Go to the source code of this file.
Typedefs | |
typedef struct WsHashRec * | WsHashPtr |
typedef void(* | WsHashItemDestructor) (void *item, void *context) |
Functions | |
WsHashPtr | ws_hash_create (WsHashItemDestructor destructor, void *contex) |
void | ws_hash_destroy (WsHashPtr hash) |
WsBool | ws_hash_put (WsHashPtr hash, const char *name, void *data) |
void * | ws_hash_get (WsHashPtr hash, const char *name) |
void | ws_hash_clear (WsHashPtr hash) |
typedef void(* WsHashItemDestructor) (void *item, void *context) |
void ws_hash_clear | ( | WsHashPtr | hash | ) |
Definition at line 180 of file wshash.c.
References WsHashItemRec::data, WsHashRec::destructor, WsHashRec::destructor_context, WsHashRec::items, WsHashItemRec::name, WsHashItemRec::next, ws_free(), and WS_HASH_TABLE_SIZE.
Referenced by ws_hash_destroy().
WsHashPtr ws_hash_create | ( | WsHashItemDestructor | destructor, |
void * | contex | ||
) |
Definition at line 103 of file wshash.c.
References WsHashRec::destructor, WsHashRec::destructor_context, and ws_calloc().
Referenced by ws_function_hash_create(), ws_pragma_use_hash_create(), and ws_variable_hash_create().
void ws_hash_destroy | ( | WsHashPtr | hash | ) |
Definition at line 116 of file wshash.c.
References ws_free(), and ws_hash_clear().
Referenced by compile_stream().
void* ws_hash_get | ( | WsHashPtr | hash, |
const char * | name | ||
) |
Definition at line 167 of file wshash.c.
References count_hash(), WsHashItemRec::data, WsHashRec::items, WsHashItemRec::name, name, and WsHashItemRec::next.
Referenced by ws_expr_linearize(), ws_function_hash(), ws_pragma_use(), ws_variable_define(), and ws_variable_lookup().
Definition at line 126 of file wshash.c.
References count_hash(), WsHashItemRec::data, WsHashRec::destructor, WsHashRec::destructor_context, WsHashRec::items, WsHashItemRec::name, name, WsHashItemRec::next, ws_calloc(), WS_FALSE, ws_free(), ws_strdup(), and WS_TRUE.
Referenced by ws_function_hash(), ws_pragma_use(), and ws_variable_define().