Searched defs:level (Results 1 - 19 of 19) sorted by relevance

/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/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 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 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...]
/libcore/luni/src/main/native/
H A Djava_util_zip_Deflater.cpp42 static jlong Deflater_createStream(JNIEnv * env, jobject, jint level, jint strategy, jboolean noHeader) { argument
59 int err = deflateInit2(&jstream->stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
130 static void Deflater_setLevelsImpl(JNIEnv* env, jobject, int level, int strategy, jlong handle) { argument
138 int err = deflateParams(&stream->stream, level, strategy);
H A Djava_text_Bidi.cpp151 UBiDiLevel level = 0; local
155 ubidi_getLogicalRun(ubidi, start, &limit, &level);
156 jobject run = env->NewObject(JniConstants::bidiRunClass, bidiRunConstructor, start, limit, level);
H A Dlibcore_io_Posix.cpp975 static jint Posix_getsockoptByte(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
979 throwIfMinusOne(env, "getsockopt", TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &result, &size)));
983 static jobject Posix_getsockoptInAddr(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
990 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &sa->sin_addr, &size));
998 static jint Posix_getsockoptInt(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
1002 throwIfMinusOne(env, "getsockopt", TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &result, &size)));
1006 static jobject Posix_getsockoptLinger(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
1011 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &l, &size));
1019 static jobject Posix_getsockoptTimeval(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument
1024 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, optio
1032 Posix_getsockoptUcred(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) argument
1572 Posix_setsockoptByte(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument
1578 Posix_setsockoptIfreq(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jstring javaInterfaceName) argument
1587 Posix_setsockoptInt(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument
1598 Posix_setsockoptIpMreqn(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument
1606 Posix_setsockoptGroupReq(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaGroupReq) argument
1639 Posix_setsockoptGroupSourceReq(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaGroupSourceReq) argument
1682 Posix_setsockoptLinger(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaLinger) argument
1692 Posix_setsockoptTimeval(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaTimeval) argument
[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/luni/src/main/java/java/util/zip/
H A DDeflater.java55 * <p>A compression level must be {@link #DEFAULT_COMPRESSION} to compromise between speed and
56 * compression (currently equivalent to level 6), or between 0 ({@link #NO_COMPRESSION}, where
63 * This <a href="#compression_level">compression level</a> gives the best compression,
69 * This <a href="#compression_level">compression level</a> gives minimal compression,
70 * but takes the least time (of any level that actually performs compression;
76 * This <a href="#compression_level">compression level</a> does no compression.
82 * The default <a href="#compression_level">compression level</a>.
83 * This is a trade-off between speed and compression, currently equivalent to level 6.
159 * default <a href="#compression_level">compression level</a>.
170 * given <a href="#compression_level">compression level</
175 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.java503 * Sets the <a href="Deflater.html#compression_level">compression level</a> to be used
506 public void setLevel(int level) { argument
507 if (level < Deflater.DEFAULT_COMPRESSION || level > Deflater.BEST_COMPRESSION) {
508 throw new IllegalArgumentException("Bad level: " + level);
510 compressionLevel = level;
/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/javax/sql/
H A DRowSet.java194 * Gets the transaction isolation level property set for this
195 * {@code RowSet}. The transaction isolation level defines the
199 * @return the current transaction isolation level. Must be one of:
1728 * Sets the target instance's transaction isolation level to one of a
1729 * discrete set of possible values. The transaction isolation level defines
1733 * Keep in mind that setting a transaction isolation level has no effect
1736 * @param level
1737 * the transaction isolation level. One of:
1748 public void setTransactionIsolation(int level) throws SQLException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java31 * Access to low-level system functionality. Most of these are system calls. Most users will want
32 * to use higher-level APIs where available, but this class provides access to the underlying
33 * primitives used to implement the higher-level APIs.
201 /** @hide */ public static int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptByte(fd, level, option); } argument
202 /** @hide */ public static InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptInAddr(fd, level, option); } argument
203 /** @hide */ public static int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { return Libcore.os.getsockoptInt(fd, level, option); } argument
204 /** @hide */ public static StructLinger getsockoptLinger(FileDescriptor fd, int level, in argument
205 getsockoptTimeval(FileDescriptor fd, int level, int option) argument
206 getsockoptUcred(FileDescriptor fd, int level, int option) argument
461 setsockoptByte(FileDescriptor fd, int level, int option, int value) argument
462 setsockoptIfreq(FileDescriptor fd, int level, int option, String value) argument
463 setsockoptInt(FileDescriptor fd, int level, int option, int value) argument
464 setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) argument
465 setsockoptGroupReq(FileDescriptor fd, int level, int option, StructGroupReq value) argument
466 setsockoptGroupSourceReq(FileDescriptor fd, int level, int option, StructGroupSourceReq value) argument
467 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument
468 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java189 * Skip lists add indexing to this scheme, so that the base-level
191 * or deleted -- usually base level traversals only traverse a few
220 * the base-level action, to add or remove index nodes. This adds
234 * do, half have one level, a quarter have two, and so on (see
239 * Changing the level of the index (i.e, the height of the
241 * level/height of one. Creation of an index with height greater
242 * than the current level adds a level to the head index by
247 * reduce and "lose" a level just as it is about to contain an
265 * only, returning a base-level predecesso
595 final int level; field in class:ConcurrentSkipListMap.HeadIndex
596 HeadIndex(Node<K,V> node, Index<K,V> down, Index<K,V> right, int level) argument
896 insertIndex(Node<K,V> z, int level) argument
[all...]
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java91 public int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptByte(fd, level, option); } argument
92 public InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptInAddr(fd, level, option); } argument
93 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptInt(fd, level, option); } argument
94 public StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptLinger(fd, level, option); } argument
95 public StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptTimeval(fd, level, optio argument
96 getsockoptUcred(FileDescriptor fd, int level, int option) argument
149 setsockoptByte(FileDescriptor fd, int level, int option, int value) argument
150 setsockoptIfreq(FileDescriptor fd, int level, int option, String value) argument
151 setsockoptInt(FileDescriptor fd, int level, int option, int value) argument
152 setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) argument
153 setsockoptGroupReq(FileDescriptor fd, int level, int option, StructGroupReq value) argument
154 setsockoptGroupSourceReq(FileDescriptor fd, int level, int option, StructGroupSourceReq value) argument
155 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument
156 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument
[all...]
H A DOs.java83 public int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException; argument
84 public InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException; argument
85 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; argument
86 public StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException; argument
87 public StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException; argument
88 public StructUcred getsockoptUcred(FileDescriptor fd, int level, int option) throws ErrnoException; argument
142 public void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
143 public void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException; argument
144 public void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
145 public void setsockoptIpMreqn(FileDescriptor fd, int level, in argument
146 setsockoptGroupReq(FileDescriptor fd, int level, int option, StructGroupReq value) argument
147 setsockoptGroupSourceReq(FileDescriptor fd, int level, int option, StructGroupSourceReq value) argument
148 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument
149 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument
[all...]
H A DPosix.java85 public native int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException; argument
86 public native InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException; argument
87 public native int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; argument
88 public native StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException; argument
89 public native StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException; argument
90 public native StructUcred getsockoptUcred(FileDescriptor fd, int level, int option) throws ErrnoException; argument
226 public native void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
227 public native void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException; argument
228 public native void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument
229 public native void setsockoptIpMreqn(FileDescriptor fd, int level, in argument
230 setsockoptGroupReq(FileDescriptor fd, int level, int option, StructGroupReq value) argument
231 setsockoptGroupSourceReq(FileDescriptor fd, int level, int option, StructGroupSourceReq value) argument
232 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument
233 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument
[all...]

Completed in 356 milliseconds