Home | History | Annotate | Download | only in MacOSX

Lines Matching full:err_str

42 static CFStringRef CopyBundleIDForPath (const char *app_buncle_path, DNBError &err_str);
1458 MachProcess::AttachForDebug (pid_t pid, char *err_str, size_t err_len)
1470 ::snprintf (err_str, err_len, "%s", err_cstr ? err_cstr : "No such process");
1484 ::snprintf (err_str, err_len, "%s", err_cstr ? err_cstr : "unable to start the exception thread");
1507 ::snprintf (err_str, err_len, "%s", err.AsString());
1524 MachProcess::PrepareForAttach (const char *path, nub_launch_flavor_t launch_flavor, bool waitfor, DNBError &err_str)
1546 CFStringRef bundleIDCFStr = CopyBundleIDForPath (app_bundle_path.c_str (), err_str);
1549 DNBLogThreadedIf(LOG_PROCESS, "CopyBundleIDForPath (%s, err_str) returned @\"%s\"", app_bundle_path.c_str (), bundleIDStr.c_str());
1573 err_str.SetError(sbs_error, DNBError::SpringBoard);
1613 MachProcess::CleanupAfterAttach (const void *attach_token, bool success, DNBError &err_str)
1636 err_str.SetError(sbs_error, DNBError::SpringBoard);
2119 CopyBundleIDForPath (const char *app_bundle_path, DNBError &err_str)
2131 err_str.SetError(errno, DNBError::POSIX);
2132 snprintf(err_msg, sizeof(err_msg), "%s: \"%s\"", err_str.AsString(), app_bundle_path);
2133 err_str.SetErrorString(err_msg);
2138 err_str.SetError(-1, DNBError::Generic);
2140 err_str.SetErrorString(err_msg);