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

/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
H A DDebugWebSocketServer.java1 package fi.iki.elonen.samples.echo;
H A DEchoSocketSample.java1 package fi.iki.elonen.samples.echo;
H A DDebugWebSocket.java1 package fi.iki.elonen.samples.echo;
/external/lldb/source/Core/
H A DInputReaderEZ.cpp67 bool echo)
74 echo);
63 Initialize(void* baton, lldb::InputReaderGranularity token_size, const char* end_token, const char *prompt, bool echo) argument
/external/chromium_org/content/shell/renderer/
H A Dipc_echo.cc22 static void Install(base::WeakPtr<IPCEcho> echo, blink::WebFrame* frame);
74 void IPCEchoBindings::Install(base::WeakPtr<IPCEcho> echo, argument
79 new IPCEchoBindings(echo), frame, names);
/external/chromium_org/remoting/host/setup/
H A Dstart_host.cc35 void SetEcho(bool echo) { argument
44 (mode & ~ENABLE_ECHO_INPUT) | (echo ? ENABLE_ECHO_INPUT : 0));
48 if (echo) {
/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/tools/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py49 --- %(rts)-7s RTS %(echo)-7s local echo
70 'echo': key_description('\x05'),
169 def __init__(self, port, baudrate, parity, rtscts, xonxoff, echo=False, convert_outgoing=CONVERT_CRLF, repr_mode=0):
176 self.echo = echo
298 if self.echo:
336 elif c == '\x05': # CTRL+E -> toggle local echo
337 self.echo = not self.echo
647 echo=options.echo, variable
[all...]
/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/uapi/linux/
H A Dicmp.h76 } echo; member in union:icmphdr::__anon23026
/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/chromium_org/third_party/webrtc/modules/audio_processing/agc/
H A Danalog_agc.c762 int16_t echo, uint8_t *saturationWarning)
1238 /* Ensure gain is not increased in presence of echo or after a mute event
1241 if (echo == 1 || (stt->muteGuardMs > 0 && stt->muteGuardMs < kMuteGuardTimeMs))
1270 int32_t *outMicLevel, int16_t echo,
1385 stt->vadMic.logRatio, echo, saturationWarning) == -1)
759 WebRtcAgc_ProcessAnalog(void *state, int32_t inMicLevel, int32_t *outMicLevel, int16_t vadLogRatio, int16_t echo, uint8_t *saturationWarning) argument
1267 WebRtcAgc_Process(void *agcInst, const int16_t *in_near, const int16_t *in_near_H, int16_t samples, int16_t *out, int16_t *out_H, int32_t inMicLevel, int32_t *outMicLevel, int16_t echo, uint8_t *saturationWarning) argument
/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/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Daec_core.c321 // - se : residual echo
323 // - sde : cross-PSD of near-end and residual echo
649 float echo, suppressedEcho; local
651 if (aec->echoState) { // Check if echo is likely present
672 echo = aec->nearlevel.averagelevel - safety * aec->nearlevel.minlevel;
678 dtmp2 = 10 * (float)log10(aec->farlevel.averagelevel / echo + 1e-10f);
709 dtmp2 = 10 * (float)log10(echo / suppressedEcho + 1e-10f);
740 dtmp2 = 10 * (float)log10(echo / suppressedEcho + 1e-10f);
1154 // Inverse fft to obtain echo estimate and error.
1201 // Update power levels and echo metric
[all...]
/external/qemu/ui/
H A Dconsole.c173 int echo; member in struct:QEMUConsole
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;
/external/qemu/
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/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
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 455 milliseconds