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

12

/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
H A DEchoSocketSample.java1 package fi.iki.elonen.samples.echo;
H A DDebugWebSocketServer.java1 package fi.iki.elonen.samples.echo;
/external/nanohttpd/websocket/src/test/java/fi/iki/elonen/samples/echo/
H A DEchoWebSocketsTest.java1 package fi.iki.elonen.samples.echo;
H A DSimpleEchoSocket.java1 package fi.iki.elonen.samples.echo;
/external/syslinux/gpxe/src/hci/mucurses/
H A Dkb.c50 * @v *win window in which to echo input
81 * @v *win window in which to echo input
132 int echo ( void ) { function
/external/chromium-trace/catapult/devil/devil/utils/
H A Dmock_calls_test.py61 def echo(self, thing): member in class:TestCaseWithAssertCallsTest
62 logging.debug("called 'echo' of %r object", self)
89 self.assertEquals('hello', self.adb.Shell('echo hello'))
98 self.adb.Shell('echo hello')
117 (self.call.echo('hello'), 'hello'),
122 self.assertEquals('hello', self.echo('hello'))
129 self.call.adb.Shell('echo hello'), self.ShellError()):
131 self.adb.Shell('echo hello')
/external/chromium-trace/catapult/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::__anon8622
/external/libmojo/third_party/catapult/devil/devil/utils/
H A Dmock_calls_test.py61 def echo(self, thing): member in class:TestCaseWithAssertCallsTest
62 logging.debug("called 'echo' of %r object", self)
89 self.assertEquals('hello', self.adb.Shell('echo hello'))
98 self.adb.Shell('echo hello')
117 (self.call.echo('hello'), 'hello'),
122 self.assertEquals('hello', self.echo('hello'))
129 self.call.adb.Shell('echo hello'), self.ShellError()):
131 self.adb.Shell('echo hello')
/external/autotest/client/deps/fakemodem/src/
H A Dfakemodem.c33 gboolean echo; member in struct:_FakeModem
54 self->echo = TRUE;
390 if (fakemodem->echo) {
464 fakemodem->echo = FALSE;
466 fakemodem->echo = TRUE;
479 fakemodem->echo = TRUE;
/external/guice/core/test/com/google/inject/
H A DTypeLiteralTypeResolutionTest.java77 Method echo; field in class:TypeLiteralTypeResolutionTest
92 echo = HasRelated.class.getMethod("echo", Object.class);
176 assertEquals(String.class, resolver.getParameterTypes(echo).get(0).getType());
177 assertEquals(String.class, resolver.getReturnType(echo).getType());
181 T echo(R r); method in interface:TypeLiteralTypeResolutionTest.HasRelated
/external/webrtc/webrtc/modules/audio_processing/agc/legacy/
H A Danalog_agc.c644 int16_t echo, uint8_t *saturationWarning)
1111 /* Ensure gain is not increased in presence of echo or after a mute event
1114 if (echo == 1 || (stt->muteGuardMs > 0 && stt->muteGuardMs < kMuteGuardTimeMs))
1139 int32_t *outMicLevel, int16_t echo,
1200 echo,
641 WebRtcAgc_ProcessAnalog(void *state, int32_t inMicLevel, int32_t *outMicLevel, int16_t vadLogRatio, int16_t echo, uint8_t *saturationWarning) argument
1136 WebRtcAgc_Process(void *agcInst, const int16_t* const* in_near, size_t num_bands, size_t samples, int16_t* const* out, int32_t inMicLevel, int32_t *outMicLevel, int16_t echo, uint8_t *saturationWarning) argument
/external/autotest/frontend/afe/
H A Drpc_interface.py1450 def echo(data=""): function
/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/openssh/
H A Dsshconnect2.c1414 int echo = 0; local
1447 echo = packet_get_char();
1449 response = read_passphrase(prompt, echo ? RP_ECHO : 0);
/external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
H A Dvt320.java426 * Enable or disable the local echo property of the terminal.
428 * @param echo
429 * true if the terminal should echo locally
431 public void setLocalEcho(boolean echo) { argument
432 localecho = echo;
1039 putString(BackSpace[xind]); // echo it
2293 case 12:/* local echo off */
2346 /* 12 - local echo off */
2355 case 'i': // DEC Printer Control, autoprint, echo screenchars to printer
2410 /* 12 - local echo o
[all...]
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Daec_core.c324 // - se : residual echo
326 // - sde : cross-PSD of near-end and residual echo
636 float echo, suppressedEcho; local
638 if (aec->echoState) { // Check if echo is likely present
659 echo = aec->nearlevel.averagelevel - safety * aec->nearlevel.minlevel;
665 dtmp2 = 10 * (float)log10(aec->farlevel.averagelevel / echo + 1e-10f);
696 dtmp2 = 10 * (float)log10(echo / suppressedEcho + 1e-10f);
727 dtmp2 = 10 * (float)log10(echo / suppressedEcho + 1e-10f);
882 // |upper_bound|. The adaptive echo cancellation filter is currently
945 // Conditionally reset the echo subtractio
[all...]
/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/testng/ant/
H A Divy-2.1.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ...
/external/guice/extensions/struts2/lib/
H A Dant-1.6.5.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 ...

Completed in 5136 milliseconds

12