HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /netvirt/usr/src/cmd/fm/modules/common/eversholt/
config_impl.h 43 struct config *child; member in struct:config
  /netvirt/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/base/
AMContainerHelper.java 103 * Adds a child.
105 public void add(AttributeManager child) {
106 if (child != null && !children.contains(child)) {
107 // check to see that child isn't one of this container's parents
108 if (child instanceof AMContainer) {
111 if (cn == child) {
118 if (child.getParent() != null) {
119 child.getParent().remove(child);
238 AttributeManager child = (AttributeManager) local
285 AttributeManager child = (AttributeManager)e.nextElement(); local
301 AttributeManager child = (AttributeManager)e.nextElement(); local
310 AttributeManager child = (AttributeManager)e.nextElement(); local
319 AttributeManager child = (AttributeManager)e.nextElement(); local
    [all...]
  /netvirt/usr/src/cmd/modload/
modload.c 119 int child; local
125 if ((child = fork()) == -1)
131 if (child == 0) {
149 } while ((waitret != child) && (waitret != -1));
modunload.c 52 int child; local
74 child = fork();
75 if (child == -1)
77 else if (child == 0)
  /netvirt/usr/src/cmd/rexd/
where_main.c 37 int child = 0; /* pid of the executed process */ variable
under.c 50 int child = 0; /* pid of the executed process */ variable
191 int pid, child, status; local
214 while ((child = wait(&status)) != pid && child != -1)
218 if (child == -1)
  /netvirt/usr/src/cmd/tip/aculib/
dn11.c 22 static int child = -1, dn; variable
41 (void) kill(child, SIGKILL);
48 if ((child = fork()) == 0) {
68 (void) kill(child, SIGKILL);
77 while ((nw = wait(&lt)) != child && nw != -1)
117 if (child > 0)
118 (void) kill(child, SIGKILL);
  /netvirt/usr/src/cmd/zpool/
zpool_util.c 89 nvlist_t **child; local
92 &child, &children) != 0)
98 (void) nvlist_lookup_uint64(child[c], ZPOOL_CONFIG_IS_LOG,
  /netvirt/usr/src/lib/krb5/ss/
help.c 35 int fd, child; local
82 switch (child = fork()) {
92 while (wait((int *)NULL) != child) {
94 while (wait((union wait *)NULL) != child) {
  /netvirt/usr/src/lib/libbc/libc/gen/common/
popen.c 52 /* myside and hisside reverse roles in child */
83 int child = -1; local
87 child = popen_pid[fileno(ptr)];
91 if (child == -1)
94 while ((pid = waitpid(child, &status, 0)) != child && pid != -1)
  /netvirt/usr/src/cmd/dtrace/test/cmd/badioctl/
badioctl.c 117 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",
  /netvirt/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/type/
TypeEditor.java 70 // List of child type editors
121 * The values from the child type editors need not be queried
132 * This method is called when the child's value has been applied.
135 * record the new value for the child in your state. Then,
136 * when getApplyValue is called, the new value from the child
139 protected void childApply(TypeEditor child, Object value) { }
146 * The loading of the child editors is dealt with using the
154 * Return true if the given child should be enabled for the
158 protected boolean shouldEnableChild(TypeEditor child,
167 * is not overridden, then the child values will be set to null
210 TypeEditor child = (TypeEditor)e.nextElement(); local
313 TypeEditor child = (TypeEditor)e.nextElement(); local
330 TypeEditor child = (TypeEditor)e.nextElement(); local
392 TypeEditor child = (TypeEditor)e.nextElement(); local
441 TypeEditor child = (TypeEditor)e.nextElement(); local
    [all...]
  /netvirt/usr/src/uts/common/io/pcmcia/
pcmem.c 282 "pcmem_ctlops - DDI_CTLOPS_UNINITCHILD child: %s(%d)\n",
301 dev_info_t *child = NULL; local
306 if (ndi_devi_alloc(dip, "pcram", (pnode_t)DEVI_SID_NODEID, &child) !=
313 if (ndi_devi_online(child, 0) == NDI_FAILURE) {
316 (void) ndi_devi_free(child);
  /netvirt/usr/src/cmd/cmd-inet/usr.bin/ftp/
pclose.c 114 /* myside and remside reverse roles in child */
145 pid_t child, pid; local
150 child = popen_pid[fileno(ptr)];
153 if (child == (pid_t)-1)
157 while ((pid = wait(&status)) != child && pid != (pid_t)-1)
  /netvirt/usr/src/cmd/tsol/updatehome/
setupfiles.c 351 pid_t child; local
414 if ((child = vfork()) != 0) { /* parent, wait for child status */
415 int status; /* child status */
417 (void) waitpid(child, &status, 0); /* wait for child */
418 dprintf("setupfiles copy child returned %x\n", status);
  /netvirt/usr/src/lib/libzfs/common/
libzfs_config.c 178 nvlist_t *child; local
193 verify(nvpair_value_nvlist(elem, &child) == 0);
194 if (nvlist_dup(child, &cn->cn_config, 0) != 0) {
libzfs_status.c 112 nvlist_t **child; local
127 if (nvlist_lookup_nvlist_array(vdev, ZPOOL_CONFIG_CHILDREN, &child,
130 if (find_vdev_problem(child[c], func))
  /netvirt/usr/src/psm/promif/ieee1275/common/
prom_node.c 58 ci[0] = p1275_ptr2cell("child"); /* Service name */
68 return (p1275_cell2dnode(ci[4])); /* Res1: child phandle */
91 pnode_t child; local
115 * If curnode has a child, traverse to it,
118 child = prom_childnode(curnode);
119 if (child != OBP_NONODE && child != OBP_BADNODE) {
121 stack[stackidx] = child;
  /netvirt/usr/src/uts/common/io/ib/ibtl/
ibtl_ibnex.c 81 dev_info_t *child; local
120 child = clntp->clnt_dip;
145 if (child == NULL) {
161 parent = ddi_get_parent(child);
163 ddi_get_parent_data(child) == NULL) {
169 node_name = ddi_node_name(child);
178 callback(child, &ret_apid);
187 if (child == NULL) {
195 * if the child has a alternate HCA then skip it
208 parent = ddi_get_parent(child);
    [all...]
  /netvirt/usr/src/uts/sun4v/promif/
promif_node.c 114 pnode_t child; local
118 child = promif_stree_childnode(p1275_cell2dnode(ci[3]));
120 ci[4] = p1275_dnode2cell(child);
  /netvirt/usr/src/cmd/csh/
sh.sem.c 33 * Its presence would cause glob() to be invoked in the child process
34 * and this would cause chaos if the child is created with vfork().
166 int mask, child, setintr, haderr, didfds; member in struct:sv
173 * that the child corrupts before it exec's.
178 * the signals the child touches before it
182 sv.child = child; sv.setintr = setintr;
198 child = sv.child; setintr = sv.setintr;
216 } else { /* child */
    [all...]
  /netvirt/usr/src/cmd/eeprom/i386/
benv_kvm.c 82 child(unsigned long id) function
112 if (nid = prom_findnode_byname(child(id), name))
  /netvirt/usr/src/cmd/fm/schemes/zfs/
scheme.c 95 nvlist_t **child; local
105 &child, &children) != 0)
109 if ((ret = find_vdev_iter(child[c], search)) != 0)
  /netvirt/usr/src/cmd/script/
script.c 54 int child; variable
112 child = fork();
113 if (child < 0) {
117 if (child == 0) {
118 subchild = child = fork();
119 if (child < 0) {
123 if (child)
174 if (pid == child)
  /netvirt/usr/src/cmd/sendmail/db/btree/
bt_delete.c 414 PAGE *child, *parent; local
499 parent = child = NULL;
518 /* Lock the child page. */
522 if ((ret = memp_fget(dbp->mpf, &pgno, 0, &child)) != 0)
528 a.data = child;
534 &child->lsn, 0, dbp->log_fileid, child->pgno, &a,
546 * stores its LSN on the child page. When the child is copied
551 if (TYPE(child) == P_IRECNO |
    [all...]

Completed in 2090 milliseconds

1 2 3 4 5 6