HomeSort by relevance Sort by last modified time
    Searched defs:echo (Results 1 - 25 of 58) sorted by null

1 2 3

  /build/kati/testcase/
canned_recipes.mk 5 define run-echo
6 echo $@
10 $(run-echo)
shell_var.mk 3 override SHELL:=/bin/echo
7 echo=/bin/echo macro
8 override SHELL=$(echo)
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug353.go 16 func echo(fd io.ReadWriterCloser) { // ERROR "undefined.*io.ReadWriterCloser" func
29 echo(fd)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug353.go 16 func echo(fd io.ReadWriterCloser) { // ERROR "undefined.*io.ReadWriterCloser" func
29 echo(fd)
  /build/kati/
command.h 28 explicit Command(Symbol o) : output(o), echo(true), ignore_error(false) {}
31 bool echo; member in struct:Command
command.cc 148 void ParseCommandPrefixes(StringPiece* s, bool* echo, bool* ignore_error) {
153 *echo = false;
206 bool echo = global_echo; local
208 ParseCommandPrefixes(&cmd, &echo, &ignore_error);
213 command->echo = echo;
228 c->echo = false;
  /build/make/tools/
checkowners.py 26 def echo(msg): function
35 echo('Checking email address: ' + address)
58 echo('Checking file: ' + fname)
70 echo('Found email address: ' + address)
  /external/autotest/site_utils/lxc/container_pool/
message.py 10 ECHO = 'echo'
28 def echo(msg): function
29 """Creates an echo message.
31 ECHO messages are mainly for testing. They verify that the service is up
36 return Message(ECHO, {'msg': msg})
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
EchoSocketSample.java 1 package fi.iki.elonen.samples.echo;
DebugWebSocketServer.java 1 package fi.iki.elonen.samples.echo;
  /external/syslinux/gpxe/src/hci/mucurses/
kb.c 50 * @v *win window in which to echo input
81 * @v *win window in which to echo input
132 int echo ( void ) { function
  /packages/apps/Dialer/java/com/android/dialer/commandline/
CommandLineModule.java 20 import com.android.dialer.commandline.impl.Echo;
44 private final Echo echo; field in class:CommandLineModule.AospCommandInjector
48 AospCommandInjector(Help help, Version version, Echo echo, Blocking blocking) {
51 this.echo = echo;
58 builder.addCommand("echo", echo);
  /prebuilts/jdk/jdk8/darwin-x86/sample/scripting/scriptpad/src/resources/
gui.js 285 // if echo function is not defined, define it as synonym
287 if (this.echo == undefined) {
288 function echo(str) { function in function:function
  /prebuilts/jdk/jdk8/linux-x86/sample/scripting/scriptpad/src/resources/
gui.js 285 // if echo function is not defined, define it as synonym
287 if (this.echo == undefined) {
288 function echo(str) { function in function:function
  /cts/apps/VpnApp/src/com/android/cts/vpnfirewall/
PingReflector.java 64 IcmpMessage echo = null; local
76 echo = new IcmpMessage(
78 Log.i(TAG, "Ping packet:\n" + echo);
85 packet.setData(echo.getEncoded());
  /external/nanohttpd/websocket/src/test/java/fi/iki/elonen/samples/echo/
SimpleEchoSocket.java 1 package fi.iki.elonen.samples.echo;
50 * Basic Echo Client Socket
EchoWebSocketsTest.java 1 package fi.iki.elonen.samples.echo;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 36 public boolean echo; field in class:Input
51 echo = false;
67 echo = in.readInt() == 1 ? true : false;
89 dest.writeInt(echo ? 1 : 0);
  /cts/suite/audio_quality/test_description/
processing_main.py 26 "echo", # send back whatever is received
39 def echo(inputData, inputTypes): function
41 print "echo received ", inputData
  /external/chromium-trace/catapult/devil/devil/utils/
mock_calls_test.py 61 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/libmojo/third_party/catapult/devil/devil/utils/
mock_calls_test.py 61 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')
  /bionic/libc/kernel/uapi/linux/
icmp.h 67 } echo; member in union:icmphdr::__anon662
  /external/chromium-trace/catapult/third_party/pyserial/serial/tools/
miniterm.py 49 --- %(rts)-7s RTS %(echo)-7s local echo
70 'echo': key_description('\x05'),
128 new[3] = new[3] & ~termios.ICANON & ~termios.ECHO & ~termios.ISIG
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.ech
647 echo=options.echo, variable
    [all...]
  /external/kernel-headers/original/uapi/linux/
icmp.h 23 #define ICMP_ECHOREPLY 0 /* Echo Reply */
27 #define ICMP_ECHO 8 /* Echo Request */
77 } echo; member in union:icmphdr::__anon22868
  /libcore/ojluni/src/main/java/java/io/
Console.java 313 echoOff = echo(false);
326 echoOff = echo(true);
373 private static native boolean echo(boolean on) throws IOException; method in class:Console

Completed in 701 milliseconds

1 2 3