Lines Matching defs:fae
95 struct posix_spawn_file_actions_entry *fae,
99 switch (fae->fae_action) {
101 *pathp = &fae->fae_path;
105 *pathp = &fae->fae_chdir_path;
120 struct posix_spawn_file_actions_entry *fae;
140 fal = fa->len * sizeof(*fae);
143 fa->fae = kmem_alloc(fal, KM_SLEEP);
145 error = copyin(NETBSD32PTR64(fa32.fae), fae32, fal32);
151 fae = &fa->fae[i];
153 fae->fae_action = (unsigned)f32->fae_action;
154 fae->fae_fildes = f32->fae_fildes;
155 if (fae->fae_action == FAE_DUP2)
156 fae->fae_data.dup2.newfildes =
158 if (!netbsd32_posix_spawn_fae_path(fae, f32, &pathp, &pathp32)
166 fae->fae_oflag = f32->fae_oflag;
167 fae->fae_mode = f32->fae_mode;