Searched refs:level (Results 1 - 25 of 26) sorted by relevance

12

/libcore/dalvik/src/main/java/dalvik/system/
H A DDalvikLogHandler.java44 void publish(Logger source, String tag, Level level, String message); argument
/libcore/luni/src/main/java/java/util/logging/
H A DLevel.java32 * {@code Level} objects are used to indicate the level of logging. There are a
34 * Enabling a certain logging level also enables all logging levels with larger
49 * The OFF level provides no logging messages.
54 * The SEVERE level provides severe failure messages.
59 * The WARNING level provides warnings.
64 * The INFO level provides informative messages.
69 * The CONFIG level provides static configuration messages.
74 * The FINE level provides tracing messages.
79 * The FINER level provides more detailed tracing messages.
84 * The FINEST level provide
185 Level(String name, int level) argument
202 Level(String name, int level, String resourceBundleName) argument
[all...]
H A DLogRecord.java62 * The logging level.
66 private Level level; field in class:LogRecord
142 * level and message. The millis property is set to the current time. The
147 * @param level
148 * the logging level, may not be {@code null}.
152 * if {@code level} is {@code null}.
154 public LogRecord(Level level, String msg) { argument
155 if (level == null) {
156 throw new NullPointerException("level == null");
158 this.level
199 setLevel(Level level) argument
[all...]
H A DHandler.java26 * disabled by setting its logging level to {@code Level.OFF}.
38 // the logging level
39 private Level level; field in class:Handler
53 * level {@code Level.ALL}. It has no filter and no formatter.
57 this.level = DEFAULT_LEVEL;
95 * init the common properties, including filter, level, formatter, and
115 // set level
116 String levelName = manager.getProperty(prefix + ".level");
119 level = Level.parse(levelName);
121 printInvalidPropMessage("level", levelNam
[all...]
H A DLogger.java47 * <p>Loggers "inherit" log level setting from their parent if their own level is
77 public void publish(Logger source, String tag, Level level, String message) {
78 LogRecord record = new LogRecord(level, message);
115 /** The logging level of this logger, or null if none is set. */
119 * The effective logging level of this logger. In order of preference this
123 * <li>the logging level of the parent
124 * <li>the default level ({@link Level#INFO})
297 * inherits the default logging level and handlers from the root logger.
311 * inherits default logging level an
[all...]
/libcore/luni/src/main/java/java/util/zip/
H A DDeflater.java57 * Upper bound for the compression level range.
62 * Lower bound for compression level range.
67 * The default compression level.
92 * A compression level.
154 * level. The strategy can be specified with {@link #setStrategy}. A
164 * level {@code level}. The strategy can be specified with {@link #setStrategy}.
168 * @param level
169 * the compression level in the range between 0 and 9.
171 public Deflater(int level) { argument
186 Deflater(int level, boolean noHeader) argument
412 setLevelsImpl(int level, int strategy, long handle) argument
423 setLevel(int level) argument
472 createStream(int level, int strategy1, boolean noHeader1) argument
[all...]
H A DZipOutputStream.java360 * Sets the compression level to be used for writing entry data. This level
361 * may be set on a per entry basis. The level must have a value between -1
362 * and 8 according to the {@code Deflater} compression level bounds.
364 * @param level
365 * the compression level (ranging from -1 to 8).
368 public void setLevel(int level) { argument
369 if (level < Deflater.DEFAULT_COMPRESSION || level > Deflater.BEST_COMPRESSION) {
372 compressLevel = level;
[all...]
/libcore/dalvik/src/main/java/dalvik/annotation/
H A DTestTargetNew.java55 * Specifies the level of coverage the tested API method has.
57 TestLevel level(); method in interface:TestTargetNew
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DAlertProtocol.java130 // holds level and description codes
158 * @param level: alert level code
162 protected void alert(byte level, byte description) { argument
164 logger.println("Alert.alert: "+level+" "+description);
166 this.alert[0] = level;
H A DSSLRecordProtocol.java432 * @param level: byte
435 protected void alert(byte level, byte description) { argument
437 logger.println("SSLRecordProtocol.allert: "+level+" "+description);
439 alertProtocol.alert(level, description);
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java70 public int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptByte(fd, level, option); } argument
71 public InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptInAddr(fd, level, option); } argument
72 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptInt(fd, level, option); } argument
73 public StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptLinger(fd, level, option); } argument
74 public StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptTimeval(fd, level, optio argument
114 setsockoptByte(FileDescriptor fd, int level, int option, int value) argument
115 setsockoptIfreq(FileDescriptor fd, int level, int option, String value) argument
116 setsockoptInt(FileDescriptor fd, int level, int option, int value) argument
117 setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) argument
118 setsockoptGroupReq(FileDescriptor fd, int level, int option, StructGroupReq value) argument
119 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument
120 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument
[all...]
H A DOs.java62 public int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException; argument
63 public InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException; argument
64 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; argument
65 public StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException; argument
66 public StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException; argument
107 public void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
108 public void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException; argument
109 public void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
110 public void setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
111 public void setsockoptGroupReq(FileDescriptor fd, int level, in argument
112 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument
113 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument
[all...]
H A DPosix.java64 public native int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException; argument
65 public native InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException; argument
66 public native int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; argument
67 public native StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException; argument
68 public native StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException; argument
158 public native void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
159 public native void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException; argument
160 public native void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
161 public native void setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
162 public native void setsockoptGroupReq(FileDescriptor fd, int level, in argument
163 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument
164 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument
[all...]
H A DIoBridge.java380 int level = (groupReq.gr_group instanceof Inet4Address) ? IPPROTO_IP : IPPROTO_IPV6;
382 Libcore.os.setsockoptGroupReq(fd, level, op, groupReq);
/libcore/dalvik/src/main/native/
H A Dsub.mk2 # This file is included by the top-level libcore Android.mk.
/libcore/luni/src/main/native/
H A Djava_util_zip_Deflater.cpp40 static jlong Deflater_createStream(JNIEnv * env, jobject, jint level, jint strategy, jboolean noHeader) { argument
57 int err = deflateInit2(&jstream->stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
123 static void Deflater_setLevelsImpl(JNIEnv* env, jobject, int level, int strategy, jlong handle) { argument
131 int err = deflateParams(&stream->stream, level, strategy);
H A Dsub.mk2 # This file is included by the top-level libcore Android.mk.
H A Djava_text_Bidi.cpp149 UBiDiLevel level = 0; local
153 ubidi_getLogicalRun(ubidi, start, &limit, &level);
154 jobject run = env->NewObject(JniConstants::bidiRunClass, bidiRunConstructor, start, limit, level);
H A Dlibcore_io_Posix.cpp690 static jint Posix_getsockoptByte(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
694 throwIfMinusOne(env, "getsockopt", TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &result, &size)));
698 static jobject Posix_getsockoptInAddr(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
705 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &sa->sin_addr, &size));
713 static jint Posix_getsockoptInt(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
717 throwIfMinusOne(env, "getsockopt", TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &result, &size)));
721 static jobject Posix_getsockoptLinger(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
726 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &l, &size));
734 static jobject Posix_getsockoptTimeval(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
739 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, optio
1078 Posix_setsockoptByte(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument
1084 Posix_setsockoptIfreq(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jstring javaInterfaceName) argument
1093 Posix_setsockoptInt(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument
1098 Posix_setsockoptIpMreqn(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument
1106 Posix_setsockoptGroupReq(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaGroupReq) argument
1137 Posix_setsockoptLinger(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaLinger) argument
1147 Posix_setsockoptTimeval(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaTimeval) argument
[all...]
/libcore/luni/src/main/java/java/text/
H A DBidi.java34 * obtained from the run index. The level of any particular run indicates the
35 * direction of the text as well as the nesting level. Left-to-right runs have
40 * Constant that indicates the default base level. If there is no strong
41 * character, then set the paragraph level to 0 (left-to-right).
46 * Constant that indicates the default base level. If there is no strong
47 * character, then set the paragraph level to 1 (right-to-left).
52 * Constant that specifies the default base level as 0 (left-to-right).
57 * Constant that specifies the default base level as 1 (right-to-left).
67 private final int level; field in class:Bidi.Run
69 public Run(int start, int limit, int level) { argument
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java187 * Skip lists add indexing to this scheme, so that the base-level
189 * or deleted -- usually base level traversals only traverse a few
218 * the base-level action, to add or remove index nodes. This adds
232 * do, half have one level, a quarter have two, and so on (see
237 * Changing the level of the index (i.e, the height of the
239 * level/height of one. Creation of an index with height greater
240 * than the current level adds a level to the head index by
245 * reduce and "lose" a level just as it is about to contain an
263 * only, returning a base-level predecesso
585 final int level; field in class:ConcurrentSkipListMap.HeadIndex
586 HeadIndex(Node<K,V> node, Index<K,V> down, Index<K,V> right, int level) argument
886 insertIndex(Node<K,V> z, int level) argument
[all...]
H A DForkJoinPool.java49 * parallelism level; by default, equal to the number of available
230 * fewer than the given parallelism level -- see signalWork).
305 * Style notes: There is a lot of representation-level coupling
314 * changes anyway. All together, these low-level implementation
528 * The target parallelism level.
607 * Top-level loop for worker threads: On each step: if the
1388 * level, the {@linkplain
1392 * @param parallelism the parallelism level
1403 * @param parallelism the parallelism level. For default value,
1638 * Returns the targeted parallelism level o
[all...]
/libcore/luni/src/main/java/java/sql/
H A DConnection.java129 * type {@code ResultSet.TYPE_FORWARD_ONLY} and concurrency level {@code
250 * Returns the transaction isolation level for this connection.
265 * The type mapping must be set on the application level.
731 * Sets the transaction isolation level for this Connection.
736 * @param level
737 * the new transaction isolation level to use from the following
747 * {@code level} is not one of the expected constant values.
749 public void setTransactionIsolation(int level) throws SQLException; argument
H A DDatabaseMetaData.java889 * Returns the default transaction isolation level for this database.
891 * @return the default transaction isolation level. One of the following values:
2398 * Determines whether the database supports the ANSI92 entry level SQL grammar.
2400 * @return {@code true} if the ANSI92 entry level SQL grammar is supported,
3062 * Determines whether a specified transaction isolation level is supported.
3064 * @param level
3065 * the transaction isolation level, as specified in {@code
3070 * @return {@code true} if the specific isolation level is supported,
3075 public boolean supportsTransactionIsolationLevel(int level) argument
3082 * nothing and the transaction isolation level i
[all...]
/libcore/xml/src/main/java/org/xmlpull/v1/sax2/
H A DDriver.java364 int level = pp.getDepth() - 1;
374 (level > depth) ? pp.getNamespaceCount(depth) : 0;
401 //++level;
412 //--level;
429 (level > depth) ? pp.getNamespaceCount(pp.getDepth()) : 0;
450 } while(pp.getDepth() > level);

Completed in 320 milliseconds

12