Lines Matching refs:msg
48 __free_msg(num_msg, msg)
50 struct pam_message *msg;
55 if (msg) {
56 m = msg;
58 if (m->msg)
59 free(m->msg);
61 free(msg);
101 struct pam_message *msg;
108 msg = (struct pam_message *)calloc(num_msg,
110 if (msg == NULL) {
113 m = msg;
123 m->msg = (char *)malloc(PAM_MAX_MSG_SIZE);
124 if (m->msg != NULL)
125 (void) strcpy(m->msg, (const char *)messages[i]);
136 retcode = conv_funp(num_msg, &msg, &resp, conv_apdp);
137 __free_msg(num_msg, msg);
156 struct pam_message *msg;
165 msg = (struct pam_message *)calloc(num_msg,
167 if (msg == NULL) {
170 m = msg;
177 m->msg = (char *)malloc(PAM_MAX_MSG_SIZE);
178 if (m->msg != NULL)
179 (void) strcpy(m->msg, (char *)messages[i]);
190 retcode = conv_funp(num_msg, &msg, ret_respp, conv_apdp);
191 __free_msg(num_msg, msg);