Searched refs:shell_name (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lldb/source/Plugins/Platform/NetBSD/ |
D | PlatformNetBSD.cpp | 208 const char *shell_name = strrchr(shell_string.c_str(), '/'); in GetResumeCountForLaunchInfo() local 209 if (shell_name == nullptr) in GetResumeCountForLaunchInfo() 210 shell_name = shell_string.c_str(); in GetResumeCountForLaunchInfo() 212 shell_name++; in GetResumeCountForLaunchInfo() 214 if (strcmp(shell_name, "csh") == 0 || strcmp(shell_name, "tcsh") == 0 || in GetResumeCountForLaunchInfo() 215 strcmp(shell_name, "zsh") == 0 || strcmp(shell_name, "sh") == 0) { in GetResumeCountForLaunchInfo()
|
/external/llvm-project/lldb/source/Plugins/Platform/Linux/ |
D | PlatformLinux.cpp | 239 const char *shell_name = strrchr(shell_string.c_str(), '/'); in GetResumeCountForLaunchInfo() local 240 if (shell_name == nullptr) in GetResumeCountForLaunchInfo() 241 shell_name = shell_string.c_str(); in GetResumeCountForLaunchInfo() 243 shell_name++; in GetResumeCountForLaunchInfo() 245 if (strcmp(shell_name, "csh") == 0 || strcmp(shell_name, "tcsh") == 0 || in GetResumeCountForLaunchInfo() 246 strcmp(shell_name, "zsh") == 0 || strcmp(shell_name, "sh") == 0) { in GetResumeCountForLaunchInfo()
|
/external/shflags/ |
D | test_runner | 146 shell_name='' 153 shell_name=${shell} 157 shell_name=`basename "${shell}"` 161 runner_warn "unable to run tests with the ${shell_name} shell" 167 echo "shell name: ${shell_name}"
|
/external/selinux/sandbox/ |
D | seunshare.c | 229 static int verify_shell(const char *shell_name) in verify_shell() argument 234 if (!(shell_name && shell_name[0])) in verify_shell() 243 if (!strcmp(shell_name, buf)) { in verify_shell()
|
/external/llvm-project/lldb/source/Plugins/Platform/MacOSX/ |
D | PlatformDarwin.cpp | 1207 const char *shell_name = strrchr(shell_string.c_str(), '/'); in GetResumeCountForLaunchInfo() local 1208 if (shell_name == nullptr) in GetResumeCountForLaunchInfo() 1209 shell_name = shell_string.c_str(); in GetResumeCountForLaunchInfo() 1211 shell_name++; in GetResumeCountForLaunchInfo() 1213 if (strcmp(shell_name, "sh") == 0) { in GetResumeCountForLaunchInfo() 1220 } else if (strcmp(shell_name, "csh") == 0 || in GetResumeCountForLaunchInfo() 1221 strcmp(shell_name, "tcsh") == 0 || in GetResumeCountForLaunchInfo() 1222 strcmp(shell_name, "zsh") == 0) { in GetResumeCountForLaunchInfo()
|
/external/selinux/policycoreutils/newrole/ |
D | newrole.c | 384 static int verify_shell(const char *shell_name) in verify_shell() argument 389 if (!(shell_name && shell_name[0])) in verify_shell() 398 if (!strcmp(shell_name, buf)) { in verify_shell()
|
/external/fastrpc/src/ |
D | fastrpc_apps_user.c | 1544 const char* shell_name = SIGNED_SHELL; in open_shell() local 1547 shell_name = UNSIGNED_SHELL; in open_shell() 1557 shell_absNameLen = std_strlen(shell_name) + std_strlen(domain_str) + 1; in open_shell() 1560 std_strlcpy(shell_absName, shell_name, shell_absNameLen); in open_shell() 1578 FARF(HIGH, "Searching for %s%d ...", shell_name, domain); in open_shell()
|