Lines Matching refs:response
38 static int diag8_response(int cmdlen, char *response, int *rlen) in diag8_response() argument
41 register unsigned long reg3 asm ("3") = (addr_t) response; in diag8_response()
63 int __cpcmd(const char *cmd, char *response, int rlen, int *response_code) in __cpcmd() argument
75 if (response) { in __cpcmd()
76 memset(response, 0, rlen); in __cpcmd()
78 rc = diag8_response(cmdlen, response, &rlen); in __cpcmd()
79 EBCASC(response, response_len); in __cpcmd()
89 int cpcmd(const char *cmd, char *response, int rlen, int *response_code) in cpcmd() argument
95 if ((virt_to_phys(response) != (unsigned long) response) || in cpcmd()
96 (((unsigned long)response + rlen) >> 31)) { in cpcmd()
106 memcpy(response, lowbuf, rlen); in cpcmd()
110 len = __cpcmd(cmd, response, rlen, response_code); in cpcmd()