OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:node_t
(Results
1 - 6
of
6
) sorted by null
/external/bluetooth/glib/gio/fen/
fen-node.h
28
typedef struct node
node_t
;
typedef in typeref:struct:node
37
node_t
*parent;
43
#define IS_TOPNODE(fp) (((
node_t
*)(fp))->parent == NULL)
44
#define NODE_NAME(fp) (((
node_t
*)(fp))->filename)
49
void (*hit) (
node_t
* node, gpointer user_data);
50
node_t
* (*add_missing) (
node_t
* parent, gpointer user_data);
52
gboolean (*pre_del) (
node_t
* node, gpointer user_data);
57
node_t
* add_node (
node_t
* parent, const gchar* filename)
[
all
...]
fen-node.c
32
#define NODE_STAT(n) (((
node_t
*)(n))->stat)
51
static
node_t
* _head = NULL;
55
static
node_t
* node_new (
node_t
* parent, const gchar* basename);
56
static void node_delete (
node_t
* parent);
57
static gboolean remove_node_internal (
node_t
* node, node_op_t* op);
58
static void children_add (
node_t
*p,
node_t
*f);
59
static void children_remove (
node_t
*p,
node_t
*f)
[
all
...]
fen-data.h
48
node_t
* node;
66
fdata* fdata_new (
node_t
* node, gboolean is_mondir);
73
node_t
* get_parent_node (fdata* data);
81
node_t
* add_missing_cb (
node_t
* parent, gpointer user_data);
82
gboolean pre_del_cb (
node_t
* node, gpointer user_data);
fen-dump.c
38
dump_node (
node_t
* node, gpointer data)
47
dump_node_tree (
node_t
* node, gpointer user_data)
fen-data.c
64
static void scan_children (
node_t
*f);
65
static void scan_known_children (
node_t
* f);
67
node_t
*
68
add_missing_cb (
node_t
* parent, gpointer user_data)
76
pre_del_cb (
node_t
* node, gpointer user_data)
141
scan_known_children (
node_t
* f)
158
node_t
* childf = NULL;
183
scan_children (
node_t
*f)
200
node_t
* childf = NULL;
280
node_t
*
[
all
...]
fen-helper.c
53
scan_children_init (
node_t
*f, gpointer sub)
69
node_t
*childf = NULL;
119
node_t
* f;
177
node_t
* f;
Completed in 74 milliseconds