Searched defs:err (Results 1 - 11 of 11) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DFileDescriptor.java45 public static final FileDescriptor err = new FileDescriptor(); field in class:FileDescriptor
56 err.descriptor = STDERR_FILENO;
/libcore/luni/src/main/native/
H A DZipUtilities.cpp53 int err; local
55 err = inflateSetDictionary(&stream, dictionary, len);
57 err = deflateSetDictionary(&stream, dictionary, len);
59 if (err != Z_OK) {
60 throwExceptionForZlibError(env, "java/lang/IllegalArgumentException", err, NULL);
H A Djava_util_zip_Deflater.cpp59 int err = deflateInit2(&jstream->stream, level, Z_DEFLATED, windowBits, memLevel, strategy); local
60 if (err != Z_OK) {
61 throwExceptionForZlibError(env, "java/lang/IllegalArgumentException", err, jstream.get());
83 int err = deflate(&stream->stream, flushStyle); local
84 switch (err) {
97 throwExceptionForZlibError(env, "java/util/zip/DataFormatException", err, stream);
119 int err = deflateReset(&stream->stream); local
120 if (err != Z_OK) {
121 throwExceptionForZlibError(env, "java/lang/IllegalArgumentException", err, stream);
133 int err local
[all...]
H A Djava_util_zip_Inflater.cpp43 int err = inflateInit2(&jstream->stream, noHeader ? -DEF_WBITS : DEF_WBITS); local
44 if (err != Z_OK) {
45 throwExceptionForZlibError(env, "java/lang/IllegalArgumentException", err, jstream.get());
103 int err = inflate(&stream->stream, Z_SYNC_FLUSH); local
104 switch (err) {
118 throwExceptionForZlibError(env, "java/util/zip/DataFormatException", err, stream);
148 int err = inflateReset(&stream->stream); local
149 if (err != Z_OK) {
150 throwExceptionForZlibError(env, "java/lang/IllegalArgumentException", err, stream);
H A Djava_text_Bidi.cpp90 UErrorCode err = U_ZERO_ERROR; local
91 ubidi_setPara(data->uBiDi(), chars.get(), length, paraLevel, data->embeddingLevels(), &err);
92 maybeThrowIcuException(env, "ubidi_setPara", err);
H A Dlibcore_icu_NativeConverter.cpp369 UConverterCallbackReason, UErrorCode * err) {
374 *err = U_ZERO_ERROR;
375 ucnv_cbFromUWriteBytes(fromArgs, context->replacementBytes, context->replacementByteCount, 0, err);
421 static void decoderIgnoreCallback(const void*, UConverterToUnicodeArgs*, const char*, int32_t, UConverterCallbackReason, UErrorCode* err) { argument
424 *err = U_ZERO_ERROR;
429 UErrorCode* err) {
434 *err = U_ZERO_ERROR;
435 ucnv_cbToUWriteUChars(toArgs,context->replacementChars, context->replacementCharCount, 0, err);
367 encoderReplaceCallback(const void* rawContext, UConverterFromUnicodeArgs* fromArgs, const UChar*, int32_t, UChar32, UConverterCallbackReason, UErrorCode * err) argument
427 decoderReplaceCallback(const void* rawContext, UConverterToUnicodeArgs* toArgs, const char*, int32_t, UConverterCallbackReason, UErrorCode* err) argument
/libcore/luni/src/test/java/libcore/java/util/logging/
H A DOldErrorManagerTest.java27 private final PrintStream err = System.err; field in class:OldErrorManagerTest
31 System.setErr(err);
/libcore/luni/src/main/java/java/lang/
H A DThrowable.java233 * to the {@code System.err} stream.
236 printStackTrace(System.err);
280 public void printStackTrace(PrintStream err) { argument
282 printStackTrace(err, "", null);
295 * @param err
298 public void printStackTrace(PrintWriter err) { argument
300 printStackTrace(err, "", null);
313 private void printStackTrace(Appendable err, String indent, StackTraceElement[] parentStack) argument
315 err.append(toString());
316 err
[all...]
H A DProcessManager.java157 * Executes a native process. Fills in in, out, and err and returns the
162 FileDescriptor err, boolean redirectErrorStream) throws IOException;
198 FileDescriptor err = new FileDescriptor();
209 pid = exec(command, environment, workingPath, in, out, err, redirectErrorStream);
218 ProcessImpl process = new ProcessImpl(pid, in, out, err);
247 ProcessImpl(int pid, FileDescriptor in, FileDescriptor out, FileDescriptor err) { argument
250 this.errorStream = new ProcessInputStream(err);
160 exec(String[] command, String[] environment, String workingDirectory, FileDescriptor in, FileDescriptor out, FileDescriptor err, boolean redirectErrorStream) argument
H A DSystem.java82 public static final PrintStream err; field in class:System
105 err = new PrintStream(new FileOutputStream(FileDescriptor.err));
144 setFieldImpl("err", "Ljava/io/PrintStream;", newErr);
1112 * Used to set System.err, System.in, and System.out.
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 207 milliseconds