/external/openssl/apps/ |
dsaparam.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 86 * -out arg - output file - default stdout 116 BIO *in=NULL,*out=NULL; local 162 else if (strcmp(*argv,"-out") == 0) 222 BIO_printf(bio_err," -out arg output file\n"); 241 out=BIO_new(BIO_s_file()); 242 if ((in == NULL) || (out == NULL)) 260 BIO_set_fp(out,stdout,BIO_NOCLOSE); 264 out = BIO_push(tmpbio, out) [all...] |
ec.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 76 * -out arg - output file - default stdout 93 BIO *in = NULL, *out = NULL; local 139 else if (strcmp(*argv,"-out") == 0) 219 BIO_printf(bio_err, " -out arg output file\n"); 229 BIO_printf(bio_err, " -noout don't print key out\n"); 264 out = BIO_new(BIO_s_file()); 265 if ((in == NULL) || (out == NULL)) 313 BIO_set_fp(out, stdout, BIO_NOCLOSE); 317 out = BIO_push(tmpbio, out) [all...] |
genpkey.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 81 BIO *in = NULL, *out = NULL; local 138 else if (!strcmp (*args, "-out")) 201 BIO_printf(bio_err, "-out file output file\n"); 226 if (!(out = BIO_new_file (outfile, "wb"))) 235 out = BIO_new_fp (stdout, BIO_NOCLOSE); 239 out = BIO_push(tmpbio, out); 267 rv = PEM_write_bio_Parameters(out, pkey); 269 rv = PEM_write_bio_PrivateKey(out, pkey, cipher, NULL, 0 [all...] |
pkcs8.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 75 BIO *in = NULL, *out = NULL; local 194 else if (!strcmp (*args, "-out")) 216 BIO_printf(bio_err, "-out file output file\n"); 259 if (!(out = BIO_new_file (outfile, "wb"))) 268 out = BIO_new_fp (stdout, BIO_NOCLOSE); 272 out = BIO_push(tmpbio, out); 291 PEM_write_bio_PKCS8_PRIV_KEY_INFO(out, p8inf); 293 i2d_PKCS8_PRIV_KEY_INFO_bio(out, p8inf) [all...] |
rsa.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 80 * -out arg - output file - default stdout 107 BIO *out=NULL; local 154 else if (strcmp(*argv,"-out") == 0) 220 BIO_printf(bio_err," -out arg output file\n"); 239 BIO_printf(bio_err," -noout don't print key out\n"); 266 out=BIO_new(BIO_s_file()); 308 BIO_set_fp(out,stdout,BIO_NOCLOSE); 312 out = BIO_push(tmpbio, out) [all...] |
s_cb.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 284 BIO *out; local 286 out=(BIO *)BIO_get_callback_arg(bio); 287 if (out == NULL) return(ret); 291 BIO_printf(out,"read from %p [%p] (%lu bytes => %ld (0x%lX))\n", 293 BIO_dump(out,argp,(int)ret); 298 BIO_printf(out,"write to %p [%p] (%lu bytes => %ld (0x%lX))\n", 300 BIO_dump(out,argp,(int)ret) [all...] |
/external/openssl/crypto/evp/ |
evp_test.c | 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 143 unsigned char out[4096]; local 171 if(!EVP_EncryptUpdate(&ctx,out,&outl,plaintext,pn)) 177 if(!EVP_EncryptFinal_ex(&ctx,out+outl,&outl2)) 191 if(memcmp(out,ciphertext,cn)) 194 hexdump(stderr,"Got",out,cn); 210 if(!EVP_DecryptUpdate(&ctx,out,&outl,ciphertext,cn)) 216 if(!EVP_DecryptFinal_ex(&ctx,out+outl,&outl2)) 230 if(memcmp(out,plaintext,pn)) 233 hexdump(stderr,"Got",out,pn) [all...] |
p5_crpt2.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 67 /* set this to print out info about the keygen algorithm */ 83 int keylen, unsigned char *out) 95 p = out; 164 h__dump (out, keylen); 171 int keylen, unsigned char *out) 174 keylen, out); 180 unsigned char out[4]; local 182 PKCS5_PBKDF2_HMAC_SHA1("password", -1, salt, 4, 5, 4, out); 183 fprintf(stderr, "Out %02X %02X %02X %02X\n" [all...] |
/external/openssl/crypto/rc2/ |
rc2test.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 109 unsigned char out[80]; variable 111 char *text="Hello to all people out there"; 186 idea_cbc_encrypt((unsigned char *)text,out,strlen(text)+1,&key,iv,1); 188 idea_cbc_encrypt(out,out,8,&dkey,iv,0); 189 idea_cbc_encrypt(&(out[8]),&(out[8]),strlen(text)+1-8,&dkey,iv,0); 190 if (memcmp(text,out,strlen(text)+1) != 0 [all...] |
/external/oprofile/gui/ |
oprof_start_util.cpp | 162 ostringstream out; local 163 out << "unable to create " << dir << " directory "; 164 out << "cause: " << strerror(errno); 165 QMessageBox::warning(0, 0, out.str().c_str());
|
/external/owasp/sanitizer/src/main/org/owasp/html/examples/ |
UrlTextExample.java | 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 71 // Figure out which attribute we should look for. 120 public static void run(Appendable out, String... argv) throws IOException { 152 out.append(htmlOut); 156 run(System.out, argv); 157 System.out.println();
|
/cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/ |
DocumentsClientTest.java | 332 OutputStream out = getInstrumentation().getContext().getContentResolver() local 335 out.write(data); 337 out.close();
|
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/ |
VectorDrawableTest.java | 161 FileOutputStream out = null; local 178 out = new FileOutputStream(outputFile, false); 179 bitmap.compress(Bitmap.CompressFormat.PNG, 100, out); 184 if (out != null) { 185 out.close();
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
TestFmax.java | 40 public Target.Floaty out; field in class:TestFmax.ArgumentsFloatFloatFloat 47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 49 script.forEach_testFmaxFloatFloatFloat(inX, out); 50 verifyResultsFmaxFloatFloatFloat(inX, inY, out, false); 55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 57 scriptRelaxed.forEach_testFmaxFloatFloatFloat(inX, out); 58 verifyResultsFmaxFloatFloatFloat(inX, inY, out, true); 64 private void verifyResultsFmaxFloatFloatFloat(Allocation inX, Allocation inY, Allocation out, boolean relaxed) { 70 out.copyTo(arrayOut); 77 // Figure out what the outputs should have been 116 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 124 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 185 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 193 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 254 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 323 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 331 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 392 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 400 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 461 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 469 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local [all...] |
TestFmin.java | 40 public Target.Floaty out; field in class:TestFmin.ArgumentsFloatFloatFloat 47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 49 script.forEach_testFminFloatFloatFloat(inX, out); 50 verifyResultsFminFloatFloatFloat(inX, inY, out, false); 55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 57 scriptRelaxed.forEach_testFminFloatFloatFloat(inX, out); 58 verifyResultsFminFloatFloatFloat(inX, inY, out, true); 64 private void verifyResultsFminFloatFloatFloat(Allocation inX, Allocation inY, Allocation out, boolean relaxed) { 70 out.copyTo(arrayOut); 77 // Figure out what the outputs should have been 116 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 124 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 185 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 193 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 254 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 262 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 323 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 331 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 392 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 400 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 461 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 469 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local [all...] |
TestFract.java | 40 public Target.Floaty out; field in class:TestFract.ArgumentsFloatFloatFloat 47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 49 script.forEach_testFractFloatFloatFloat(inV, out); 50 verifyResultsFractFloatFloatFloat(inV, outFloor, out, false); 56 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 58 scriptRelaxed.forEach_testFractFloatFloatFloat(inV, out); 59 verifyResultsFractFloatFloatFloat(inV, outFloor, out, true); 65 private void verifyResultsFractFloatFloatFloat(Allocation inV, Allocation outFloor, Allocation out, boolean relaxed) { 71 out.copyTo(arrayOut); 77 // Figure out what the outputs should have been 125 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 134 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 203 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 212 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 281 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 290 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 357 public Target.Floaty out; field in class:TestFract.ArgumentsFloatFloat 363 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 370 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 422 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 429 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 481 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 488 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 540 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 547 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local [all...] |
TestLdexp.java | 40 public Target.Floaty out; field in class:TestLdexp.ArgumentsFloatIntFloat 47 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 49 script.forEach_testLdexpFloatIntFloat(inX, out); 50 verifyResultsLdexpFloatIntFloat(inX, inY, out, false); 55 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 57 scriptRelaxed.forEach_testLdexpFloatIntFloat(inX, out); 58 verifyResultsLdexpFloatIntFloat(inX, inY, out, true); 64 private void verifyResultsLdexpFloatIntFloat(Allocation inX, Allocation inY, Allocation out, boolean relaxed) { 70 out.copyTo(arrayOut); 77 // Figure out what the outputs should have been 115 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 123 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 183 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 191 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 251 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 259 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 319 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 327 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 387 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 395 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 455 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 463 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local [all...] |
TestLgamma.java | 39 public Target.Floaty out; field in class:TestLgamma.ArgumentsFloatFloat 45 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 46 script.forEach_testLgammaFloatFloat(in, out); 47 verifyResultsLgammaFloatFloat(in, out, false); 52 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 53 scriptRelaxed.forEach_testLgammaFloatFloat(in, out); 54 verifyResultsLgammaFloatFloat(in, out, true); 60 private void verifyResultsLgammaFloatFloat(Allocation in, Allocation out, boolean relaxed) { 64 out.copyTo(arrayOut); 70 // Figure out what the outputs should have been 104 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 111 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 163 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 170 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 222 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 229 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 281 public float out; field in class:TestLgamma.ArgumentsFloatIntFloat 288 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 297 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 349 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 358 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 410 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 419 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 471 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 480 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local [all...] |
TestMix.java | 41 public Target.Floaty out; field in class:TestMix.ArgumentsFloatFloatFloatFloat 49 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 52 script.forEach_testMixFloatFloatFloatFloat(inStart, out); 53 verifyResultsMixFloatFloatFloatFloat(inStart, inStop, inAmount, out, false); 58 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE); local 61 scriptRelaxed.forEach_testMixFloatFloatFloatFloat(inStart, out); 62 verifyResultsMixFloatFloatFloatFloat(inStart, inStop, inAmount, out, true); 68 private void verifyResultsMixFloatFloatFloatFloat(Allocation inStart, Allocation inStop, Allocation inAmount, Allocation out, boolean relaxed) { 76 out.copyTo(arrayOut); 84 // Figure out what the outputs should have been 128 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 137 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 207 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 216 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 286 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 295 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 365 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 374 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTSIZE); local 444 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 453 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTSIZE); local 523 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local 532 Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTSIZE); local [all...] |
/dalvik/dx/src/com/android/dx/merge/ |
IndexMap.java | 227 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(32); local 228 new EncodedValueTransformer(out).transform(new EncodedValueReader(encodedValue)); 229 return new EncodedValue(out.toByteArray()); 233 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(32); local 234 new EncodedValueTransformer(out).transformArray( 236 return new EncodedValue(out.toByteArray()); 240 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(32); local 241 new EncodedValueTransformer(out).transformAnnotation( 244 new EncodedValue(out.toByteArray())); 251 private final ByteOutput out; field in class:IndexMap.EncodedValueTransformer [all...] |
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
ImageFetcher.java | 269 BufferedOutputStream out = null; local 276 out = new BufferedOutputStream(outputStream, IO_BUFFER_SIZE); 280 out.write(b); 290 if (out != null) { 291 out.close();
|
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/ |
ImageFetcher.java | 269 BufferedOutputStream out = null; local 276 out = new BufferedOutputStream(outputStream, IO_BUFFER_SIZE); 280 out.write(b); 290 if (out != null) { 291 out.close();
|
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/ |
ImageFetcher.java | 269 BufferedOutputStream out = null; local 276 out = new BufferedOutputStream(outputStream, IO_BUFFER_SIZE); 280 out.write(b); 290 if (out != null) { 291 out.close();
|
/development/samples/training/NsdChat/src/com/example/android/nsdchat/ |
ChatConnection.java | 272 PrintWriter out = new PrintWriter( local 275 out.println(msg); 276 out.flush();
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherTest.java | 355 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 359 out.write(buff, 0, readlen); 362 return out.toByteArray();
|