Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 7 of 7) sorted by relevance

/cts/suite/audio_quality/test_description/
Dprocessing_main.py86 cmd = self.readI32()
87 if (cmd == CMD_AUDIO_STEREO) or (cmd == CMD_AUDIO_MONO):
91 if (cmd == CMD_AUDIO_STEREO):
95 print i, "-th input received audio data ", dataLen, cmd
96 elif cmd == CMD_INT64:
100 elif cmd == CMD_DOUBLE:
105 self.protocolError("unknown command " + str(cmd))
/cts/hostsidetests/appsecurity/src/com/android/cts/appsecurity/
DAppSecurityTests.java562 final String cmd = "am instrument --user " + userId + " -w -r -e class " + testClassName in doRunTestsAsUser() local
564 Log.i(LOG_TAG, "Running " + cmd + " on " + getDevice().getSerialNumber()); in doRunTestsAsUser()
569 getDevice().executeShellCommand(cmd, parser); in doRunTestsAsUser()
/cts/tools/vm-tests-tf/src/util/build/
DBuildDalvikSuite.java220 String cmd = String.format("ANDROID_DATA=%s dalvikvm -Xint:portable -Xmx512M -Xss32K " +
223 return "String res = getDevice().executeShellCommand(\""+ cmd + "\");\n" +
225 "assertEquals(\"" + cmd + "\", \"\", res);";
/cts/suite/audio_quality/client/src/com/android/cts/audiotest/
DAudioProtocol.java454 … private void sendReplyWithData(int cmd, int errorCode, int len, byte[] data) throws IOException { in sendReplyWithData() argument
458 mReplyBuffer.putInt((cmd & 0xffff) | 0x43210000); in sendReplyWithData()
/cts/tests/tests/media/src/android/media/cts/
DAudioEffectTest.java880 byte[] cmd = new byte[0]; in test5_0Command()
883 int status = mEffect.command(3, cmd, reply); in test5_0Command()
/cts/suite/cts/deviceTests/browserbench/assets/octane/
Dpdfjs.js116 PdfJS_windowInstall("setTimeout", function(cmd, delay) { argument
117 PdfJS_window.__timeouts__.push(cmd);
1192 function isCmd(v, cmd) { argument
1193 return v instanceof Cmd && (!cmd || v.cmd == cmd);
3300 function Cmd(cmd) { argument
3301 this.cmd = cmd;
3308 Cmd.get = function Cmd_get(cmd) { argument
3309 var cmdValue = cmdCache[cmd];
3313 return cmdCache[cmd] = new Cmd(cmd);
3931 if (obj3.cmd.indexOf('obj') == 0) {
[all …]
Dmandreel.js93 function Mandreel_setTimeout(cmd, delay) { argument
94 timeouts.push(cmd);