Searched refs:parent (Results 51 - 61 of 61) sorted by relevance

123

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_sig.c1813 * If proc is traced, always give parent a chance.
1901 * issig() and stop for the parent.
2029 * when sent to the parent must set the
2374 * If parent wants us to take the signal,
2632 * Put the argument process into the stopped state and notify the parent
2637 stop(proc_t p, proc_t parent) argument
2640 if ((parent != PROC_NULL) && (parent->p_stat != SSTOP)) {
2642 wakeup((caddr_t)parent);
H A Dkern_fork.c138 void thread_set_parent(thread_t parent, int pid);
211 * !0 pid of child (to parent process)
218 * Note: After a successful call to this function, the parent process
227 * changes in the parent state, and, if inheritable, the child
317 * Parameters: parent_proc parent process of the process being
327 * parent and the child; the child copies
328 * the parent address space.
330 * return actively running in the parent
336 * borrow the parent task, thread, and
340 * the child is terminated, and the parent
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Dproc_internal.h211 struct proc * p_pptr; /* Pointer to parent process.(LL) */
212 pid_t p_ppid; /* process's parent pid number */
257 int p_childrencnt; /* children holding ref on parent (LL) */
258 int p_parentref; /* children lookup ref on parent (LL) */
260 pid_t p_oppid; /* Save parent pid during ptrace. XXX */
502 pid_t p_oppid; /* Save parent pid during ptrace. XXX */
554 pid_t p_oppid; /* Save parent pid during ptrace. XXX */
678 extern void pinsertchild(struct proc *parent, struct proc *child);
H A Ddtrace.h327 #define DIF_VAR_PPID 0x011d /* parent process ID */
2431 extern void (*dtrace_helpers_fork)(proc_t *parent, proc_t *child);
/darwin-on-arm/xnu/bsd/net/
H A Dpf_ioctl.c1140 dst->parent[sizeof (dst->parent) - 1] = '\0';
2846 /* set rule & ruleset to parent and repeat */
2850 #define parent_ruleset ruleset->anchor->parent->ruleset
2851 if (ruleset->anchor->parent == NULL)
2952 ruleset = ruleset->anchor->parent?
2953 &ruleset->anchor->parent->ruleset:&pf_main_ruleset;
2959 panic("%s: parent rule of anchor not found!", __func__);
4194 if (anchor->parent == NULL)
4218 if (anchor->parent
[all...]
H A Dpfvar.h1208 struct pf_anchor *parent; member in struct:pf_anchor
1687 char parent[PF_QNAME_SIZE]; /* parent name */ member in struct:pf_altq
1688 u_int32_t parent_qid; /* parent queue id */
H A Dpf.c174 struct pf_anchor_node *parent; member in struct:pf_anchor_stackframe
2816 f->parent = &(*r)->anchor->children;
2817 if ((f->child = RB_MIN(pf_anchor_node, f->parent)) ==
2824 f->parent = NULL;
2842 if (f->parent != NULL && f->child != NULL) {
2848 f->child = RB_NEXT(pf_anchor_node, f->parent, f->child);
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_catalog.c1031 * Insert was successful, update name, parent and volume
1379 * 3. BTUpdateRecord(parent);
1817 * catalog btree of given cnid by walking up the parent chain till it reaches
1880 /* This function traverses the parent directory hierarchy from the given
1914 invalid = 1; /* On errors, assume an invalid parent */
1919 invalid = 1; /* On errors, assume an invalid parent */
2073 cnid_t parent; local
2075 parent = ((HFSPlusCatalogKey *)&iterator->key)->parentID;
2078 if (parent == hfsmp->hfs_private_desc[DIR_HARDLINKS].cd_cnid) {
2080 } else if (parent
[all...]
/darwin-on-arm/xnu/iokit/IOKit/
H A DIOService.h877 @discussion This function called in an IOService client removes the client as a child of the provider in the service plane of the I/O Registry. If the provider is not a parent of the client this is a no-op, otherwise the I/O Registry releases both the client and provider.
1477 @abstract Broadcasts an aggressiveness factor from the parent of a driver to the driver.
1526 IOPowerConnection * parent,
1592 @discussion A device's "current power state" is updated at the end of each power state transition (e.g. transition from state 1 to state 0, or state 0 to state 2). This transition includes the time spent powering on or off any power plane children. Thus, if a child calls <code>getPowerState</code> on its power parent during system wake from sleep, the call will return the index to the device's off state rather than its on state.
1778 // downward power change initiated by a power parent
/darwin-on-arm/xnu/security/
H A Dmac_policy.h390 Create the subject credential of process 0, the parent of all BSD
403 information in the supplied parent credential.
417 Create the subject credential of process 1, the parent of all BSD
2641 or even what the input labels represent (Subject and parent object are only
3304 cause the parent process to hang, or may produce zombie processes.
4646 @param parent Parent task
4648 @param parentlabel Label of parent task
4658 struct task *parent,
4864 a vnode with the passed parent directory, passed name information,
5537 bind operation on a UNIX domain socket with the passed parent director
[all...]
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c4537 * If our parent is NULL (that is, if we're the root
15798 dtrace_lazy_dofs_duplicate(proc_t *parent, proc_t *child)
15801 lck_mtx_assert(&parent->p_dtrace_sprlock, LCK_MTX_ASSERT_NOTOWNED);
15805 lck_mtx_lock(&parent->p_dtrace_sprlock);
15812 ASSERT(parent->p_dtrace_lazy_dofs == NULL || dtrace_dof_mode == DTRACE_DOF_MODE_LAZY_ON);
15813 ASSERT(parent->p_dtrace_lazy_dofs == NULL || parent->p_dtrace_helpers == NULL);
15819 dof_ioctl_data_t* parent_dofs = parent->p_dtrace_lazy_dofs;
15827 lck_mtx_unlock(&parent->p_dtrace_sprlock);

Completed in 109 milliseconds

123