OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dictCtx
(Results
1 - 3
of
3
) sorted by null
/external/clearsilver/util/
dict.h
19
typedef struct _dictCtx *
dictCtx
;
23
NEOERR *dictCreate(
dictCtx
*dict, BOOL threaded, UINT32 root, UINT32 maxLevel,
44
void dictDestroy(
dictCtx
dict);
54
BOOL dictRemove(
dictCtx
dict, const char *id);
65
void *dictSearch(
dictCtx
dict, const char *id, void **plock);
82
void *dictNext(
dictCtx
dict, char **id, void **plock);
103
void dictReleaseLock(
dictCtx
dict, void *lock);
116
NEOERR *dictSetValue(
dictCtx
dict, const char *id, void *value);
132
NEOERR *dictModifyValue(
dictCtx
dict, const char *id, dictNewValueCB new_cb,
149
void dictCleanup(
dictCtx
dict, dictCleanupFunc cleanup, void *rock)
[
all
...]
dict.c
85
static NEOERR *dictNewItem(
dictCtx
dict, dictEntryPtr entry,
131
static void dictFreeItem(
dictCtx
dict, dictItemPtr item) {
142
static dictItemPtr dictFindItem(
dictCtx
dict, dictEntryPtr entry,
165
static NEOERR *dictUpdate(
dictCtx
dict, dictEntryPtr entry, const char *id,
219
static NEOERR *dictInsert(
dictCtx
dict, UINT32 hash, const char *id,
257
static UINT32 dictHash(
dictCtx
dict, const char *id) {
270
static NEOERR *dictModify(
dictCtx
dict, const char *id, dictValuePtr newval)
296
NEOERR *dictSetValue(
dictCtx
dict, const char *id, void *value) {
307
NEOERR *dictModifyValue(
dictCtx
dict, const char *id, dictNewValueCB new,
323
void dictReleaseLock(
dictCtx
dict, void *lock)
[
all
...]
wdb.h
53
dictCtx
attrs;
54
dictCtx
cols;
Completed in 759 milliseconds