| /tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
| StreamUtilTest.java | 45 final ByteArrayList output = StreamUtil.getByteArrayListFromStream(stream); local 46 final byte[] outputBytes = output.getContents(); 61 final ByteArrayList output = StreamUtil.getByteArrayListFromStream( local 63 final byte[] outputBytes = output.getContents(); 78 final String output = StreamUtil.getStringFromStream(stream); local 79 assertEquals(contents, output); 88 BufferedReader output = null; local 90 output = StreamUtil.getBufferedReaderFromStreamSrc(source); 91 assertEquals(contents, output.readLine()); 93 if (null != output) { 113 final String output = StreamUtil.getStringFromStream( local [all...] |
| /prebuilts/tools/common/m2/repository/logkit/logkit/1.0.1/ |
| logkit-1.0.1.jar | |
| /external/guice/extensions/struts2/lib/ |
| commons-io-1.3.2.jar | |
| /prebuilts/tools/common/gradle-plugins/repository/commons-io/commons-io/1.3.2/ |
| commons-io-1.3.2.jar | |
| /prebuilts/tools/common/m2/repository/commons-io/commons-io/1.3.2/ |
| commons-io-1.3.2.jar | |
| /art/compiler/debug/dwarf/ |
| dwarf_test.h | 53 // Check that the objdump output contains given output. 91 FILE* output = popen(cmd.data(), "r"); local 94 while ((line = fgets(buffer, sizeof(buffer), output)) != nullptr) { 108 pclose(output); 120 // Compare objdump output to the recorded checks. 129 "Seen end of output."; 151 "Not found anywhere in the rest of the output."; 167 // The expected output of objdump.
|
| /art/test/050-sync-test/src/ |
| Main.java | 109 output(mNumber); 117 void output(int num) { method in class:CpuThread
|
| /art/tools/dexfuzz/src/dexfuzz/listeners/ |
| BisectionSearchListener.java | 65 // Skip last, artificial output line with return code. 66 for (int i = 0; i < result.output.size() - 1; i++) { 67 builder.append(result.output.get(i)).append("\n"); 75 // It's unclear which output should be considered reference output. 89 String output = outputs.get(i); local
|
| /bionic/libc/kernel/uapi/linux/ |
| wmi.h | 32 volatile __u32 output[4]; member in struct:calling_interface_buffer
|
| /cts/common/device-side/util/src/com/android/compatibility/common/util/ |
| SystemUtil.java | 56 * Executes a shell command using shell user identity, and return the standard output in string 61 * @return the standard output of the command 90 fail("Failed reading command output: " + e); 103 + "Output was:\n" + result, 110 * Same as {@link #runShellCommand(String)}, but fails if the output is not empty. 115 + "Didn't expect any output, but the output was:\n" + result, 125 final String output = runShellCommand(cmd); local 126 for (String line : output.split("\\n", -1)) {
|
| /cts/hostsidetests/backup/src/android/cts/backup/ |
| BackupPreparer.java | 115 String output = mDevice.executeShellCommand("bmgr list transports"); local 116 for (String t : output.split(" ")) { 127 String output = mDevice.executeShellCommand("bmgr enabled"); local 129 Matcher matcher = pattern.matcher(output.trim()); 133 throw new RuntimeException("non-parsable output setting bmgr enabled: " + output); 142 String output = mDevice.executeShellCommand("bmgr transport " + transport); local 144 Matcher matcher = pattern.matcher(output); 148 throw new RuntimeException("non-parsable output setting bmgr transport: " + output); 157 String output = mDevice.executeShellCommand("dumpsys backup"); local 182 String output = receiver.getOutput(); local [all...] |
| BaseBackupHostSideTest.java | 69 * Execute shell command "bmgr backupnow <packageName>" and return output from this command. 94 * Execute shell command "bmgr restore <packageName>" and return output from this command. 118 * Parsing the output of "bmgr backupnow" command and checking that the package under test 141 * Parsing the output of "bmgr backupnow" command and checking that the package under test 160 assertTrue("Didn't find \'Backup not allowed\' in the output", found); 164 * Parsing the output of "bmgr restore" command and checking that the package under test 183 * NB: 'bmgr wipe' does not produce any useful output if the package or transport not found, 200 String output = getDevice().executeShellCommand("bmgr enabled"); local 202 Matcher matcher = pattern.matcher(output.trim()); 206 throw new RuntimeException("non-parsable output setting bmgr enabled: " + output) 212 String output = getDevice().executeShellCommand("bmgr list transports"); local [all...] |
| /cts/hostsidetests/incident/src/com/android/server/cts/ |
| ProtoDumpTestCase.java | 171 * Execute the given command, and returns the output. 185 final String output = execCommandAndGet(command); local 186 final Matcher matcher = Pattern.compile(pattern, patternFlags).matcher(output); 187 assertTrue("Pattern '" + pattern + "' didn't match. Output=\n" + output, matcher.find());
|
| /cts/hostsidetests/security/src/android/security/cts/ |
| AdbUtils.java | 43 * @return the console output from running the command 54 * @return the console output from the binary 66 * @param timeout time to wait for output in seconds 67 * @return the console output from the binary 73 String output = receiver.getOutput(); local 74 return output; 78 * Pushes and runs a binary to the selected device and ignores any of its output. 82 * @param timeout time to wait for output in seconds 107 * The [^]] prefix is being used for the grep command to avoid the case where the output of 116 * The second field of the output is the PID, which is needed to restart the process [all...] |
| /cts/tests/backup/src/android/backup/cts/ |
| BaseBackupCtsTest.java | 72 String output = exec("bmgr enabled"); local 73 return output.contains("currently enabled"); 77 String output = exec("bmgr list transports"); local 78 return output.contains("* " + LOCAL_TRANSPORT);
|
| /cts/tests/tests/permission2/src/android/permission2/cts/ |
| PrivappPermissionsTest.java | 131 String output = SystemUtil.runShellCommand( local 134 if (output.startsWith("{") && output.endsWith("}")) { 135 String[] split = output.substring(1, output.length() - 1).split("\\s*,\\s*"); 142 String output = SystemUtil.runShellCommand( local 145 if (output.startsWith("{") && output.endsWith("}")) { 146 String[] split = output.substring(1, output.length() - 1).split("\\s*,\\s*") [all...] |
| /developers/build/prebuilts/gradle/CardEmulation/Application/tests/src/com/example/android/cardemulation/tests/ |
| SampleTests.java | 77 final byte[] output = CardService.HexStringToByteArray("C0FFEE"); 79 assertEquals(testData[i], output[i]); 88 final String output = CardService.ByteArrayToHexString(input); local 89 assertEquals("C0FFEE", output); 102 final byte[] output = cs.processCommandApdu(command, null); 104 assertEquals(expectedResponse.length, output.length); 106 assertEquals(expectedResponse[i], output[i]); 121 final byte[] output = cs.processCommandApdu(command, null); 123 assertEquals(expectedResponse.length, output.length); 125 assertEquals(expectedResponse[i], output[i]) [all...] |
| /developers/samples/android/connectivity/nfc/CardEmulation/Application/tests/src/com/example/android/cardemulation/tests/ |
| SampleTests.java | 77 final byte[] output = CardService.HexStringToByteArray("C0FFEE"); 79 assertEquals(testData[i], output[i]); 88 final String output = CardService.ByteArrayToHexString(input); local 89 assertEquals("C0FFEE", output); 102 final byte[] output = cs.processCommandApdu(command, null); 104 assertEquals(expectedResponse.length, output.length); 106 assertEquals(expectedResponse[i], output[i]); 121 final byte[] output = cs.processCommandApdu(command, null); 123 assertEquals(expectedResponse.length, output.length); 125 assertEquals(expectedResponse[i], output[i]) [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| Cookie.py | 72 >>> C.output()
78 attributes by using the .output() function
83 >>> print C.output(header="Cookie:")
85 >>> print C.output(attrs=[], header="Cookie:")
94 >>> C.output()
145 >>> C.output()
165 >>> C.output()
189 >>> C.output()
468 def output(self, attrs=None, header = "Set-Cookie:"):
member in class:Morsel 471 __str__ = output
595 def output(self, attrs=None, header="Set-Cookie:", sep="\\015\\012"): member in class:BaseCookie [all...] |
| /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
| functional.rb | 196 def output method in class:ANTLR3.Test.CaptureOutput
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
| MultidimensionalCounter.java | 311 int[] output = new int[newLen]; local 312 System.arraycopy(source, 0, output, 0, Math.min(source.length, newLen)); 313 return output;
|
| /external/autotest/cli/ |
| host.py | 198 def output(self, results): member in class:host_list 199 """Print output of 'atest host list'. 214 super(host_list, self).output(results, keys=keys) 252 def output(self, results): member in class:host_stat 253 """Print output of 'atest host stat'. 319 def output(self, results): member in class:host_jobs 320 """Print output of 'atest host jobs'. 569 def output(self, hosts): member in class:host_mod 570 """Print output of 'atest host mod'. 742 def output(self, hosts) member in class:host_create [all...] |
| /external/autotest/client/site_tests/security_Libcontainer/src/ |
| libcontainer_target_unittest.cc | 26 // first 4k of the output. 109 // Preserve stdout/stderr to get the output from the container. 133 std::string output; local 138 output = capture_stdout.GetContents(); 140 EXPECT_EQ("12", output); 144 // Preserve stdout/stderr to get the output from the container. 178 std::string output; local 183 output = capture_stdout.GetContents(); 185 EXPECT_EQ("123", output); 189 // Preserve stdout/stderr to get the output from the container 210 std::string output; local 219 EXPECT_EQ(base::IntToString(pid), output); local [all...] |
| /external/boringssl/src/fipstools/ |
| test_fips.c | 68 uint8_t output[256]; local 79 AES_cbc_encrypt(kPlaintext, output, sizeof(kPlaintext), &aes_key, aes_iv, 82 hexdump(output, sizeof(kPlaintext)); 91 hexdump(output, sizeof(kPlaintext)); 92 AES_cbc_encrypt(output, output, sizeof(kPlaintext), &aes_key, aes_iv, 95 hexdump(output, sizeof(kPlaintext)); 109 hexdump(output, sizeof(kPlaintext)); 110 if (!EVP_AEAD_CTX_seal(&aead_ctx, output, &out_len, sizeof(output), nonce [all...] |
| /external/brotli/java/org/brotli/wrapper/dec/ |
| Decoder.java | 123 ArrayList<byte[]> output = new ArrayList<byte[]>(); local 138 output.add(chunk); 149 if (output.size() == 1) { 150 return output.get(0); 154 for (byte[] chunk : output) {
|