Lines Matching refs:envp
85 char* const* envp; member
709 if (!context->envp || !name || !*name) return nullptr; in getenv()
711 for (size_t len = strlen(name), i = 0; context->envp[i]; ++i) { in getenv()
712 if (strncmp(context->envp[i], name, len)) continue; in getenv()
713 if (context->envp[i][len] == '=') return &context->envp[i][len + 1]; in getenv()
1698 char* const* envp) { in android_logcat_run_command() argument
1705 context->envp = envp; in android_logcat_run_command()
1714 char* const* envp) { in android_logcat_run_command_thread() argument
1748 if (envp) for (size_t i = 0; envp[i]; ++i) { in android_logcat_run_command_thread()
1749 context->envs.push_back(std::string(envp[i])); in android_logcat_run_command_thread()
1763 context->envp = (char* const*)&context->envp_hold[0]; in android_logcat_run_command_thread()