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

1 2 3 45 6 7 8 91011>>

  /external/openssl/apps/
errstr.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
89 BIO *out=NULL; local
91 out=BIO_new(BIO_s_file());
92 if ((out != NULL) && BIO_set_fp(out,stdout,BIO_NOCLOSE))
97 out = BIO_push(tmpbio, out);
101 ERR_get_string_table(), out); local
103 out); local
105 ERR_get_string_table(),out); local
    [all...]
  /external/openssl/crypto/des/
cbc_cksm.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
68 unsigned char *out = &(*output)[0]; local
90 if (out != NULL)
92 l2c(tout0,out);
93 l2c(tout1,out);
  /external/owasp/sanitizer/src/tests/org/owasp/html/
UrlTextExampleTest.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 StringBuilder out = new StringBuilder(); local
44 out,
56 out.toString());
VerboseTestRunner.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
43 final PrintStream out; field in class:VerboseTestRunner
46 out = System.out;
47 setPrinter(new VerboseResultPrinter(out));
52 VerboseResultPrinter(PrintStream out) {
53 super(out);
58 out.println("Started " + test);
59 out.flush();
66 out.println("ended " + test)
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
MarkResetConsole.java 26 private final PrintStream out; field in class:MarkResetConsole
30 public MarkResetConsole(PrintStream out) {
31 this.out = out;
48 out.print(text);
49 out.flush();
76 System.out.print("\u001b[0G\u001b[K\u001b[1A");
80 out.print("\u001b[0G\u001b[K");
81 out.print(markRowContent);
  /external/apache-http/src/org/apache/http/entity/
SerializableEntity.java 69 ObjectOutputStream out = new ObjectOutputStream(baos); local
70 out.writeObject(ser);
71 out.flush();
104 ObjectOutputStream out = new ObjectOutputStream(outstream); local
105 out.writeObject(this.objRef);
106 out.flush();
  /external/javasqlite/src/main/java/SQLite/
StringEncoder.java 72 StringBuffer out = new StringBuffer(outLen); local
73 out.append((char)shift);
79 out.append((char)1);
80 out.append((char)1);
82 out.append((char)1);
83 out.append((char)2);
85 out.append((char)1);
86 out.append((char)3);
88 out.append(c);
91 return out.toString()
234 StringBuffer out = new StringBuffer(outLen); local
    [all...]
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
GetExample.java 15 System.out.println(result);
32 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
35 out.write(buffer, 0, count);
37 return out.toByteArray();
PostExample.java 18 System.out.println(result);
23 OutputStream out = null; local
28 out = connection.getOutputStream();
29 out.write(body);
30 out.close();
41 if (out != null) out.close();
  /cts/common/host-side/xml-plan-generator/tests/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGeneratorTest.java 29 private static final String JAR = "out/host/linux-x86/framework/compatibility-xml-plan-generator_v2.jar";
105 final PrintWriter out = new PrintWriter(p.getOutputStream()); local
106 out.print(input);
107 out.flush();
108 out.close();
  /cts/suite/cts/hostTests/jank/app/src/com/android/cts/jank/
CtsJankTestBase.java 51 Scanner out = null; local
58 out = new Scanner(p.getInputStream());
62 if (out.hasNextLine()) {
63 outStr.append(out.nextLine());
89 if (out != null) {
90 out.close();
  /cts/tests/tests/security/src/android/security/cts/
ServicePermissionsTest.java 99 final FileOutputStream out = new FileOutputStream(mTempFile); local
101 serviceBinder.dump(out.getFD(), new String[0]);
115 out.close();
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java 81 FileOutputStream out = new FileOutputStream(sampleFile); local
82 out.write(new byte[] { 0x01, 0x02 });
83 out.close();
  /cts/tests/tests/text/src/android/text/cts/
AnnotationTest.java 72 Annotation out = new Annotation(dest); local
73 assertEquals(out.getKey(), mAnnotation.getKey());
74 assertEquals(out.getValue(), mAnnotation.getValue());
76 assertEquals(0, out.describeContents());
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
CharSinkTester.java 96 Writer out = create(); local
97 out.close();
104 Writer out = create(); local
106 out.write(a, 1000, 0);
107 out.write(a, 0, 0);
108 out.write(new char[] { });
110 out.close();
117 Writer out = create(); local
119 out.write(c);
122 out.close()
129 Writer out = create(); local
141 Writer out = create(); local
172 Writer out = create(); local
181 Writer out = create(); local
196 Writer out = create(); local
    [all...]
SinkTester.java 97 OutputStream out = create(); local
98 out.close();
105 OutputStream out = create(); local
107 out.write(a, 1000, 0);
108 out.write(a, 0, 0);
109 out.write(new byte[] { });
111 out.close();
118 OutputStream out = create(); local
120 out.write(b);
123 out.close()
134 OutputStream out = create(); local
156 OutputStream out = create(); local
184 OutputStream out = create(); local
193 OutputStream out = create(); local
208 OutputStream out = create(); local
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 58 private final SessionOutputBuffer out; field in class:ChunkedOutputStream
72 * @param out the session output buffer to wrap
76 public ChunkedOutputStream(final SessionOutputBuffer out, int bufferSize)
80 this.out = out;
87 * @param out the output buffer to wrap
90 public ChunkedOutputStream(final SessionOutputBuffer out)
92 this(out, 2048);
97 * Writes the cache out onto the underlying stream
102 this.out.writeLine(Integer.toHexString(this.cachePosition))
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
IoUtil.java 31 public static void pipe(InputStream is, OutputStream out, byte[] buf) throws IOException {
36 out.write(buf, 0, amt);
43 OutputStream out = new FileOutputStream(to); local
45 pipe(in, out, buf);
47 out.close();
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyServer.java 71 System.out.println("UNSUPPORTED");
77 System.out.println("PROTOCOL SELECTED: " + protocol);
113 BufferedSink out = Okio.buffer(stream.getSink()); local
114 out.writeUtf8("Not found: " + path);
115 out.close();
123 BufferedSink out = Okio.buffer(stream.getSink()); local
125 out.writeUtf8("<a href='" + file + "'>" + file + "</a><br>");
127 out.close();
136 BufferedSink out = Okio.buffer(stream.getSink()); local
140 out.write(buffer, 0, count)
    [all...]
  /external/okhttp/okio/src/main/java/okio/
Okio.java 58 /** Returns a sink that writes to {@code out}. */
59 public static Sink sink(final OutputStream out) {
70 out.write(head.data, head.pos, toCopy);
84 out.flush();
88 out.close();
98 return "sink(" + out + ")";
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 124 ClassDefItem out = local
131 out.setClassAnnotations(classAnnotations, dexFile);
136 processFields(cf, out, dexFile);
137 processMethods(cf, cfOptions, dexOptions, out, dexFile);
156 return out;
163 * @param out {@code non-null;} output class
167 DirectClassFile cf, ClassDefItem out, DexFile dexFile) {
184 out.addStaticField(fi, constVal);
187 out.addInstanceField(fi);
193 out.addFieldAnnotations(field, annotations, dexFile)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ReportExporter.java 70 ZipOutputStream out = null; local
72 out = new ZipOutputStream(new BufferedOutputStream(new FileOutputStream(reportFile)));
74 out.putNextEntry(entry);
75 out.write(contents);
81 if (out != null) {
82 out.close();
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
TextReport.java 31 PrintStream out = new PrintStream(outputStream); local
40 printPackage(apiPackage, out);
44 out.println();
45 out.println();
49 printPackage(apiPackage, out);
55 printClass(apiClass, out);
61 printConstructor(constructor, out);
67 printMethod(method, out);
75 private static void printPackage(ApiPackage apiPackage, PrintStream out) {
76 out.println(apiPackage.getName() + "
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
Utils.java 50 final OutputStream out = new FileOutputStream(file); local
52 out.write(data);
54 out.close();
  /external/emma/core/java12/com/vladium/util/
Descriptors.java 100 final StringBuffer out = new StringBuffer (); local
107 out.append (className);
109 out.append (methodVMName);
116 out.append (methodVMName);
122 out.append (" (");
128 if (start > 1) out.append (", ");
129 start = typeDescriptorToJavaName (chars, start, shortTypeNames, out);
135 out.append ("): ");
137 typeDescriptorToJavaName (chars, end + 1, shortTypeNames, out);
141 out.append (')')
    [all...]

Completed in 38 milliseconds

1 2 3 45 6 7 8 91011>>