Home
last modified time | relevance | path

Searched refs:err_len (Results 1 – 6 of 6) sorted by relevance

/external/lldb/tools/debugserver/source/
DDNB.cpp190 size_t err_len) in DNBProcessLaunch() argument
205 (uint64_t)err_len); in DNBProcessLaunch()
207 if (err_str && err_len > 0) in DNBProcessLaunch()
214 snprintf(err_str, err_len, "%s (%s)", stat_error, path); in DNBProcessLaunch()
241 strncpy(err_str, launch_err_str, err_len-1); in DNBProcessLaunch()
242 err_str[err_len-1] = '\0'; // Make sure the error string is terminated in DNBProcessLaunch()
262 if (err_str && err_len > 0) in DNBProcessLaunch()
266 …::snprintf (err_str, err_len, "failed to get the task for process %i (%s)", pid, launch_err.AsStri… in DNBProcessLaunch()
270 ::snprintf (err_str, err_len, "failed to get the task for process %i", pid); in DNBProcessLaunch()
286 DNBProcessAttachByName (const char *name, struct timespec *timeout, char *err_str, size_t err_len) in DNBProcessAttachByName() argument
[all …]
DDNB.h44 size_t err_len) DNB_EXPORT;
46 …ach (nub_process_t pid, struct timespec *timeout, char *err_str, size_t err_len) DNB_EXPORT;
47 …tachByName (const char *name, struct timespec *timeout, char *err_str, size_t err_len) DNB_EXPORT;
48 …ng, struct timespec *timeout, useconds_t interval, char *err_str, size_t err_len, DNBShouldCancelC…
/external/lldb/source/Plugins/Process/FreeBSD/
DProcessMonitor.cpp867 const size_t err_len = 1024; in Launch() local
868 char err_str[err_len]; in Launch()
879 if (!terminal.OpenFirstAvailableMaster(O_RDWR | O_NOCTTY, err_str, err_len)) in Launch()
886 if ((pid = terminal.Fork(err_str, err_len)) == -1) in Launch()
/external/lldb/tools/debugserver/source/MacOSX/
DMachProcess.h48 pid_t AttachForDebug (pid_t pid, char *err_str, size_t err_len);
DMachProcess.cpp1458 MachProcess::AttachForDebug (pid_t pid, char *err_str, size_t err_len) in AttachForDebug() argument
1470 ::snprintf (err_str, err_len, "%s", err_cstr ? err_cstr : "No such process"); in AttachForDebug()
1484 … ::snprintf (err_str, err_len, "%s", err_cstr ? err_cstr : "unable to start the exception thread"); in AttachForDebug()
1507 ::snprintf (err_str, err_len, "%s", err.AsString()); in AttachForDebug()
/external/lldb/source/Plugins/Process/Linux/
DProcessMonitor.cpp1096 const size_t err_len = 1024; in Launch() local
1097 char err_str[err_len]; in Launch()
1108 if (!terminal.OpenFirstAvailableMaster(O_RDWR | O_NOCTTY, err_str, err_len)) in Launch()
1115 if ((pid = terminal.Fork(err_str, err_len)) == -1) in Launch()