Searched defs:echo (Results 1 - 25 of 25) sorted by relevance

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DInteractiveCallback.java49 * @param echo
51 * each prompt, the corresponding echo field indicates whether or
56 public String[] replyToChallenge(String name, String instruction, int numPrompts, String[] prompt, boolean[] echo) argument
/external/dropbear/
H A Dcli-authinteract.c75 unsigned int echo = 0; local
116 echo = buf_getbool(ses.payload);
118 if (!echo) {
H A Dnetbsd_getpass.c67 int echo; local
94 if ((echo = (term.c_lflag & ECHO)) != 0) {
106 if (echo) {
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
H A DPacketUserauthInfoRequest.java25 boolean echo[]; field in class:PacketUserauthInfoRequest
46 echo = new boolean[numPrompts];
51 echo[i] = tr.readBoolean();
60 return echo;
/external/chromium_org/remoting/host/setup/
H A Dstart_host.cc32 void SetEcho(bool echo) { argument
35 if (echo) {
/external/chromium/chrome/browser/sync/glue/
H A Dhttp_bridge_unittest.cc180 GURL echo = test_server_.GetURL("echo"); local
181 http_bridge->SetURL(echo.spec().c_str(), echo.IntPort());
/external/chromium_org/sync/internal_api/
H A Dhttp_bridge_unittest.cc218 GURL echo = test_server_.GetURL("echo"); local
219 http_bridge->SetURL(echo.spec().c_str(), echo.IntPort());
/external/chromium_org/third_party/openssl/openssl/crypto/ui/
H A Dui_openssl.c316 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl);
416 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) argument
432 if (!echo && !noecho_console(ui))
438 if (!echo)
466 if (!echo) fprintf(tty_out,"\n");
467 if (ps >= 2 && !echo && !echo_console(ui))
/external/ganymed-ssh2/examples/
H A DSwingShell.java467 boolean[] echo) throws IOException
484 content, !echo[i]);
466 replyToChallenge(String name, String instruction, int numPrompts, String[] prompt, boolean[] echo) argument
/external/javasqlite/src/main/java/SQLite/
H A DShell.java20 boolean echo; field in class:Shell
53 s.echo = echo;
315 if (cmd.compareTo(".echo") == 0) {
318 echo = true;
338 pw.println(".echo ON|OFF Command echo on or off");
478 if (echo) {
493 if (!echo) {
552 } else if (args[i].compareTo("-echo")
[all...]
/external/kernel-headers/original/linux/
H A Dicmp.h76 } echo; member in union:icmphdr::__anon19368
/external/libppp/src/
H A Dhdlc.h97 u_int32_t seq_sent; /* last echo sent */
98 u_int32_t seq_recv; /* last echo received */
99 } echo; member in struct:hdlc::__anon20426
H A Dlqr.c78 struct echolqr echo; local
80 echo.magic = htonl(lcp->want_magic);
81 echo.signature = htonl(SIGNATURE);
82 echo.sequence = htonl(hdlc->lqm.echo.seq_sent);
83 fsm_Output(&lcp->fsm, CODE_ECHOREQ, hdlc->lqm.echo.seq_sent++,
84 (u_char *)&echo, sizeof echo, MB_ECHOOUT);
101 /* Tolerate echo replies with either magic number */
112 /* careful not to update lqm.echo
[all...]
H A Dlcp.h101 unsigned echo : 1; /* Send echo Requests */ member in struct:lcp::__anon20439
/external/openssl/crypto/ui/
H A Dui_openssl.c316 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl);
416 static int read_string_inner(UI *ui, UI_STRING *uis, int echo, int strip_nl) argument
432 if (!echo && !noecho_console(ui))
438 if (!echo)
466 if (!echo) fprintf(tty_out,"\n");
467 if (ps >= 2 && !echo && !echo_console(ui))
/external/webrtc/src/modules/audio_processing/agc/
H A Danalog_agc.c760 WebRtc_Word16 echo, WebRtc_UWord8 *saturationWarning)
1216 /* Ensure gain is not increased in presence of echo or after a mute event
1219 if (echo == 1 || (stt->muteGuardMs > 0 && stt->muteGuardMs < kMuteGuardTimeMs))
1248 WebRtc_Word32 *outMicLevel, WebRtc_Word16 echo,
1357 stt->vadMic.logRatio, echo, saturationWarning) == -1)
757 WebRtcAgc_ProcessAnalog(void *state, WebRtc_Word32 inMicLevel, WebRtc_Word32 *outMicLevel, WebRtc_Word16 vadLogRatio, WebRtc_Word16 echo, WebRtc_UWord8 *saturationWarning) argument
1245 WebRtcAgc_Process(void *agcInst, const WebRtc_Word16 *in_near, const WebRtc_Word16 *in_near_H, WebRtc_Word16 samples, WebRtc_Word16 *out, WebRtc_Word16 *out_H, WebRtc_Word32 inMicLevel, WebRtc_Word32 *outMicLevel, WebRtc_Word16 echo, WebRtc_UWord8 *saturationWarning) argument
/external/speex/libspeex/
H A Dpreprocess.c50 approach to combined acoustic echo cancellation and noise reduction". IEEE
320 /* Compute the gain floor based on different floors for the background noise and residual echo */
321 static void compute_gain_floor(int noise_suppress, int effective_echo_suppress, spx_word32_t *noise, spx_word32_t *echo, spx_word16_t *gain_floor, int len) argument
331 /* gain_floor = sqrt [ (noise*noise_floor + echo*echo_floor) / (noise+echo) ] */
334 spx_sqrt(SHL32(EXTEND32(DIV32_16_Q15(PSHR32(noise[i],NOISE_SHIFT) + MULT16_32_Q15(gain_ratio,echo[i]),
335 (1+PSHR32(noise[i],NOISE_SHIFT) + echo[i]) )),15)));
341 /* gain_floor = sqrt [ (noise*noise_floor + echo*echo_floor) / (noise+echo) ] */
344 spx_sqrt(SHL32(EXTEND32(DIV32_16_Q15(MULT16_32_Q15(gain_ratio,PSHR32(noise[i],NOISE_SHIFT)) + echo[
380 compute_gain_floor(int noise_suppress, int effective_echo_suppress, spx_word32_t *noise, spx_word32_t *echo, spx_word16_t *gain_floor, int len) argument
721 speex_preprocess(SpeexPreprocessState *st, spx_int16_t *x, spx_int32_t *echo) argument
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core.c778 // Inverse fft to obtain echo estimate and error.
825 // Update power levels and echo metrics
1385 float echo, suppressedEcho; local
1387 if (aec->echoState) { // Check if echo is likely present
1408 echo = aec->nearlevel.averagelevel - safety * aec->nearlevel.minlevel;
1413 dtmp2 = 10 * (float)log10(aec->farlevel.averagelevel / echo + 1e-10f);
1443 dtmp2 = 10 * (float)log10(echo / suppressedEcho + 1e-10f);
1473 dtmp2 = 10 * (float)log10(echo / suppressedEcho + 1e-10f);
/external/openssh/
H A Dsshconnect2.c1525 int echo = 0; local
1558 echo = packet_get_char();
1560 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
/external/qemu/
H A Dconsole.c173 int echo; member in struct:TextConsole
1223 } else if (s->echo && (keysym == '\r' || keysym == '\n')) {
1229 if (s->echo) {
1489 static void text_console_set_echo(CharDriverState *chr, bool echo) argument
1493 s->echo = echo;
H A Dqemu-char.c803 static void qemu_chr_set_echo_stdio(CharDriverState *chr, bool echo) argument
808 if (!echo) {
2017 * char mode with no echo. All IAC options will be removed from
2178 /* Send the telnet negotion to put telnet in binary, no echo, single char mode */
2667 void qemu_chr_set_echo(struct CharDriverState *chr, bool echo) argument
2670 chr->chr_set_echo(chr, echo);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jsch.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 913 milliseconds