OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cfg_node
(Results
1 - 1
of
1
) sorted by null
/external/bluetooth/bluedroid/btif/src/
btif_config.c
60
#define CFG_GROW_SIZE (10*sizeof(
cfg_node
))
61
#define GET_CHILD_MAX_COUNT(node) (short)((int)(node)->bytes / sizeof(
cfg_node
))
63
#define GET_NODE_COUNT(bytes) (bytes / sizeof(
cfg_node
))
84
}
cfg_node
;
typedef in typeref:struct:cfg_node_s
88
static
cfg_node
root;
91
static inline short alloc_node(
cfg_node
* p, short grow);
92
static inline void free_node(
cfg_node
* p);
93
static inline void free_inode(
cfg_node
* p, int child);
94
static inline short find_inode(const
cfg_node
* p, const char* name);
95
static
cfg_node
* find_node(const char* section, const char* key, const char* name)
[
all
...]
Completed in 99 milliseconds