Searched refs:child (Results 276 - 300 of 448) sorted by relevance

<<1112131415161718

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dsched.h30 #define CLONE_PTRACE 0x00002000 /* set if we want to let tracing continue on the child too */
31 #define CLONE_VFORK 0x00004000 /* set if the parent wants the child to wake it up on mm_release */
36 #define CLONE_SETTLS 0x00080000 /* create a new TLS for the child */
38 #define CLONE_CHILD_CLEARTID 0x00200000 /* clear the TID in the child */
41 #define CLONE_CHILD_SETTID 0x01000000 /* set the TID in the child */
513 * and for reaped dead child processes forked by this group.
733 struct sched_domain *child; /* bottom domain must be null terminated */ member in struct:sched_domain
1014 * pointers to (original) parent process, youngest child, younger sibling,
1360 * child->flags of its traced child (sam
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/
H A Dip6_fib.c998 struct fib6_node *child, *pn; local
1011 child = NULL;
1012 if (fn->right) child = fn->right, children |= 1;
1013 if (fn->left) child = fn->left, children |= 2;
1017 /* Subtree root (i.e. fn) may have one child */
1041 if (pn->right == fn) pn->right = child;
1042 else if (pn->left == fn) pn->left = child;
1046 if (child)
1047 child->parent = pn;
1055 if (child
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drecd008.tcl8 # TEST Test deeply nested transactions and many-child transactions.
67 "Recd008.c: child abort parent" }
69 "Recd008.d: child commit parent" }
170 # Begin child transaction
176 set child $b:$startd:$t
178 set newdata $olddata.$child
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dprom_parse.c54 void (*count_cells)(struct device_node *child,
323 static void of_bus_isa_count_cells(struct device_node *child, argument
674 static struct device_node *of_irq_find_parent(struct device_node *child) argument
679 if (!of_node_get(child))
683 parp = of_get_property(child, "interrupt-parent", NULL);
685 p = of_get_parent(child);
692 of_node_put(child);
693 child = p;
H A Drtas_pci.c117 for (dn = busdn->child; dn; dn = dn->sibling) {
164 for (dn = busdn->child; dn; dn = dn->sibling) {
H A Dprom_init.c420 && (*nodep = call_prom("child", 1, 1, node)) != 0)
1720 phandle child; local
1755 child = call_prom("child", 1, 1, node);
1756 while (child != 0) {
1757 scan_dt_build_strings(child, mem_start, mem_end);
1758 child = call_prom("peer", 1, 1, child);
1765 phandle child; local
1870 child
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/base/
H A Dcore.c910 * if we are the last child of our class, delete
981 * device_for_each_child - device child iterator.
986 * Iterate over @parent's child devices, and call @fn for each,
996 struct device * child; local
1000 while ((child = next_device(&i)) && !error)
1001 error = fn(child, data);
1025 struct device *child; local
1031 while ((child = next_device(&i)))
1032 if (match(child, data) && get_device(child))
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dpci.c747 struct device_node *child; local
756 child = NULL;
757 while ((child = of_get_next_child(node, child)) != NULL) {
759 printk(" * %s\n", child->full_name);
760 reg = of_get_property(child, "reg", &reglen);
766 dev = of_create_pci_dev(pbm, child, bus, devfn, 0);
775 of_scan_pci_bridge(pbm, child, dev);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/hpux/
H A Dwrappers.S91 STREG %r2,PT_GR19(%r1) ;! save for child
92 STREG %r30,PT_GR21(%r1) ;! save for child
108 * HP-UX wants pid (child gets parent pid, parent gets child pid)
109 * in r28 and a flag in r29 (r29 == 1 for child, 0 for parent).
110 * Linux fork returns 0 for child, pid for parent. Since HP-UX
111 * libc stub throws away parent pid and returns 0 for child,
121 ldo 1(%r0),%r29 /* r28 == 0, we are child, set r29 to 1 */
128 /* Set the return value for the child */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dpci.c198 /* KLUGE: Link the child and parent resources - generic PCI didn't */
208 if (r->parent->child) {
218 r->parent->child = r;
244 ** to be a child of the HBA - lets link it in.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/linux-2.6/
H A Dxfs_sysctl.c236 .child = xfs_table
246 .child = xfs_dir_table
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/security/
H A Dcommoncap.c58 int cap_ptrace (struct task_struct *parent, struct task_struct *child) argument
61 if (!cap_issubset(child->cap_permitted, parent->cap_permitted) &&
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dsysctl.c171 .child = kern_table,
177 .child = vm_table,
184 .child = net_table,
191 .child = fs_table,
197 .child = debug_table,
203 .child = dev_table,
506 .child = random_table,
513 .child = pty_table,
1112 .child = inotify_table,
1129 .child
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3_asid.c638 * Figure out whether parent contains child.
640 static int asid_contains(ASIdOrRanges *parent, ASIdOrRanges *child) argument
645 if (child == NULL || parent == child)
651 for (c = 0; c < sk_ASIdOrRange_num(child); c++) {
652 extract_min_max(sk_ASIdOrRange_value(child, c), &c_min, &c_max);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/powermac/
H A Dlow_i2c.c585 struct device_node *np, *child, *parent; local
598 child = of_get_next_child(np, NULL);
599 multibus = !child || strcmp(child->name, "i2c-bus");
600 of_node_put(child);
613 for (child = NULL;
614 (child = of_get_next_child(np, child)) != NULL;) {
615 const u32 *reg = of_get_property(child,
619 kw_i2c_add(host, np, child, *re
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/
H A Dfib_trie.c135 struct node *child[0]; member in struct:tnode
184 return rcu_dereference(tn->child[i]);
270 index into the parent's child array. That is, they will be used to find
280 n's child array, and will of course be different for each child.
420 * Add a child at position i overwriting the old value.
426 struct node *chi = tn->child[i];
451 rcu_assign_pointer(tn->child[i], n);
474 /* One child */
479 n = tn->child[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dirixsig.c472 } child; member in union:irix5_siginfo::__anon3582::__anon3583::__anon3584
636 &info->stuff.procinfo.procdata.child.status);
637 retval |= __put_user(p->utime, &info->stuff.procinfo.procdata.child.utime);
638 retval |= __put_user(p->stime, &info->stuff.procinfo.procdata.child.stime);
654 &info->stuff.procinfo.procdata.child.status);
656 &info->stuff.procinfo.procdata.child.utime);
658 &info->stuff.procinfo.procdata.child.stime);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dmsgfilter.c73 /* We use a child process, and communicate through a bidirectional pipe.
74 To avoid deadlocks, let the child process decide when it wants to read
78 looping while waiting for the child. Not good.) */
589 pid_t child;
597 child = create_pipe_bidi (sub_name, sub_path, sub_argv, false, true, true,
673 /* Tell the child there is nothing more the parent will send. */
709 exitstatus = wait_subprocess (child, sub_name, false, false, true, true);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/lock/
H A Dlock_stub.c426 __lock_locker_is_parent(env, locker, child, retp)
429 DB_LOCKER *child;
434 COMPQUIET(child, NULL);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/maple/
H A Dpci.c56 higher = fixup_one_level_bus_range(node->child, higher);
81 bus_range[1] = fixup_one_level_bus_range(bridge->child, bus_range[1]);
604 for (np = np->child; np; np = np->sibling)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/pseries/
H A Dreconfig.c162 struct device_node *parent, *child; local
168 if ((child = of_get_next_child(np, NULL))) {
169 of_node_put(child);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/kernel/
H A Dprom.c30 /* use when traversing tree through the allnext, child, sibling,
74 next = prev ? prev->sibling : node->child;
560 dp->child = build_tree(dp, prom_getchild(node), nextp);
577 allnodes->child = build_tree(allnodes,
H A Dof_device.c209 void (*count_cells)(struct device_node *child,
262 /* Add in the child address offset. */
326 /* Add in the child address offset, skipping high cell. */
364 static void of_bus_sbus_count_cells(struct device_node *child, argument
671 scan_tree(dp->child, &op->dev);
686 scan_tree(root->child, &parent->dev);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/exportfs/
H A Dexpfs.c135 * the name of the child in that parent, and do a lookup.
136 * This should connect the child into the parent
142 * in which we cannot find a name for the child. While this implies a
293 static struct dentry *get_parent(struct dentry *child) argument
336 * @child: the dentry for the child directory.
339 * the same inode number as the child, and returns that.
342 struct dentry *child)
368 buffer.ino = child->d_inode->i_ino;
341 get_name(struct dentry *dentry, char *name, struct dentry *child) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/ipvs/
H A Dip_vs_lblc.c132 .child = vs_vars_table
142 .child = vs_table
152 .child = ipvs_ipv4_table

Completed in 582 milliseconds

<<1112131415161718