Lines Matching refs:err_msg
494 char err_msg[FDIO_SPAWN_ERR_MSG_MAX_LENGTH]; in evalsubshell() local
495 zx_status_t exec_result = process_subshell(n, envp, &process, jp->zx_job_hndl, NULL, err_msg); in evalsubshell()
501 …"Failed to create subshell: %d (%s): %s", exec_result, zx_status_get_string(exec_result), err_msg); in evalsubshell()
590 char err_msg[FDIO_SPAWN_ERR_MSG_MAX_LENGTH]; in evalpipe() local
592 …zx_status_t status = process_subshell(lp->n, envp, &processes[idx], jp->zx_job_hndl, fds, err_msg); in evalpipe()
602 sh_error("Failed to create shell: %d (%s): %s", status, zx_status_get_string(status), err_msg); in evalpipe()
645 char err_msg[FDIO_SPAWN_ERR_MSG_MAX_LENGTH]; in evalbackcmd() local
648 zx_status_t status = process_subshell(n, envp, &process, jp->zx_job_hndl, &fds[0], err_msg); in evalbackcmd()
652 sh_error("Failed to create subshell: %d (%s): %s", status, zx_status_get_string(status), err_msg); in evalbackcmd()
874 char err_msg[FDIO_SPAWN_ERR_MSG_MAX_LENGTH]; in evalcommand() local
875 …unch((const char* const*)argv, path, cmdentry.u.index, &process, zx_job_hndl, &zx_status, err_msg); in evalcommand()
877 …r("Cannot create child process: %d (%s): %s", zx_status, zx_status_get_string(zx_status), err_msg); in evalcommand()