Lines Matching defs:resp
64 struct pam_response *resp;
70 resp = calloc(num_msg, sizeof(struct pam_response));
71 if (resp == NULL)
101 if (resp[i].resp != NULL) {
102 safe_memset(resp[i].resp, 0,
103 strlen(resp[i].resp));
104 free(resp[i].resp);
108 free(resp);
112 resp[i].resp_retcode = PAM_SUCCESS;
113 resp[i].resp = string;
116 *resp_r = resp;