Searched refs:node (Results 1 - 25 of 2115) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/mxml-2.7/
H A Dmxml-set.c18 * mxmlSetCDATA() - Set the element name of a CDATA node.
19 * mxmlSetCustom() - Set the data and destructor of a custom data node.
20 * mxmlSetElement() - Set the name of an element node.
21 * mxmlSetInteger() - Set the value of an integer node.
22 * mxmlSetOpaque() - Set the value of an opaque node.
23 * mxmlSetReal() - Set the value of a real number node.
24 * mxmlSetText() - Set the value of a text node.
25 * mxmlSetTextf() - Set the value of a text node to a formatted string.
26 * mxmlSetUserData() - Set the user data pointer for a node.
38 * 'mxmlSetCDATA()' - Set the element name of a CDATA node
46 mxmlSetCDATA(mxml_node_t *node, const char *data) argument
85 mxmlSetCustom( mxml_node_t *node, void *data, mxml_custom_destroy_cb_t destroy) argument
122 mxmlSetElement(mxml_node_t *node, const char *name) argument
152 mxmlSetInteger(mxml_node_t *node, int integer) argument
183 mxmlSetOpaque(mxml_node_t *node, const char *opaque) argument
217 mxmlSetReal(mxml_node_t *node, double real) argument
248 mxmlSetText(mxml_node_t *node, int whitespace, const char *string) argument
284 mxmlSetTextf(mxml_node_t *node, int whitespace, const char *format, ...) argument
328 mxmlSetUserData(mxml_node_t *node, void *data) argument
[all...]
H A Dmxml-search.c21 * mxmlWalkNext() - Walk to the next logical node in the tree.
22 * mxmlWalkPrev() - Walk to the previous logical node in the tree.
42 * additional direct descendents of the node. The top node argument
43 * constrains the search to a particular node's children.
46 mxml_node_t * /* O - Element node or NULL */
47 mxmlFindElement(mxml_node_t *node, /* I - Current node */ argument
48 mxml_node_t *top, /* I - Top node */
61 if (!node || !to
137 mxml_node_t *node; /* Current node */ local
216 mxmlWalkNext(mxml_node_t *node, mxml_node_t *top, int descend) argument
254 mxmlWalkPrev(mxml_node_t *node, mxml_node_t *top, int descend) argument
[all...]
H A Dmxml-get.c18 * mxmlGetCDATA() - Get the value for a CDATA node.
19 * mxmlGetCustom() - Get the value for a custom node.
20 * mxmlGetElement() - Get the name for an element node.
21 * mxmlGetFirstChild() - Get the first child of an element node.
22 * mxmlGetInteger() - Get the integer value from the specified node or its
24 * mxmlGetLastChild() - Get the last child of an element node.
25 * mxmlGetNextSibling() - Get the next node for the current parent.
26 * mxmlGetOpaque() - Get an opaque string value for a node or its first
28 * mxmlGetParent() - Get the parent node.
29 * mxmlGetPrevSibling() - Get the previous node fo
53 mxmlGetCDATA(mxml_node_t *node) argument
81 mxmlGetCustom(mxml_node_t *node) argument
114 mxmlGetElement(mxml_node_t *node) argument
141 mxmlGetFirstChild(mxml_node_t *node) argument
168 mxmlGetInteger(mxml_node_t *node) argument
202 mxmlGetLastChild(mxml_node_t *node) argument
228 mxmlGetNextSibling(mxml_node_t *node) argument
255 mxmlGetOpaque(mxml_node_t *node) argument
288 mxmlGetParent(mxml_node_t *node) argument
314 mxmlGetPrevSibling(mxml_node_t *node) argument
340 mxmlGetReal(mxml_node_t *node) argument
374 mxmlGetText(mxml_node_t *node, int *whitespace) argument
428 mxmlGetType(mxml_node_t *node) argument
452 mxmlGetUserData(mxml_node_t *node) argument
[all...]
H A Dmxml-node.c2 * "$Id: mxml-node.c 436 2011-01-22 01:02:05Z mike $"
18 * mxmlAdd() - Add a node to a tree.
19 * mxmlDelete() - Delete a node and all of its children.
20 * mxmlGetRefCount() - Get the current reference (use) count for a node.
21 * mxmlNewCDATA() - Create a new CDATA node.
22 * mxmlNewCustom() - Create a new custom data node.
23 * mxmlNewElement() - Create a new element node.
24 * mxmlNewInteger() - Create a new integer node.
26 * mxmlNewReal() - Create a new real number node.
27 * mxmlNewText() - Create a new text fragment node
63 mxmlAdd(mxml_node_t *parent, int where, mxml_node_t *child, mxml_node_t *node) argument
197 mxmlDelete(mxml_node_t *node) argument
291 mxmlGetRefCount(mxml_node_t *node) argument
323 mxml_node_t *node; /* New node */ local
366 mxml_node_t *node; /* New node */ local
400 mxml_node_t *node; /* New node */ local
438 mxml_node_t *node; /* New node */ local
469 mxml_node_t *node; /* New node */ local
507 mxml_node_t *node; /* New node */ local
540 mxml_node_t *node; /* New node */ local
585 mxml_node_t *node; /* New node */ local
627 mxmlRemove(mxml_node_t *node) argument
718 mxmlRelease(mxml_node_t *node) argument
742 mxmlRetain(mxml_node_t *node) argument
759 mxml_node_t *node; /* New node */ local
[all...]
H A Dmxml-attr.c37 static int mxml_set_attr(mxml_node_t *node, const char *name,
48 mxmlElementDeleteAttr(mxml_node_t *node,/* I - Element */ argument
56 fprintf(stderr, "mxmlElementDeleteAttr(node=%p, name=\"%s\")\n",
57 node, name ? name : "(null)");
64 if (!node || node->type != MXML_ELEMENT || !name)
71 for (i = node->value.element.num_attrs, attr = node->value.element.attrs;
92 node->value.element.num_attrs --;
102 * This function returns NULL if the node i
107 mxmlElementGetAttr(mxml_node_t *node, const char *name) argument
169 mxmlElementSetAttr(mxml_node_t *node, const char *name, const char *value) argument
210 mxmlElementSetAttrf(mxml_node_t *node, const char *name, const char *format, ...) argument
253 mxml_set_attr(mxml_node_t *node, const char *name, char *value) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ocfs2/cluster/
H A Dquorum.h29 void o2quo_hb_up(u8 node);
30 void o2quo_hb_down(u8 node);
31 void o2quo_hb_still_up(u8 node);
32 void o2quo_conn_up(u8 node);
33 void o2quo_conn_err(u8 node);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/sysdev/
H A Dmpc5xxx_clocks.c3 * @node: device node
13 mpc5xxx_get_bus_frequency(struct device_node *node) argument
18 of_node_get(node);
19 while (node) {
20 p_bus_freq = of_get_property(node, "bus-frequency", NULL);
24 np = of_get_parent(node);
25 of_node_put(node);
26 node = np;
28 if (node)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/ospf6d/
H A Dospf6_bintree.c8 struct bintree_node *node; local
13 node = subroot;
14 while (node->bl_left)
15 node = node->bl_left;
16 return node;
22 struct bintree_node *node; local
25 node = subroot;
26 while (node->bl_right)
27 node
35 struct bintree_node *node; local
64 struct bintree_node *node; local
74 struct bintree_node *node; local
85 struct bintree_node *node, *parent; local
139 bintree_remove_nochild(struct bintree_node *node) argument
150 bintree_remove_onechild(struct bintree_node *node) argument
191 struct bintree_node *node; local
275 bintree_head(struct bintree *tree, struct bintree_node *node) argument
298 bintree_end(struct bintree_node *node) argument
317 bintree_next(struct bintree_node *node) argument
394 struct bintree_node node; local
[all...]
H A Dospf6_linklist.c9 struct linklist_node *node; local
11 for (node = linklist->head; node; node = node->next)
13 if (linklist->cmp && (*linklist->cmp) (node->data, data) == 0)
14 return node;
15 if (node->data == data)
16 return node;
25 struct linklist_node *node; local
36 struct linklist_node *node = NULL, *add; local
120 linklist_head(struct linklist *linklist, struct linklist_node *node) argument
136 linklist_end(struct linklist_node *node) argument
144 linklist_next(struct linklist_node *node) argument
175 struct linklist_node node; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dmpc5xxx.h19 extern unsigned long mpc5xxx_get_bus_frequency(struct device_node *node);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/alpha/include/asm/
H A Dtopology.h11 int node; local
16 node = alpha_mv.cpuid_to_nid(cpu);
19 BUG_ON(node < 0);
22 return node;
26 static const struct cpumask *cpumask_of_node(int node)
30 if (node == -1)
33 cpumask_clear(&node_to_cpumask_map[node]);
36 if (cpu_to_node(cpu) == node)
37 cpumask_set_cpu(cpu, node_to_cpumask_map[node]);
40 return &node_to_cpumask_map[node];
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/mm/
H A Dnuma.c21 unsigned int node, num = 0; local
25 for_each_node_mask(node, node_possible_map)
26 num = node;
31 for (node = 0; node < nr_node_ids; node++)
32 alloc_bootmem_cpumask_var(&node_to_cpumask_map[node]);
40 * Returns a pointer to the bitmask of CPUs on Node 'node'.
42 const struct cpumask *cpumask_of_node(int node) argument
44 if (node >
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/tipc/
H A Dnode_subscr.c2 * net/tipc/node_subscr.c: TIPC "node down" subscription handling
40 #include "node.h"
44 * tipc_nodesub_subscribe - create "node down" subscription for specified node
51 node_sub->node = NULL;
55 node_sub->node = tipc_node_find(addr);
56 if (!node_sub->node) {
57 warn("Node subscription rejected, unknown node 0x%x\n", addr);
63 tipc_node_lock(node_sub->node);
64 list_add_tail(&node_sub->nodesub_list, &node_sub->node
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/lib/
H A Dlinklist.c50 struct listnode *node;
52 node = XMALLOC (MTYPE_LINK_NODE, sizeof (struct listnode));
53 memset (node, 0, sizeof (struct listnode));
54 return node;
59 listnode_free (struct listnode *node)
61 XFREE (MTYPE_LINK_NODE, node);
69 struct listnode *node;
71 node = listnode_new ();
73 node->prev = list->tail;
74 node
49 struct listnode *node; local
58 listnode_free(struct listnode *node) argument
67 struct listnode *node; local
163 struct listnode *node; local
190 struct listnode *node; local
203 struct listnode *node; local
221 struct listnode *node; local
238 listnode node; local
248 list_delete_node(list list, listnode node) argument
266 struct listnode *node; local
287 struct listnode *node; local
[all...]
H A Dtable.c49 /* Allocate new route node. */
53 struct route_node *node;
54 node = XCALLOC (MTYPE_ROUTE_NODE, sizeof (struct route_node));
55 return node;
58 /* Allocate new route node with prefix set. */
62 struct route_node *node;
64 node = route_node_new ();
66 prefix_copy (&node->p, prefix);
67 node->table = table;
69 return node;
52 struct route_node *node; local
61 struct route_node *node; local
73 route_node_free(struct route_node *node) argument
83 struct route_node *node; local
192 set_link(struct route_node *node, struct route_node *new) argument
206 route_lock_node(struct route_node *node) argument
214 route_unlock_node(struct route_node *node) argument
226 struct route_node *node; local
243 struct route_node *node; local
298 struct route_node *node; local
319 struct route_node *node; local
371 route_node_delete(struct route_node *node) argument
425 route_next(struct route_node *node) argument
466 route_next_until(struct route_node *node, struct route_node *limit) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/util/
H A Dqueue.c30 qnode_t *node; local
31 if ((node = malloc(sizeof(qnode_t))) == NULL)
33 node->data = data;
35 return node;
56 qnode_t *node; local
58 if ((node = alloc_init_node(data)) == NULL)
62 node->next = q;
63 node->prev = q->prev;
64 q->prev->next = node;
65 q->prev = node;
73 qnode_t *node; local
90 qnode_t *node; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgl_anylinked_list2.h24 The list and node fields that are therefore accessed from the signal handler
26 list->root, node->next, node->value.
93 gl_list_node_t node = XMALLOC (struct gl_list_node_impl); local
95 node->value = *contents;
97 node->h.hashcode =
99 ? list->base.hashcode_fn (node->value)
100 : (size_t)(uintptr_t) node->value);
102 /* Add node to the hash table. */
103 add_to_bucket (list, node);
124 gl_linked_node_value(gl_list_t list, gl_list_node_t node) argument
130 gl_linked_next_node(gl_list_t list, gl_list_node_t node) argument
136 gl_linked_previous_node(gl_list_t list, gl_list_node_t node) argument
145 gl_list_node_t node; local
171 gl_list_node_t node; local
236 gl_list_node_t node; local
277 gl_list_node_t node; local
344 gl_list_node_t node = list->root.next; local
387 gl_list_node_t node; local
468 gl_list_node_t node = list->root.next; local
497 gl_list_node_t node = XMALLOC (struct gl_list_node_impl); local
527 gl_list_node_t node = XMALLOC (struct gl_list_node_impl); local
555 gl_linked_add_before(gl_list_t list, gl_list_node_t node, const void *elt) argument
585 gl_linked_add_after(gl_list_t list, gl_list_node_t node, const void *elt) argument
639 gl_list_node_t node; local
651 gl_list_node_t node; local
672 gl_linked_remove_node(gl_list_t list, gl_list_node_t node) argument
708 gl_list_node_t node; local
721 gl_list_node_t node; local
747 gl_list_node_t node = gl_linked_search_from_to (list, 0, list->count, elt); local
759 gl_list_node_t node; local
815 gl_list_node_t node; local
829 gl_list_node_t node; local
845 gl_list_node_t node; local
872 gl_list_node_t node = (gl_list_node_t) iterator->p; local
894 gl_list_node_t node; local
925 gl_list_node_t node; local
960 gl_list_node_t node; local
995 gl_list_node_t node; local
1031 gl_list_node_t node; local
1043 gl_list_node_t node; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/asm-generic/
H A Dtopology.h38 #define set_numa_node(node)
41 #define set_cpu_numa_node(cpu, node)
48 #define parent_node(node) ((void)(node),0)
51 #define cpumask_of_node(node) ((void)node, cpu_online_mask)
68 #define set_numa_mem(node)
71 #define set_cpu_numa_mem(cpu, node)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/src/
H A Drbtree.c25 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) argument
27 struct rb_node *right = node->rb_right;
28 struct rb_node *parent = rb_parent(node);
30 if ((node->rb_right = right->rb_left))
31 rb_set_parent(right->rb_left, node);
32 right->rb_left = node;
38 if (node == parent->rb_left)
45 rb_set_parent(node, right);
48 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) argument
50 struct rb_node *left = node
71 rb_insert_color(struct rb_node *node, struct rb_root *root) argument
136 __rb_erase_color(struct rb_node *node, struct rb_node *parent, struct rb_root *root) argument
222 rb_erase(struct rb_node *node, struct rb_root *root) argument
316 rb_next(struct rb_node *node) argument
344 rb_prev(struct rb_node *node) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dmodule.cpp53 wxHashTable::compatibility_iterator node; local
57 node = wxClassInfo::sm_classTable->Next();
58 while (node)
60 classInfo = (wxClassInfo *)node->GetData();
69 node = wxClassInfo::sm_classTable->Next();
93 wxModuleList::compatibility_iterator node; local
94 for ( node = initializedModules.GetFirst(); node; node = node
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Drbtree.c26 static void __rb_rotate_left(struct rb_node *node, struct rb_root *root) argument
28 struct rb_node *right = node->rb_right;
29 struct rb_node *parent = rb_parent(node);
31 if ((node->rb_right = right->rb_left))
32 rb_set_parent(right->rb_left, node);
33 right->rb_left = node;
39 if (node == parent->rb_left)
46 rb_set_parent(node, right);
49 static void __rb_rotate_right(struct rb_node *node, struct rb_root *root) argument
51 struct rb_node *left = node
72 rb_insert_color(struct rb_node *node, struct rb_root *root) argument
138 __rb_erase_color(struct rb_node *node, struct rb_node *parent, struct rb_root *root) argument
218 rb_erase(struct rb_node *node, struct rb_root *root) argument
286 rb_augment_path(struct rb_node *node, rb_augment_f func, void *data) argument
309 rb_augment_insert(struct rb_node *node, rb_augment_f func, void *data) argument
323 rb_augment_erase_begin(struct rb_node *node) argument
348 rb_augment_erase_end(struct rb_node *node, rb_augment_f func, void *data) argument
383 rb_next(const struct rb_node *node) argument
412 rb_prev(const struct rb_node *node) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/dtc/
H A Dlivetree.c64 struct node *build_node(struct property *proplist, struct node *children)
66 struct node *new = xmalloc(sizeof(*new));
67 struct node *child;
81 struct node *name_node(struct node *node, char *name, char * label) argument
83 assert(node->name == NULL);
85 node->name = name;
87 node
100 add_property(struct node *node, struct property *prop) argument
186 get_unitname(struct node *node) argument
194 get_property(struct node *node, const char *propname) argument
211 get_subnode(struct node *node, const char *nodename) argument
247 struct node *child, *node; local
265 struct node *child, *node; local
289 get_node_phandle(struct node *root, struct node *node) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zebra/bgpd/
H A Dbgp_table.c61 /* Allocate new route node with prefix set. */
65 struct bgp_node *node;
67 node = bgp_node_create ();
69 prefix_copy (&node->p, prefix);
70 node->table = table;
72 return node;
75 /* Free route node. */
77 bgp_node_free (struct bgp_node *node)
79 XFREE (MTYPE_BGP_NODE, node);
87 struct bgp_node *node;
64 struct bgp_node *node; local
76 bgp_node_free(struct bgp_node *node) argument
86 struct bgp_node *node; local
195 set_link(struct bgp_node *node, struct bgp_node *new) argument
209 bgp_lock_node(struct bgp_node *node) argument
217 bgp_unlock_node(struct bgp_node *node) argument
229 struct bgp_node *node; local
284 struct bgp_node *node; local
305 struct bgp_node *node; local
357 bgp_node_delete(struct bgp_node *node) argument
411 bgp_route_next(struct bgp_node *node) argument
452 bgp_route_next_until(struct bgp_node *node, struct bgp_node *limit) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/hfs/
H A Dbnode.c8 * Handle basic btree node operations
17 void hfs_bnode_read(struct hfs_bnode *node, void *buf, argument
22 off += node->page_offset;
23 page = node->page[0];
29 u16 hfs_bnode_read_u16(struct hfs_bnode *node, int off) argument
33 hfs_bnode_read(node, &data, off, 2);
37 u8 hfs_bnode_read_u8(struct hfs_bnode *node, int off) argument
41 hfs_bnode_read(node, &data, off, 1);
45 void hfs_bnode_read_key(struct hfs_bnode *node, void *key, int off) argument
50 tree = node
60 hfs_bnode_write(struct hfs_bnode *node, void *buf, int off, int len) argument
72 hfs_bnode_write_u16(struct hfs_bnode *node, int off, u16 data) argument
79 hfs_bnode_write_u8(struct hfs_bnode *node, int off, u8 data) argument
85 hfs_bnode_clear(struct hfs_bnode *node, int off, int len) argument
118 hfs_bnode_move(struct hfs_bnode *node, int dst, int src, int len) argument
135 hfs_bnode_dump(struct hfs_bnode *node) argument
171 hfs_bnode_unlink(struct hfs_bnode *node) argument
220 struct hfs_bnode *node; local
239 struct hfs_bnode *node, *node2; local
300 hfs_bnode_unhash(struct hfs_bnode *node) argument
317 struct hfs_bnode *node; local
398 hfs_bnode_free(struct hfs_bnode *node) argument
410 struct hfs_bnode *node; local
442 hfs_bnode_get(struct hfs_bnode *node) argument
452 hfs_bnode_put(struct hfs_bnode *node) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/boot/
H A Dcuboot-8xx.c25 void *node; local
31 node = finddevice("/soc/cpm");
32 if (node)
33 setprop(node, "clock-frequency", &bd.bi_busfreq, 4);
35 node = finddevice("/soc/cpm/brg");
36 if (node)
37 setprop(node, "clock-frequency", &bd.bi_busfreq, 4);

Completed in 470 milliseconds

1234567891011>>