• Home
  • Raw
  • Download

Lines Matching refs:err_len

190                   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
288 if (err_str && err_len > 0) in DNBProcessAttachByName()
306 return DNBProcessAttach (matching_proc_infos[0].kp_proc.p_pid, timeout, err_str, err_len); in DNBProcessAttachByName()
310 DNBProcessAttach (nub_process_t attach_pid, struct timespec *timeout, char *err_str, size_t err_len) in DNBProcessAttach() argument
312 if (err_str && err_len > 0) in DNBProcessAttach()
320 pid = processSP->AttachForDebug (attach_pid, err_str, err_len); in DNBProcessAttach()
350 if (err_str && err_len > 0) in DNBProcessAttach()
351 snprintf(err_str, err_len, "operation timed out"); in DNBProcessAttach()
383 if (err_str && err_len > 0) in DNBProcessAttach()
384 snprintf(err_str, err_len, "process exited"); in DNBProcessAttach()
526 size_t err_len, in DNBProcessAttachWait() argument
613 if (err_str && err_len > 0) in DNBProcessAttachWait()
614 snprintf(err_str, err_len, "operation timed out"); in DNBProcessAttachWait()
637 waitfor_pid = DNBProcessAttach (waitfor_pid, timeout_abstime, err_str, err_len); in DNBProcessAttachWait()