Searched refs:dict_hdl_t (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/src/router/shared/
H A Ddict.h50 typedef const struct dict_hdl_s { int foo; } *dict_hdl_t; typedef in typeref:struct:dict_hdl_s
53 dict_hdl_t DictNew(void);
54 void DictFree(dict_hdl_t dict);
55 void DictSet(dict_hdl_t dict, const char * const key, const char * const value);
56 const char *DictGet(dict_hdl_t dict, const char * const key);
57 void DictDelete(dict_hdl_t dict, const char * const key);
58 int DictIsEmpty(dict_hdl_t dict);
59 void DictDoEmpty(dict_hdl_t dict);
60 void DictMap(dict_hdl_t dict, void (*fn)(const char *key, const char *value));
62 dict_iterator_t DictIteratorNew(dict_hdl_t dic
[all...]
H A Ddict.c86 static t_dict_node *DictInternalFind(dict_hdl_t dict, const char * const key);
109 static t_dict_node *DictInternalFind(const dict_hdl_t dict, const char * const key)
146 * Function name : dict_hdl_t DictNew(void)
158 dict_hdl_t DictNew(void)
167 return (dict_hdl_t)dict;
185 void DictFree(dict_hdl_t dict)
208 void DictSet(const dict_hdl_t dict, const char * const key, const char * const
249 const char *DictGet(const dict_hdl_t dict, const char * const key)
268 void DictDelete(const dict_hdl_t dict, const char * const key)
291 int DictIsEmpty(const dict_hdl_t dic
[all...]
H A Dbroadcom.c213 static dict_hdl_t BcmPostArgs;

Completed in 301 milliseconds