/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/ |
RealmCallbackTest.java | 34 private static final String[] prompts = { field in class:RealmCallbackTest 35 "Prompts", 82 for (int i = 0; i < prompts.length; i++) { 83 for (int j = 0; j < prompts.length; j++) { 84 rCB = new RealmCallback(prompts[i], defInfo[j]); 87 assertEquals("Incorrect prompt", rCB.getPrompt(), prompts[i]); 89 sb.replace(0, sb.length(), prompts[i]); 126 for (int i = 0; i < prompts.length; i++) { 127 rCB = new RealmCallback(prompts[i]); 129 assertEquals("Incorrect prompt", rCB.getPrompt(), prompts[i]) [all...] |
RealmChoiceCallbackTest.java | 34 private static final String[] prompts = { field in class:RealmChoiceCallbackTest 35 "Prompts", 114 for (int i = 0; i < prompts.length; i++) { 115 rCCB = new RealmChoiceCallback(prompts[i], choices, 0, false); 116 assertEquals("Incorrect prompt", rCCB.getPrompt(), prompts[i]); 154 for (int i = 0; i < prompts.length; i++) { 155 rCCB = new RealmChoiceCallback(prompts[i], choices, 0, true); 156 assertEquals("Incorrect prompt", rCCB.getPrompt(), prompts[i]);
|
/external/openssh/ |
auth-chall.c | 48 char *challenge, *name, *info, **prompts; local 63 &numprompts, &prompts, &echo_on)) { 70 challenge = xstrdup(prompts[0]); 72 xfree(prompts[i]); 73 xfree(prompts); 83 char *resp[1], *name, *info, **prompts; local 98 &numprompts, &prompts, &echo_on)) != 0) 105 xfree(prompts[i]); 106 xfree(prompts);
|
auth-skey.c | 53 u_int* numprompts, char ***prompts, u_int **echo_on) 66 *prompts = xcalloc(*numprompts, sizeof(char *)); 69 xasprintf(*prompts, "%s%s", challenge, SKEY_PROMPT);
|
auth-bsdauth.c | 52 u_int *numprompts, char ***prompts, u_int **echo_on) 83 *prompts = xcalloc(*numprompts, sizeof(char *)); 85 (*prompts)[0] = xstrdup(challenge);
|
auth-pam.c | 715 u_int *num, char ***prompts, u_int **echo_on) 728 *prompts = xmalloc(sizeof(char *)); 729 **prompts = NULL; 741 **prompts = xrealloc(**prompts, 1, len); 742 strlcpy(**prompts + plen, msg, len - plen); 751 **prompts = xrealloc(**prompts, 1, len); 752 strlcpy(**prompts + plen, msg, len - plen); 754 strlcat(**prompts + plen, "\n", len - plen) [all...] |
auth2-chall.c | 250 char *name, *instr, **prompts; local 255 &name, &instr, &kbdintctxt->nreq, &prompts, &echo_on)) 264 packet_put_cstring(prompts[i]); 271 xfree(prompts[i]); 272 xfree(prompts);
|
monitor_wrap.c | 840 u_int *num, char ***prompts, u_int **echo_on) 859 *prompts = xcalloc((*num + 1), sizeof(char *)); 862 (*prompts)[i] = buffer_get_string(&m, NULL); 938 char ***prompts, u_int **echo_on) 943 *prompts = xcalloc(*numprompts, sizeof(char *)); 950 u_int *numprompts, char ***prompts, u_int **echo_on) 974 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on); 975 (*prompts)[0] = challenge; 1008 u_int *numprompts, char ***prompts, u_int **echo_on) 1034 mm_chall_setup(name, infotxt, numprompts, prompts, echo_on) [all...] |
auth.h | 102 u_int *numprompts, char ***prompts, u_int **echo_on);
|
monitor.c | 884 char **prompts; local 888 &prompts, &echo_on) < 0 ? 0 : 1; 893 buffer_put_cstring(m, prompts[0]); 901 xfree(prompts); 1042 char *name = NULL, *info = NULL, **prompts = NULL; local 1048 ret = (sshpam_device.query)(sshpam_ctxt, &name, &info, &num, &prompts, &echo_on); 1061 buffer_put_cstring(m, prompts[i]); 1062 xfree(prompts[i]); 1065 if (prompts != NULL) 1066 xfree(prompts); [all...] |
/external/chromium_org/chrome_frame/cfinstall/src/stub/ |
cfinstall.js | 53 * Checks to see if Chrome Frame is available, if not, prompts the user to
|
/external/chromium_org/chrome_frame/ |
CFInstall.js | 258 * Checks to see if Chrome Frame is available, if not, prompts the user to
|
/external/openssh/contrib/redhat/ |
openssh.spec | 678 - Merge multiple PAM text messages into subsequent prompts when possible when
|