Searched defs:child (Results 151 - 175 of 263) sorted by relevance

1234567891011

/illumos-gate/usr/src/lib/libdevinfo/
H A Ddevinfo_devlink.h75 uint32_t child; /* first child for this node */ member in struct:db_node
120 struct cache_node *child; /* first child for this node */ member in struct:cache_node
/illumos-gate/usr/src/lib/libfru/libfrupicl/
H A Dfrupicl.c275 fpt_get_child(fru_treehdl_t handle, fru_treehdl_t *child) argument
284 *child = PICLHDL_TO_TREEHDL(p_child);
/illumos-gate/usr/src/lib/libfru/libfrupicltree/
H A Dfrupicltree.c286 fpt_get_child(fru_treehdl_t handle, fru_treehdl_t *child) argument
295 *child = PICLHDL_TO_TREEHDL(p_child);
/illumos-gate/usr/src/lib/libzfs_jni/common/
H A Dlibzfs_jni_pool.c916 nvlist_t *child; local
918 /* For each vdev child... */
925 child = zjni_get_vdev(zhp, children[i],
927 if (child != NULL) {
928 return (child);
975 /* Get last vdev child (replacement device) */
976 nvlist_t *child = children[nelem - 1]; local
979 zhp, child, p_vdev_id);
1012 /* For each vdev child... */
1015 nvlist_t *child local
[all...]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetutx.c489 pid_t child; local
547 * No SIGCHLD, please, and let no one else reap our child.
561 error = posix_spawn(&child, UTMP_UPDATE, NULL, &attr, argvec, _environ);
570 w = waitpid(child, &status, 0);
580 * The child encountered an error,
/illumos-gate/usr/src/cmd/xargs/
H A Dxargs.c88 #define FORKFAIL "Could not fork child"
870 pid_t iwait, child; local
873 switch (child = fork()) {
875 while ((iwait = wait(&retcode)) != child &&
/illumos-gate/usr/src/cmd/nscd/
H A Dnscd_selfcred.c97 static child_t **child = NULL; variable
107 /* nscd id: main, forker, or child */
123 if (child[s] == NULL)
125 free(child[s]->mutex);
126 free(child[s]->cond);
127 free(child[s]);
128 child[s] = NULL;
156 if (child[s] == NULL) {
157 child[s] = (child_t *)calloc(1, sizeof (child_t));
158 if (child[
[all...]
/illumos-gate/usr/src/cmd/rcap/rcapd/
H A Drcapd_main.c1492 pid_t child; local
1494 child = fork();
1495 if (child == -1)
1497 if (child > 0)
/illumos-gate/usr/src/cmd/rcm_daemon/common/
H A Drcm_subr.c999 if (node->child) {
1000 rn_free(node->child);
1022 * Find first child
1027 return (node->child);
1031 * Find child named childname. Create it if flag is RSRC_NODE_CRTEATE
1036 rsrc_node_t *child = parent->child; local
1040 "rn_find_child(parent=%s, child=%s, 0x%x, %d)\n",
1046 while (child && (strcmp(child
1309 rsrc_node_t *child, *sibling; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Drlogin.c185 static pid_t child; variable
788 child = fork();
789 if (child == (pid_t)-1) {
793 if (child == 0) {
809 * trap that simply copies such signals to the child.
855 if (child > 0) {
858 if (kill(child, SIGKILL) >= 0)
859 while ((w = wait(0)) > (pid_t)0 && w != child)
866 * Copy SIGURGs to the child process.
874 (void) kill(child, SIGUR
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/
H A Din.tftpd.c42 * an infinite loop fielding new TFTP requests. A child process,
44 * NAKs for those that we can't handle. A new child process is created
107 static pid_t child; variable
108 /* pid of child handling delayed replys */
110 /* pipe for communicating with child */
299 if ((child = fork()) < 0) {
305 if (child == 0) {
307 } /* child */
334 (void) kill(child, SIGKILL);
342 (void) kill(child, SIGKIL
[all...]
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dtree.h118 * attached via the "child" pointers.
122 * - if child is set, there's an iterator
123 * - if child is a T_NAME, it is x[j] or x<j> and
125 * - if child is a T_NUM, it is x[0] or x<0> or
129 * can ignore child for now because it still
133 * instead of following child.
144 struct node *child; member in struct:node::__anon457::__anon458
172 unsigned childgen:1; /* child was auto-generated */
/illumos-gate/usr/src/cmd/fm/modules/common/zfs-diagnosis/
H A Dzfs_de.c189 nvlist_t **child; local
211 if (nvlist_lookup_nvlist_array(vd, ZPOOL_CONFIG_CHILDREN, &child,
214 zfs_mark_vdev(pool_guid, child[c], loaded);
217 if (nvlist_lookup_nvlist_array(vd, ZPOOL_CONFIG_L2CACHE, &child,
220 zfs_mark_vdev(pool_guid, child[c], loaded);
223 if (nvlist_lookup_nvlist_array(vd, ZPOOL_CONFIG_SPARES, &child,
226 zfs_mark_vdev(pool_guid, child[c], loaded);
/illumos-gate/usr/src/cmd/sgs/nm/common/
H A Dnm.c1409 char *root, *child, *child_len_p; local
1412 child = s + len + 2;
1413 child_len_p = child;
1414 if (!isdigit(*child)) {
1424 for (p = child; *p != '_'; ++p)
1428 (void) strcat(p_buf, child);
1433 while (isdigit(*child))
1434 child++;
1435 c = *child;
1436 *child
[all...]
/illumos-gate/usr/src/cmd/truss/
H A Dramdata.h86 pid_t child; /* pid of fork()ed child process */ member in struct:__anon1902
290 extern int is_vfork_child; /* TRUE iff process is a vfork()ed child */
/illumos-gate/usr/src/uts/common/disp/
H A Dcmt.c71 * parent, child and sibling hierarchy relationships.
387 * only child of it's parent. Update the parent's children set
389 * the child). Then have PG and the parent swap children sets and
459 * Have the child and the parent swap places in the CPU's
1283 * domain is an only child of another PG. Because the dispatcher walks
1292 * If the power domain is an only child to a parent
1293 * not implementing the same policy, promote the child
1314 pg_cmt_t *child; local
1337 * If the power domain has an only child that implements
1338 * policy other than load balancing, promote the child
1471 pg_cmt_t *pg, *child; local
[all...]
/illumos-gate/usr/src/uts/i86pc/io/
H A Disa.c209 static int isa_initchild(dev_info_t *child);
1027 * Name a child
1030 isa_name_child(dev_info_t *child, char *name, int namelen) argument
1051 if (old_driver(child))
1057 if (ddi_get_parent_data(child) == NULL) {
1059 make_ddi_ppd(child, &pdptr);
1060 ddi_set_parent_data(child, pdptr);
1063 if (ndi_dev_is_persistent_node(child) == 0) {
1068 if (sparc_pd_getnreg(child) > 0) {
1070 (uint_t)sparc_pd_getreg(child,
1114 isa_initchild(dev_info_t *child) argument
[all...]
/illumos-gate/usr/src/uts/i86pc/io/pci/
H A Dpci_common.c77 pci_common_name_child(dev_info_t *child, char *name, int namelen) argument
84 if (ndi_dev_is_persistent_node(child) == 0) {
88 if (ddi_prop_lookup_string_array(DDI_DEV_T_ANY, child,
92 ddi_get_name(child));
97 " not well-formed", ddi_get_name(child));
106 if (ddi_prop_lookup_int_array(DDI_DEV_T_ANY, child, DDI_PROP_DONTPASS,
109 ddi_get_name(child));
139 * Create the ddi_parent_private_data for a pseudo child.
1487 * here, and is thus shared across PCI child drivers and any other
/illumos-gate/usr/src/uts/common/io/
H A Di8042.c151 * has_glock is 1 if this child has the [put8] exclusive-access lock.
180 * glock is 1 if any child has the [put8] exclusive-access lock
186 * and are signaled when another child relinquishes exclusive access.
636 * build a list of interrupts that each child uses,
1157 * the child possessing it relinquishes the lock.
1309 * If no child has exclusive access, then proceed with
1310 * the put8 below. If a child (not the one making the
1314 * while a child is writing to the 8042.
1466 dev_info_t *child; local
1472 child
1514 dev_info_t *child; local
1631 dev_info_t *child = ddi_get_child(dip); local
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/pmcs/
H A Dpmcs_scsa.c1207 pmcs_smp_init(dev_info_t *self, dev_info_t *child, argument
1230 if (ddi_prop_lookup_string(DDI_DEV_T_ANY, child,
1262 __func__, ddi_get_name(child), tgt_port);
1361 pmcs_smp_free(dev_info_t *self, dev_info_t *child, argument
1383 if (ddi_prop_lookup_string(DDI_DEV_T_ANY, child,
1395 ddi_get_name(child), tgt_port);
/illumos-gate/usr/src/uts/sun4/io/efcode/
H A Dfcpci.c182 pci_fc_ops_alloc_handle(dev_info_t *ap, dev_info_t *child, argument
191 rp->next_handle = fc_ops_alloc_handle(ap, child, fcode, fcode_size,
194 rp->child = child;
210 * Add the child's nodeid to our table...
212 h = ddi_get_nodeid(rp->child);
213 fc_add_dip_to_phandle(fc_handle_to_phandle_head(rp), rp->child, h);
578 error = pci_alloc_resource(rp->child, p);
584 error = pci_map_phys(rp->child, &p, &virt, &acc, &h);
718 error = ddi_peek64(rp->child, (int64_
[all...]
/illumos-gate/usr/src/uts/sun4/sys/
H A Dfcode.h264 * sunos,parent ( child.phandle -- parent.phandle )
266 * child ( parent.phandle -- child.phandle )
272 * sunos,config-child ( -- child.phandle )
273 * Return the phandle of the child being configured.
280 #define FC_CHILD_FCODE "child"
283 #define FC_CONFIG_CHILD "sunos,config-child"
319 * We can't get the physical config address of the child from the
320 * unit address, so we supply it here, along with the child'
423 struct fc_device_tree *child; member in struct:fc_device_tree
452 dev_info_t *child; /* Child being configured, if any */ member in struct:fc_resource_list
[all...]
/illumos-gate/usr/src/uts/sun4u/io/pci/
H A Dsimba.c301 static int simba_initchild(dev_info_t *child);
648 simba_name_child(dev_info_t *child, char *name, int namelen) argument
653 if (ndi_dev_is_persistent_node(child) == 0) {
657 if (ddi_prop_lookup_string_array(DDI_DEV_T_ANY, child,
661 ddi_driver_name(child));
666 " not well-formed", ddi_driver_name(child));
677 if (ddi_prop_lookup_int_array(DDI_DEV_T_ANY, child, 0, "reg",
695 simba_initchild(dev_info_t *child) argument
706 DEBUG1(D_INIT_CLD, "simba_initchild(): child=%p\n", child);
[all...]
/illumos-gate/usr/src/cmd/mandoc/
H A Dmdoc_man.c471 print_width(const struct mdoc_bl *bl, const struct roff_node *child) argument
496 else if (child != NULL && child->type == ROFFT_TEXT)
497 chsz = strlen(child->string);
506 * such that child lists can use it.
566 for (n = mdoc->first->child; n != NULL; n = n->next)
614 (n->end == ENDBODY_NOT || n->child != NULL))
619 * Conditionally run all child nodes.
624 for (sub = n->child; sub; sub = sub->next)
691 for (nch = n->child; nc
[all...]
H A Droff.h84 struct roff_node *child; /* First child AST node. */ member in struct:roff_node
85 struct roff_node *last; /* Last child AST node. */

Completed in 144 milliseconds

1234567891011