/system/core/libsparse/ |
sparse.c | 104 static int sparse_file_write_block(struct output_file *out, 111 ret = write_data_chunk(out, backed_block_len(bb), backed_block_data(bb)); 114 ret = write_file_chunk(out, backed_block_len(bb), 119 ret = write_fd_chunk(out, backed_block_len(bb), 124 ret = write_fill_chunk(out, backed_block_len(bb), 132 static int write_all_blocks(struct sparse_file *s, struct output_file *out) 143 write_skip_chunk(out, (int64_t)blocks * s->block_size); 145 ret = sparse_file_write_block(out, bb); 155 write_skip_chunk(out, pad); 166 struct output_file *out; local 186 struct output_file *out; local 225 struct output_file *out; local 265 struct output_file *out; local [all...] |
/system/core/toolbox/upstream-netbsd/bin/dd/ |
dd.c | 32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 78 IO in, out; /* input/output state */ variable 179 if (out.name == NULL) { 181 out.fd = STDOUT_FILENO; 182 out.name = "stdout"; 183 out.ops = &ddfops_stdfd; 185 out.ops = prog_ops; 188 out.fd = ddop_open(out, out.name, O_RDWR | OFLAGS, DEFFILEMODE) [all...] |
/system/core/trusty/keymaster/ |
trusty_keymaster_device_test.cpp | 77 uint8_t* out = static_cast<uint8_t*>(out_buf); local 78 rsp.Serialize(out, out + *out_size);
|
/system/security/keystore/ |
blob.cpp | 65 * output to 'out' (which may be the same location as 'in') and 128-bit tag to 'tag'. 67 ResponseCode AES_gcm_encrypt(const uint8_t* in, uint8_t* out, size_t len, const uint8_t* key, 89 std::copy(out_tmp.get(), out_pos, out); 97 * 128-bit tag at 'tag' and writing plaintext to 'out' (which may be the same location as 'in'). 99 ResponseCode AES_gcm_decrypt(const uint8_t* in, uint8_t* out, size_t len, const uint8_t* key, 126 std::copy(out_tmp.get(), out_pos, out); 227 auto rc = AES_gcm_encrypt(mBlob.value /* in */, mBlob.value /* out */, dataLength, aes_key, 235 int out = local 237 if (out < 0) { 242 const size_t writtenBytes = writeFully(out, (uint8_t*)&mBlob, fileLength) [all...] |
/system/tools/hidl/c2hal/ |
Expression.cpp | 243 std::string out = mId + "("; local 247 out += ", "; 250 out += (*it)->toString(atomCase); 253 out += ")"; 255 return out;
|
/tools/apksig/src/test/java/com/android/apksig/ |
ApkSignerTest.java | 58 System.out.println( 69 new File(outDir, "golden-unaligned-out.apk"), 73 new File(outDir, "golden-legacy-aligned-out.apk"), 77 new File(outDir, "golden-aligned-out.apk"), 82 new File(outDir, "golden-unaligned-v1-out.apk"), 88 new File(outDir, "golden-legacy-aligned-v1-out.apk"), 94 new File(outDir, "golden-aligned-v1-out.apk"), 101 new File(outDir, "golden-unaligned-v2-out.apk"), 107 new File(outDir, "golden-legacy-aligned-v2-out.apk"), 113 new File(outDir, "golden-aligned-v2-out.apk") 272 DataSource out = sign(in, new ApkSigner.Builder(signers).setMinSdkVersion(1)); local 290 DataSource out = sign(in, new ApkSigner.Builder(signers).setMinSdkVersion(1)); local 309 DataSource out = sign(in, new ApkSigner.Builder(signers).setMinSdkVersion(18)); local 370 DataSource out = sign(inResourceName, apkSignerBuilder); local 420 ReadableDataSink out = DataSinks.newInMemoryDataSink(); local [all...] |
/tools/apksig/src/test/java/com/android/apksig/util/ |
DataSourceTestBase.java | 255 ReadableDataSink out = DataSinks.newInMemoryDataSink(size); local 256 ds.feed(offset, size, out); 257 assertEquals(size, out.size()); 258 assertEquals(expectedFedContents, toString(out.getByteBuffer(0, size)));
|
/tools/loganalysis/src/com/android/loganalysis/util/config/ |
ArgsOptionParser.java | 32 * "out.txt" in "-f out.txt"), or a non-option positional argument. 51 * but need not be. That is, "-f out.txt" and "-fout.txt" are both acceptable. 58 * argument. (That is, "--file=out.txt" or "--file out.txt".) 256 // -abf out.txt 258 // (But not -abf=out.txt --- POSIX doesn't mention that either way, but GNU expressly forbids 332 StringBuilder out = new StringBuilder(); local 341 out.append(optionNameHelp); 347 out.append(eol) [all...] |
/tools/tradefederation/core/prod-tests/src/com/android/media/tests/ |
MediaMemoryTest.java | 158 String out = mTestDevice.executeShellCommand(String.format("ls %s/%s", local 160 String heapOutputFiles[] = out.split("\n"); 179 * out the relevant test metrics and report them.
|
VideoEditingMemoryTest.java | 57 * usage test out is saved in /sdcard/VideoEditorStressMemOutput.txt and 149 String out = mTestDevice.executeShellCommand(String.format("ls %s/%s", local 151 String heapOutputFiles[] = out.split("\n"); 170 * out the relevant test metrics and report them.
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
ArgsOptionParser.java | 37 * "out.txt" in "-f out.txt"), or a non-option positional argument. 56 * but need not be. That is, "-f out.txt" and "-fout.txt" are both acceptable. 63 * argument. (That is, "--file=out.txt" or "--file out.txt".) 345 // -abf out.txt 347 // (But not -abf=out.txt --- POSIX doesn't mention that either way, but GNU expressly forbids 422 StringBuilder out = new StringBuilder(); local 431 out.append(optionNameHelp); 437 out.append(eol) [all...] |
/tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/ |
RemoteManagerTest.java | 77 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 78 PrintWriter pw = new PrintWriter(out); 85 out.toString()); 96 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 97 PrintWriter pw = new PrintWriter(out); 101 assertEquals("{}\n", out.toString()); 115 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 116 PrintWriter pw = new PrintWriter(out); 120 assertEquals("{}\n", out.toString()); 131 ByteArrayOutputStream out = new ByteArrayOutputStream() local 149 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 167 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 184 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 201 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 222 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 246 ByteArrayOutputStream out = new ByteArrayOutputStream(); local [all...] |
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
BugreportTest.java | 65 ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(fileStream)); local 66 ZipUtil.addToZip(out, bugreport, new LinkedList<String>()); 67 ZipUtil.addToZip(out, new File(tempDir, "main_entry.txt"), new LinkedList<String>()); 68 StreamUtil.close(out); 168 ZipOutputStream out = new ZipOutputStream(new BufferedOutputStream(fileStream)); local 169 ZipUtil.addToZip(out, bugreport, new LinkedList<String>()); 170 StreamUtil.close(out);
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/ |
HttpHelperTest.java | 138 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 140 mHelper.doGet(TEST_URL_STRING, out); 141 StreamUtil.flushAndCloseStream(out); 143 assertEquals(TEST_DATA, out.toString());
|
/tools/tradefederation/core/util-apps/WifiUtil/src/com/android/tradefed/utils/wifi/ |
WifiMonitorService.java | 93 FileOutputStream out = null; local 103 out = openFileOutput(DATA_FILE, Context.MODE_APPEND); 104 final PrintWriter writer = new PrintWriter(out); 111 closeSilently(out); 166 FileOutputStream out = null; local 168 out = context.openFileOutput(DATA_FILE, 0); 172 closeSilently(out);
|
/frameworks/base/services/core/java/com/android/server/ |
AppOpsService.java | 1612 XmlSerializer out = new FastXmlSerializer(); local [all...] |
/frameworks/base/services/core/java/com/android/server/wallpaper/ |
WallpaperManagerService.java | 596 Slog.v(TAG, " out: w=" + finalCrop.getWidth() 795 Slog.w(TAG, "Wallpaper reconnect timed out for " + mWallpaper.wallpaperComponen 2237 XmlSerializer out = new FastXmlSerializer(); local [all...] |
/dalvik/dx/etc/ |
jasmin.jar | |
/prebuilts/tools/common/jasmin/ |
jasmin.jar | |
/external/dexmaker/lib/ |
libcore-dex-2.jar | |
/prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/libcore-dex/2/ |
libcore-dex-2.jar | |
/prebuilts/tools/common/m2/repository/com/jakewharton/android/repackaged/libcore-dex/7.1.0_r7/ |
libcore-dex-7.1.0_r7.jar | |
/prebuilts/tools/common/bazel/formc-deps/ |
jdom.jar | |
/prebuilts/tools/common/m2/repository/jdom/jdom/1.0/ |
jdom-1.0.jar | |
/cts/hostsidetests/net/app/src/com/android/cts/net/hostside/ |
VpnTest.java | 323 // Find out what the kernel set the ICMP ID to. 335 // Zero out the checksum in the reply so it matches the uninitialized checksum in packet. 340 // Writes data to out and checks that it appears identically on in. 342 OutputStream out, InputStream in, byte[] data) throws IOException { 343 out.write(data, 0, data.length); 344 out.flush(); 410 // Make sure our writes don't block or time out, because we're single-threaded and can't
|