Lines Matching refs:status
163 mei_err(me, "read failed with status %zd %s\n",
188 mei_err(me, "write failed with status %zd %s\n",
199 mei_err(me, "write failed on timeout with status\n");
202 mei_err(me, "write failed on select with status %zd\n", rc);
269 uint32_t status;
310 uint32_t status = AMT_STATUS_SUCCESS;
318 /* length - sizeof(status) */
324 status = AMT_STATUS_INTERNAL_ERROR;
332 status = AMT_STATUS_INTERNAL_ERROR;
339 status = AMT_STATUS_INTERNAL_ERROR;
344 return status;
375 uint32_t status;
394 status = msg_hdr->status;
395 if (status != AMT_STATUS_SUCCESS)
396 return status;
398 status = amt_verify_response_header(rcmd,
400 if (status != AMT_STATUS_SUCCESS)
401 return status;
414 uint32_t status;
416 status = amt_host_if_call(cmd,
422 if (status != AMT_STATUS_SUCCESS)
425 status = amt_verify_code_versions(response);
426 if (status != AMT_STATUS_SUCCESS)
434 return status;
443 uint32_t status;
454 status = amt_get_code_versions(&acmd, &ver);
458 switch (status) {