HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 876 - 900 of 1601) sorted by null

<<31323334353637383940>>

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Response.java 164 // TODO: move out of public API
173 // TODO: move out of public API
182 // TODO: move out of public API
194 // TODO: move out of public API
264 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
265 Util.copy(byteStream(), out); local
266 return out.toByteArray();
464 // TODO: move out of public API
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 231 return false; // Ran out of time.
235 * Copies all of the bytes from {@code in} to {@code out}. Neither stream is closed.
238 public static int copy(InputStream in, OutputStream out) throws IOException {
244 out.write(buffer, 0, c);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Huffman.java 51 void encode(byte[] data, OutputStream out) throws IOException {
66 out.write(((int) (current >> n)));
73 out.write((int) current);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
Http20Draft09Test.java 485 OkBuffer out = new OkBuffer(); local
486 new HpackDraft05.Writer(out).writeHeaders(sentHeaders);
487 return out;
491 OkBuffer out = new OkBuffer(); local
492 new Http20Draft09.Writer(out, true).ping(ack, payload1, payload2);
493 return out;
498 OkBuffer out = new OkBuffer(); local
499 new Http20Draft09.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
500 return out;
504 OkBuffer out = new OkBuffer() local
511 OkBuffer out = new OkBuffer(); local
    [all...]
  /external/okhttp/okio/src/test/java/okio/
ByteStringTest.java 100 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
101 ByteString.decodeHex("616263").write(out);
102 assertByteArraysEquals(new byte[] { 0x61, 0x62, 0x63 }, out.toByteArray());
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 37 // or tort (including negligence or otherwise) arising in any way out of
325 uchar *out = data; local
340 RGBToGray( (float *)buffer, (float *)out );
360 out[x] = CV_CAST_8U(t);
369 out[x] = CV_CAST_8U(t);
374 out += step;
530 void GrFmtExrReader::RGBToGray( float *in, float *out )
537 out[i] = in[n] * m_chroma.blue[0] + in[n + 1] * m_chroma.green[0] + in[n + 2] * m_chroma.red[0];
541 uchar *o = (uchar *)out;
555 ((int *)out)[i] = int(si[n] * m_chroma.blue[0] + si[n + 1] * m_chroma.green[0] + si[n + 2] * m_chroma.red[0])
    [all...]
  /external/openssl/apps/
crl.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 " -text - print out a text format version\n",
82 " -out arg - output file - default stdout\n",
110 BIO *out=NULL; local
178 else if (strcmp(*argv,"-out") == 0)
350 BIO_printf(bio_err,"out of memory\n");
365 out=BIO_new(BIO_s_file());
366 if (out == NULL)
374 BIO_set_fp(out,stdout,BIO_NOCLOSE)
    [all...]
dgst.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
77 int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
112 BIO *out = NULL; local
137 BIO_printf(bio_err,"out of memory\n");
166 else if (strcmp(*argv,"-out") == 0)
280 BIO_printf(bio_err,"-out filename output to filename rather than stdout\n");
327 out = BIO_new_file(outfile, "wb");
328 else out = BIO_new_file(outfile, "w");
330 out = BIO_new_fp(stdout, BIO_NOCLOSE)
    [all...]
ecparam.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
93 * -out arg - output file - default stdout
130 BIO *in = NULL, *out = NULL; local
170 else if (strcmp(*argv,"-out") == 0)
258 BIO_printf(bio_err, " -out arg output file - "
303 out=BIO_new(BIO_s_file());
304 if ((in == NULL) || (out == NULL))
322 BIO_set_fp(out,stdout,BIO_NOCLOSE);
326 out = BIO_push(tmpbio, out);
    [all...]
enc.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
75 int set_hex(char *in,unsigned char *out,int size);
127 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
177 else if (strcmp(*argv,"-out") == 0)
302 BIO_printf(bio_err,"%-14s output file\n","-out <file>");
397 out=BIO_new(BIO_s_file());
398 if ((in == NULL) || (out == NULL))
406 BIO_set_callback(out,BIO_debug_callback);
408 BIO_set_callback_arg(out,(char *)bio_err)
    [all...]
passwd.c 43 char *passwd, BIO *out, int quiet, int table, int reverse,
70 BIO *in = NULL, *out = NULL; local
84 out = BIO_new(BIO_s_file());
85 if (out == NULL)
87 BIO_set_fp(out, stdout, BIO_NOCLOSE | BIO_FP_TEXT);
91 out = BIO_push(tmpbio, out);
245 if (!do_passwd(passed_salt, &salt, &salt_malloc, passwd, out,
274 if (!do_passwd(passed_salt, &salt, &salt_malloc, passwd, out,
292 if (out)
    [all...]
pkeyutl.c 48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
83 unsigned char *out, size_t *poutlen,
90 BIO *in = NULL, *out = NULL; local
124 else if (!strcmp(*argv,"-out"))
271 if(!(out = BIO_new_file(outfile, "wb")))
280 out = BIO_new_fp(stdout, BIO_NOCLOSE);
284 out = BIO_push(tmpbio, out);
335 BIO_puts(out, "Signature Verification Failure\n");
337 BIO_puts(out, "Signature Verified Successfully\n")
    [all...]
rsautl.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
88 BIO *in = NULL, *out = NULL; local
126 } else if (!strcmp(*argv,"-out")) {
243 if(!(out = BIO_new_file(outfile, "wb"))) {
249 out = BIO_new_fp(stdout, BIO_NOCLOSE);
253 out = BIO_push(tmpbio, out);
305 if(!ASN1_parse_dump(out, rsa_out, rsa_outlen, 1, -1)) {
308 } else if(hexdump) BIO_dump(out, (char *)rsa_out, rsa_outlen);
309 else BIO_write(out, rsa_out, rsa_outlen)
    [all...]
smime.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
104 BIO *in = NULL, *out = NULL, *indata = NULL; local
356 else if (!strcmp (*args, "-out"))
473 BIO_printf (bio_err, "-out file output file\n");
652 if (!(out = BIO_new_file(outfile, outmode)))
661 out = BIO_new_fp(stdout, BIO_NOCLOSE);
665 out = BIO_push(tmpbio, out);
747 if (!PKCS7_decrypt(p7, key, recip, out, flags))
756 if (PKCS7_verify(p7, other, store, indata, out, flags)
    [all...]
  /external/openssl/crypto/ecdsa/
ecdsatest.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102 int x9_62_test_internal(BIO *out, int nid, const char *r, const char *s);
181 int x9_62_test_internal(BIO *out, int nid, const char *r_in, const char *s_in)
198 BIO_printf(out, "testing %s: ", OBJ_nid2sn(nid));
204 BIO_printf(out, ".");
205 (void)BIO_flush(out);
210 BIO_printf(out, ".");
211 (void)BIO_flush(out);
220 BIO_printf(out, ".");
221 (void)BIO_flush(out);
529 BIO *out; local
    [all...]
  /external/oprofile/pp/
opreport.cpp 376 format_output::formatter * out; local
384 out = xml_out;
386 out->show_long_filenames(true);
390 out = text_out;
391 out->show_long_filenames(options::long_filenames);
394 out->set_nr_classes(nr_classes);
395 out->show_header(options::show_header);
396 out->vma_format_64bit(choice.hints & cf_64bit_vma);
397 out->show_global_percent(options::global_percent);
403 out->add_format(flags)
457 format_output::formatter * out; local
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jsch.jar 
  /cts/tests/tests/content/src/android/content/cts/
IntentFilterTest.java 577 ByteArrayOutputStream out; local
580 out = new ByteArrayOutputStream();
581 xml.setOutput(out, "utf-8");
591 final InputStream in = new ByteArrayInputStream(out.toByteArray());
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
NativeDecoderTest.java 285 // we ran out of samples without ever signaling EOS to the codec,
437 ParcelFileDescriptor out = ParcelFileDescriptor.open(new File(tmpFile), local
442 out.getFd(), webm));
450 remux.setDataSource(out.getFileDescriptor());
479 int out, boolean webm);
  /cts/tests/tests/os/src/android/os/cts/
DebugTest.java 202 File file = getContext().getFileStreamPath("dump.out");
206 FileOutputStream out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE); local
207 assertFalse(Debug.dumpService("xyzzy -- not a valid service name", out.getFD(), null));
208 out.close();
214 out = getContext().openFileOutput("dump.out", Context.MODE_PRIVATE);
215 assertTrue(Debug.dumpService(Context.POWER_SERVICE, out.getFD(), null));
216 out.close();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
ScenarioData.java 247 stream = System.out;
324 if (stream != System.out)
418 if (stream == null) stream = System.out;
451 OutputStream out = null; local
453 out = new BufferedOutputStream(new FileOutputStream(outputFile));
454 il.save(out, SWT.IMAGE_GIF);
460 if (out != null) {
462 out.close();
  /external/emma/core/java12/com/vladium/emma/instr/
InstrProcessorST.java 111 final OutputStream out = new FileOutputStream (getFullOutFile (parentDir, archive, IN_LIB)); local
113 m_archiveOut = outManifest != null ? new JarOutputStream (out, outManifest) : new JarOutputStream (out);
137 final OutputStream out = new FileOutputStream (m_tempArchiveFile); local
139 m_archiveOut = outManifest != null ? new JarOutputStream (out, outManifest) : new JarOutputStream (out);
277 fnfe.printStackTrace (System.out);
448 // otherwise, instrument only if the dest file is out of date
481 // System.out.println (clsDef.getName () + " metadata:");
482 // System.out.println (profile.root ().dump (0.2))
    [all...]
  /external/javassist/src/main/javassist/
CtClass.java 65 System.out.println("Javassist version " + CtClass.version);
66 System.out.println("Copyright (C) 1999-2010 Shigeru Chiba."
258 * Returns true if the class has been loaded or written out
289 * written out. This method should be called only in a case
290 * that the class will be reloaded or written out later again.
1277 DataOutputStream out = new DataOutputStream(barray); local
1324 DataOutputStream out local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/
AnalysisAdapter.java 11 private Hashtable<Node,Object> out; field in class:AnalysisAdapter
42 if(this.out == null)
47 return this.out.get(node);
52 if(this.out == null)
54 this.out = new Hashtable<Node,Object>(1);
59 this.out.put(node, o);
63 this.out.remove(node);

Completed in 785 milliseconds

<<31323334353637383940>>