Lines Matching refs:response
37 static int diag8_response(int cmdlen, char *response, int *rlen) in diag8_response() argument
40 register unsigned long reg3 asm ("3") = (addr_t) response; in diag8_response()
62 int __cpcmd(const char *cmd, char *response, int rlen, int *response_code) in __cpcmd() argument
73 if (response) { in __cpcmd()
74 memset(response, 0, rlen); in __cpcmd()
76 rc = diag8_response(cmdlen, response, &rlen); in __cpcmd()
77 EBCASC(response, response_len); in __cpcmd()
87 int cpcmd(const char *cmd, char *response, int rlen, int *response_code) in cpcmd() argument
93 if ((virt_to_phys(response) != (unsigned long) response) || in cpcmd()
94 (((unsigned long)response + rlen) >> 31)) { in cpcmd()
104 memcpy(response, lowbuf, rlen); in cpcmd()
108 len = __cpcmd(cmd, response, rlen, response_code); in cpcmd()