Searched refs:envp (Results 1 - 21 of 21) sorted by relevance

/seL4-refos-master/libs/libmuslc/src/fenv/
H A Dfeholdexcept.c3 int feholdexcept(fenv_t *envp) argument
5 fegetenv(envp);
H A Dfeupdateenv.c3 int feupdateenv(const fenv_t *envp) argument
6 fesetenv(envp);
H A Dfenv.c30 int fegetenv(fenv_t *envp) argument
35 int fesetenv(const fenv_t *envp) argument
/seL4-refos-master/libs/libmuslc/src/process/
H A Dexecve.c4 int execve(const char *path, char *const argv[], char *const envp[]) argument
6 /* do we need to use environ if envp is null? */
7 return syscall(SYS_execve, path, argv, envp);
H A Dfexecve.c6 int fexecve(int fd, char *const argv[], char *const envp[]) argument
10 execve(buf, argv, envp);
H A Dposix_spawnp.c14 char *const argv[restrict], char *const envp[restrict])
16 return __posix_spawnx(res, file, __execvpe, fa, attr, argv, envp);
11 posix_spawnp(pid_t *restrict res, const char *restrict file, const posix_spawn_file_actions_t *fa, const posix_spawnattr_t *restrict attr, char *const argv[restrict], char *const envp[restrict]) argument
H A Dexecle.c14 char **envp; local
19 envp = va_arg(ap, char **);
21 return execve(path, argv, envp);
H A Dexecvp.c10 int __execvpe(const char *file, char *const argv[], char *const envp[]) argument
20 return execve(file, argv, envp);
41 execve(b, argv, envp);
H A Dposix_spawn.c20 char *const *argv, *const *envp; member in struct:args
133 args->exec(args->path, args->argv, args->envp);
148 char *const argv[restrict], char *const envp[restrict])
165 args.envp = envp;
192 char *const argv[restrict], char *const envp[restrict])
194 return __posix_spawnx(res, path, execve, fa, attr, argv, envp);
144 __posix_spawnx(pid_t *restrict res, const char *restrict path, int (*exec)(const char *, char *const *, char *const *), const posix_spawn_file_actions_t *fa, const posix_spawnattr_t *restrict attr, char *const argv[restrict], char *const envp[restrict]) argument
189 posix_spawn(pid_t *restrict res, const char *restrict path, const posix_spawn_file_actions_t *fa, const posix_spawnattr_t *restrict attr, char *const argv[restrict], char *const envp[restrict]) argument
/seL4-refos-master/libs/libmuslc/src/fenv/s390x/
H A Dfenv.c45 int fegetenv(fenv_t *envp) argument
47 *envp = get_fpc();
51 int fesetenv(const fenv_t *envp) argument
53 set_fpc(envp != FE_DFL_ENV ? *envp : 0);
/seL4-refos-master/libs/libmuslc/src/fenv/powerpc64/
H A Dfenv.c58 int fegetenv(fenv_t *envp)
60 *envp = get_fpscr_f();
64 int fesetenv(const fenv_t *envp)
66 set_fpscr_f(envp != FE_DFL_ENV ? *envp : 0);
/seL4-refos-master/libs/libmuslc/src/env/
H A D__libc_start_main.c22 void __init_libc(char **envp, char *pn) argument
25 __environ = envp;
26 for (i=0; envp[i]; i++);
27 libc.auxv = auxv = (void *)(envp+i+1);
68 char **envp = argv+argc+1; local
70 __init_libc(envp, argv[0]);
74 exit(main(argc, argv, envp));
/seL4-refos-master/projects/refos/impl/apps/nethack/src/nethack-3.4.3/src/
H A Dfiles.c1508 char *envp; local
1564 envp = nh_getenv("HOME");
1565 if (!envp)
1568 Sprintf(tmp_config, "%s%s", envp, "NetHack.cnf");
1572 envp = nh_getenv("HOME");
1573 if (!envp)
1576 Sprintf(tmp_config, "%s/%s", envp, configfile);
1581 if (envp) {
1582 Sprintf(tmp_config, "%s/%s", envp, "Library/Preferences/NetHack Defaults");
1585 Sprintf(tmp_config, "%s/%s", envp, "Librar
2069 char *envp; local
[all...]
/seL4-refos-master/apps/nethack/src/nethack-3.4.3/src/
H A Dfiles.c1508 char *envp; local
1564 envp = nh_getenv("HOME");
1565 if (!envp)
1568 Sprintf(tmp_config, "%s%s", envp, "NetHack.cnf");
1572 envp = nh_getenv("HOME");
1573 if (!envp)
1576 Sprintf(tmp_config, "%s/%s", envp, configfile);
1581 if (envp) {
1582 Sprintf(tmp_config, "%s/%s", envp, "Library/Preferences/NetHack Defaults");
1585 Sprintf(tmp_config, "%s/%s", envp, "Librar
2069 char *envp; local
[all...]
/seL4-refos-master/projects/refos/impl/apps/selfloader/src/
H A Dselfloader.c384 char *envp[] = {ipc_buf_env, system_call_table_env}; local
389 stack_top = stack_copy_args(stack_top, envc, envp, dest_envp);
/seL4-refos-master/apps/selfloader/src/
H A Dselfloader.c384 char *envp[] = {ipc_buf_env, system_call_table_env}; local
389 stack_top = stack_copy_args(stack_top, envc, envp, dest_envp);
/seL4-refos-master/libs/libsel4muslcsys/src/
H A Dvsyscall.c314 extern void __init_libc(char const *const *envp, char const *pn);
/seL4-refos-master/projects/seL4_libs/libsel4muslcsys/src/
H A Dvsyscall.c314 extern void __init_libc(char const *const *envp, char const *pn);
/seL4-refos-master/libs/libsel4utils/src/
H A Dprocess.c276 /* define an envp and auxp */
279 char *envp[] = {}; local
326 error = sel4utils_stack_copy_args(vspace, &process->vspace, vka, envc, envp, dest_envp, &initial_stack_pointer);
/seL4-refos-master/projects/seL4_libs/libsel4utils/src/
H A Dprocess.c276 /* define an envp and auxp */
279 char *envp[] = {}; local
326 error = sel4utils_stack_copy_args(vspace, &process->vspace, vka, envc, envp, dest_envp, &initial_stack_pointer);
/seL4-refos-master/libs/libmuslc/ldso/
H A Ddynlink.c1402 char **envp = argv+argc+1; local
1406 __environ = envp;

Completed in 145 milliseconds