Searched refs:prompt (Results 1 - 25 of 122) sorted by relevance

12345

/external/e2fsprogs/lib/ss/
H A Dprompt.c2 * prompt.c: Routines for retrieving and setting a prompt.
24 ss_info(sci_idx)->prompt = new_prompt;
29 return(ss_info(sci_idx)->prompt);
/external/openssl/crypto/ui/
H A Dui_compat.c59 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
61 return UI_UTIL_read_pw_string(buf, length, prompt, verify);
64 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
66 return UI_UTIL_read_pw(buf, buff, size, prompt, verify);
H A Dui_util.c59 int UI_UTIL_read_pw_string(char *buf,int length,const char *prompt,int verify) argument
64 ret=UI_UTIL_read_pw(buf,buff,(length>BUFSIZ)?BUFSIZ:length,prompt,verify);
69 int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
80 ok = UI_add_input_string(ui,prompt,0,buf,0,size-1);
82 ok = UI_add_verify_string(ui,prompt,0,buff,0,size-1,
H A Dui_compat.h77 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify);
78 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
H A Dui.h87 /* The following functions are used to add strings to be printed and prompt
88 strings to prompt for data. The names are UI_{add,dup}_<function>_string
92 add add a text or prompt string. The pointers given to these
94 dup make a copy of the text or prompt string, then add the copy
99 input use the string as data prompt.
100 verify use the string as verification prompt. This
108 and are typically used when one wants to prompt for a yes/no response.
111 All of the functions in this group take a UI and a prompt string.
130 int UI_add_input_string(UI *ui, const char *prompt, int flags,
132 int UI_dup_input_string(UI *ui, const char *prompt, in
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLIsIndexElement.idl24 attribute [Reflect] DOMString prompt;
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebJavaScriptTextInputPanel.h33 IBOutlet NSTextField *prompt; variable
37 - (id)initWithPrompt:(NSString *)prompt text:(NSString *)text;
H A DWebJavaScriptTextInputPanel.m44 // until then, prompt and textInput will be nil.
45 ASSERT(prompt);
47 [prompt setStringValue:p];
50 [prompt sizeToFitAndAdjustWindowHeight];
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/
H A DChoiceCallbackTest.java36 String prompt = "prompt"; field in class:ChoiceCallbackTest
48 cb = new ChoiceCallback(prompt, choices, defaultChoice, true);
49 assertEquals(this.prompt, cb.getPrompt());
59 cb = new ChoiceCallback(prompt, choices, defaultChoice, false);
72 cb = new ChoiceCallback(prompt, null, defaultChoice, true);
84 cb = new ChoiceCallback(prompt, choices, -1, true);
89 cb = new ChoiceCallback(prompt, new String[0], defaultChoice, true);
101 cb = new ChoiceCallback(prompt, choices, 5, true);
106 cb = new ChoiceCallback(prompt, choice
[all...]
/external/openssl/crypto/des/
H A Dread2pwd.c117 int DES_read_password(DES_cblock *key, const char *prompt, int verify) argument
122 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
129 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2, const char *prompt, argument
135 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
/external/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLIsIndexElement01.js94 var prompt;
104 prompt = testNode.prompt;
106 assertEquals("IsIndex.Prompt","New Employee: ",prompt);
H A DHTMLIsIndexElement02.js94 var prompt;
104 prompt = testNode.prompt;
106 assertEquals("IsIndex.Prompt","Old Employee: ",prompt);
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLIsIndexElement01.js94 var prompt;
104 prompt = testNode.prompt;
106 assertEquals("IsIndex.Prompt","New Employee: ",prompt);
H A DHTMLIsIndexElement02.js94 var prompt;
104 prompt = testNode.prompt;
106 assertEquals("IsIndex.Prompt","Old Employee: ",prompt);
/external/openssl/crypto/evp/
H A Devp_key.c69 void EVP_set_pw_prompt(const char *prompt) argument
71 if (prompt == NULL)
75 strncpy(prompt_string,prompt,79);
91 int EVP_read_pw_string(char *buf, int len, const char *prompt, int verify) argument
93 return EVP_read_pw_string_min(buf, 0, len, prompt, verify);
96 int EVP_read_pw_string_min(char *buf, int min, int len, const char *prompt, int verify) argument
102 if ((prompt == NULL) && (prompt_string[0] != '\0'))
103 prompt=prompt_string;
105 UI_add_input_string(ui,prompt,0,buf,min,(len>=BUFSIZ)?BUFSIZ-1:len);
107 UI_add_verify_string(ui,prompt,
[all...]
/external/dropbear/
H A Dcli-authpasswd.c46 static char *gui_getpass(const char *prompt) { argument
82 execlp(helper, helper, prompt, (char *)0);
119 char prompt[80]; local
124 snprintf(prompt, sizeof(prompt), "%s@%s's password: ",
128 password = gui_getpass(prompt);
131 password = getpass_or_cancel(prompt);
H A Dnetbsd_getpass.c60 getpass(prompt)
61 const char *prompt;
72 _DIAGASSERT(prompt != NULL);
98 if (prompt != NULL)
99 (void)fputs(prompt, outfp);
H A Dcli-authinteract.c34 static unsigned char* get_response(unsigned char* prompt) argument
42 fprintf(stderr, "%s", prompt);
74 unsigned char *prompt = NULL; local
113 prompt = buf_getstring(ses.payload, NULL);
114 cleantext(prompt);
119 unsigned char* p = getpass_or_cancel(prompt);
123 response = get_response(prompt);
/external/fsck_msdos/
H A Dmain.c136 char prompt[256]; local
148 vsnprintf(prompt, sizeof(prompt), fmt, ap);
150 printf("%s? %s\n", prompt, rdonly ? "no" : "yes");
154 printf("%s? [yn] ", prompt);
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dconsole.h51 void SetPrompt(const char *prompt) { argument
52 prompt_ = prompt ? std::string(prompt) : std::string("call");
/external/webkit/Source/WebCore/inspector/front-end/
H A DDatabaseQueryView.js40 this.promptElement.className = "database-query-prompt";
45 this.prompt = new WebInspector.TextPrompt(this.promptElement, this.completions.bind(this), " ");
55 if (!this.prompt.isCaretInsidePrompt() && window.getSelection().isCollapsed)
56 this.prompt.moveCaretToEndOfPrompt();
109 this.prompt.clearAutoComplete();
114 if (!this.prompt.isCaretInsidePrompt() && window.getSelection().isCollapsed)
115 this.prompt.moveCaretToEndOfPrompt();
116 this.prompt.autoCompleteSoon();
127 this.prompt.clearAutoComplete(true);
129 var query = this.prompt
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DConsoleTest.java73 String prompt = new String(((ByteArrayOutputStream)out).toByteArray());
74 assertEquals("1 hello", prompt);
80 String prompt = new String(((ByteArrayOutputStream)out).toByteArray());
81 assertEquals("03 21,1983", prompt);
99 String prompt = new String(((ByteArrayOutputStream)out).toByteArray());
100 assertEquals("2 Please input a line of string to test:", prompt);
119 String prompt = new String(((ByteArrayOutputStream)out).toByteArray());
120 assertEquals("3", prompt);
/external/openssl/include/openssl/
H A Dui_compat.h77 int _ossl_old_des_read_pw_string(char *buf,int length,const char *prompt,int verify);
78 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify);
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dpromptforbugortitle.py34 # No need to prompt if we alrady have the bug_id.
37 user_response = self._tool.user.prompt("Please enter a bug number or a title for a new bug:\n")
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/callback/serialization/
H A DChoiceCallbackTest.java40 String prompt = "prompt";
44 return new Object[] {new ChoiceCallback(prompt, choices, defaultChoice, true)};

Completed in 4135 milliseconds

12345