Searched defs:child (Results 1 - 25 of 80) sorted by relevance

1234

/vbox/src/libs/libxml2-2.6.31/python/tests/
H A Dtst.py16 child = root.children variable
17 if child.name != "foo":
18 print "child.name failed"
H A Dnsdel.py45 # Remove a namespace refered to by a child
49 child = root.newChild(namespace, "child", None) variable
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A DloaderProcs.h62 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A DloaderProcs.h61 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A DloaderProcs.h59 struct module_desc *child; member in struct:module_desc
/vbox/src/VBox/HostServices/SharedOpenGL/expando/
H A Dexpandospu.h25 SPUDispatchTable self, child, super; member in struct:__anon16462
H A Dexpandospu_init.c23 expandoSPUInit( int id, SPU *child, SPU *self, argument
35 if (child)
37 crSPUInitDispatchTable( &(expando_spu.child) );
38 crSPUCopyDispatchTable( &(expando_spu.child), &(child->dispatch_table) );
/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dwindows.c47 * @ret ptr return pointer to child window
51 WINDOW *child; local
54 if ( ( child = malloc( sizeof( WINDOW ) ) ) == NULL )
59 child->ori_y = parent->ori_y + begin_y;
60 child->ori_x = parent->ori_x + begin_x;
61 child->height = nlines;
62 child->width = ncols;
63 child->parent = parent;
64 child->scr = parent->scr;
65 return child;
149 WINDOW *child; local
[all...]
/vbox/src/VBox/GuestHost/OpenGL/error/
H A Derrorspu_init.c18 static SPUFunctions *errorSPUInit( int id, SPU *child, SPU *self, argument
25 (void) child;
/vbox/src/VBox/Additions/common/crOpenGL/array/
H A Darrayspu.h32 SPUDispatchTable self, child, super; member in struct:__anon2057
H A Darrayspu_init.c22 static SPUFunctions *arraySPUInit( int id, SPU *child, SPU *self, argument
36 if (child)
38 crSPUInitDispatchTable( &(array_spu.child) );
39 crSPUCopyDispatchTable( &(array_spu.child), &(child->dispatch_table) );
/vbox/src/VBox/Additions/common/crOpenGL/feedback/
H A Dfeedbackspu_init.c27 static SPUFunctions *feedbackSPUInit( int id, SPU *child, SPU *self, argument
40 if (child)
42 crSPUInitDispatchTable( &(feedback_spu.child) );
43 crSPUCopyDispatchTable( &(feedback_spu.child), &(child->dispatch_table) );
/vbox/src/VBox/Additions/common/crOpenGL/passthrough/
H A Dpassthroughspu_init.c17 passthroughSPUInit( int id, SPU *child, SPU *self, argument
26 if (child == NULL)
30 BuildPassthroughTable( child );
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dparent.c63 "Usage: parent [-d] child [options]\n");
72 Child *child = PR_NEWZAP(Child); local
77 child->argv = default_argv;
93 child->argv = argv;
96 if (NULL == *child->argv)
102 child->name = *child->argv;
103 if (NULL != debug) PR_fprintf(debug, "Forking %s\n", child->name);
105 child->attr = PR_NewProcessAttr();
107 child
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c117 pid_t child, parent = getpid(); local
121 if ((child = fork()) == 0)
124 while (waitpid(child, &status, WEXITED) != child)
129 * Our child exited by design -- we'll exit with
136 * Our child died on a signal. Respawn it.
138 printf("badioctl: child died on signal %d; respawning.\n",

Completed in 1680 milliseconds

1234