Searched defs:exe_path (Results 1 - 8 of 8) sorted by relevance

/external/lldb/source/Plugins/Platform/Linux/
H A DPlatformLinux.cpp157 char exe_path[PATH_MAX]; local
166 exe_file.GetPath(exe_path, sizeof(exe_path));
167 resolved_exe_file.SetFile(exe_path, true);
177 exe_file.GetPath(exe_path, sizeof(exe_path));
178 error.SetErrorStringWithFormat("unable to find executable for '%s'", exe_path);
197 error.SetErrorStringWithFormat("the platform is not currently connected, and '%s' doesn't exist in the system root.", exe_path);
/external/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp166 char exe_path[PATH_MAX]; local
175 exe_file.GetPath(exe_path, sizeof(exe_path));
176 resolved_exe_file.SetFile(exe_path, true);
186 exe_file.GetPath(exe_path, sizeof(exe_path));
187 error.SetErrorStringWithFormat("unable to find executable for '%s'", exe_path);
211 exe_file.GetPath(exe_path, sizeof(exe_path));
212 error.SetErrorStringWithFormat("the platform is not currently connected, and '%s' doesn't exist in the system root.", exe_path);
[all...]
/external/pdfium/testing/
H A Dembedder_test.cpp66 static std::string GetFullPathForSnapshotFile(const std::string& exe_path, argument
69 if (!exe_path.empty()) {
70 size_t last_separator = exe_path.rfind(PATH_SEPARATOR);
72 result = exe_path.substr(0, last_separator + 1);
81 static bool GetExternalData(const std::string& exe_path, argument
84 std::string full_path = GetFullPathForSnapshotFile(exe_path, filename);
/external/lldb/source/Commands/
H A DCommandObjectPlatform.cpp413 char exe_path[PATH_MAX]; local
414 if (m_options.launch_info.GetExecutableFile ().GetPath (exe_path, sizeof(exe_path)))
415 m_options.launch_info.GetArguments().AppendArgument (exe_path);
H A DCommandObjectTarget.cpp66 char exe_path[PATH_MAX]; local
69 exe_valid = exe_module->GetFileSpec().GetPath (exe_path, sizeof(exe_path));
72 ::strcpy (exe_path, "<none>");
74 strm.Printf ("%starget #%u: %s", prefix_cstr ? prefix_cstr : "", target_idx, exe_path);
/external/lldb/source/Host/linux/
H A DHost.cpp331 GetELFProcessCPUType (const char *exe_path, ProcessInstanceInfo &process_info) argument
337 FileSpec filespec (exe_path, false);
364 char exe_path[PATH_MAX] = ""; local
368 ssize_t len = readlink (link_path, exe_path, sizeof(exe_path) - 1);
373 exe_path[len] = 0;
379 !strcmp(exe_path + len - deleted_len, " (deleted)"))
381 exe_path[len - deleted_len] = 0;
385 GetELFProcessCPUType (exe_path, process_info);
389 process_info.GetExecutableFile().SetFile(exe_path, fals
[all...]
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp134 char exe_path[PATH_MAX]; local
143 exe_file.GetPath (exe_path, sizeof(exe_path));
144 resolved_exe_file.SetFile(exe_path, true);
157 exe_file.GetPath (exe_path, sizeof(exe_path));
158 error.SetErrorStringWithFormat ("unable to find executable for '%s'", exe_path);
/external/pdfium/samples/
H A Dpdfium_test.cc47 std::string exe_path; member in struct:Options
90 } else if (!options.exe_path.empty()) {
91 size_t last_separator = options.exe_path.rfind(PATH_SEPARATOR);
93 result = options.exe_path.substr(0, last_separator + 1);
334 options->exe_path = args[0];

Completed in 1527 milliseconds