Searched refs:__environ (Results 1 – 25 of 28) sorted by relevance
12
/third_party/musl/src/env/ |
D | putenv.c | 11 if (__environ) { in __putenv() 12 for (char **e = __environ; *e; e++, i++) in __putenv() 22 if (__environ == oldenv) { in __putenv() 28 if (i) memcpy(newenv, __environ, sizeof *newenv * i); in __putenv() 33 __environ = oldenv = newenv; in __putenv()
|
D | __environ.c | 3 char **__environ = 0; variable 4 weak_alias(__environ, ___environ); 5 weak_alias(__environ, _environ); 6 weak_alias(__environ, environ);
|
D | clearenv.c | 10 char **e = __environ; in clearenv() 11 __environ = 0; in clearenv()
|
D | getenv.c | 7 if (name == NULL || __environ == NULL) in getenv() 13 for (p = __environ; (ep = *p) != NULL; ++p) { in getenv()
|
D | unsetenv.c | 22 if (__environ) { in unsetenv() 23 char **e = __environ, **eo = e; in unsetenv()
|
D | __libc_start_main.c | 29 __environ = envp; in __init_libc()
|
/third_party/musl/src/process/ |
D | execv.c | 3 extern char **__environ; 7 return execve(path, argv, __environ); in execv()
|
D | execvp.c | 7 extern char **__environ; 57 return __execvpe(file, argv, __environ); in execvp()
|
D | system.c | 10 extern char **__environ; 38 (char *[]){"sh", "-c", (char *)cmd, 0}, __environ); in system()
|
/third_party/musl/porting/linux/user/src/env/ |
D | getenv.c | 7 if (name == NULL || __environ == NULL) in getenv() 13 for (p = __environ; (ep = *p) != NULL; ++p) { in getenv()
|
D | __libc_start_main.c | 27 __environ = envp; in __init_libc()
|
/third_party/musl/porting/liteos_a/user/src/process/ |
D | system.c | 10 extern char **__environ; 39 (char *[]){"sh", "-c", (char *)cmd, 0}, __environ); in system()
|
/third_party/musl/src/stdio/ |
D | popen.c | 10 extern char **__environ; 44 (char *[]){ "sh", "-c", (char *)cmd, 0 }, __environ))) { in popen()
|
/third_party/musl/porting/liteos_a/user/src/stdio/ |
D | popen.c | 10 extern char **__environ; 44 (char *[]){ "sh", "-c", (char *)cmd, 0 }, __environ))) { in popen()
|
/third_party/musl/porting/liteos_a/kernel/src/include/ |
D | unistd.h | 6 extern char **__environ;
|
/third_party/musl/src/include/ |
D | unistd.h | 6 extern char **__environ;
|
/third_party/musl/ |
D | dynamic.list | 3 __environ;
|
D | libc.map.txt | 42 __environ;
|
D | musl_src.gni | 383 "src/env/__environ.c",
|
/third_party/musl/porting/liteos_a/user/src/env/ |
D | __libc_start_main.c | 26 __environ = envp; in __init_libc()
|
/third_party/musl/porting/liteos_a/user_debug/src/env/ |
D | __libc_start_main.c | 27 __environ = envp; in __init_libc()
|
/third_party/musl/porting/liteos_a/user/ldso/ |
D | dynlink.c | 1762 __environ = envp; in __dls3()
|
/third_party/musl/porting/liteos_a/user_debug/ldso/ |
D | dynlink.c | 1761 __environ = envp; in __dls3()
|
/third_party/musl/ldso/ |
D | dynlink.c | 1788 __environ = envp;
|
/third_party/musl/ldso/linux/ |
D | dynlink.c | 2886 __environ = envp; in __dls3()
|
12