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

/dalvik/libcore/dalvik/src/main/java/dalvik/annotation/
H A DTestTargetNew.java57 * Specifies the level of coverage the tested API method has.
59 TestLevel level(); method in interface:TestTargetNew
/dalvik/libcore/dalvik/src/main/java/dalvik/system/
H A DDalvikLogHandler.java44 void publish(Logger source, String tag, Level level, String message); argument
/dalvik/libcore/text/src/main/java/org/apache/harmony/text/
H A DBidiRun.java28 private final int level; field in class:BidiRun
30 public BidiRun(int start, int limit, int level) { argument
33 this.level = level;
37 return level;
53 && this.level == ((BidiRun) o).level;
/dalvik/libcore/archive/src/main/native/
H A Djava_util_zip_Deflater.c97 jint level, jint strategy,
144 err = deflateInit2 (stream, level, Z_DEFLATED, /*Only supported ZLIB method */
261 int level, int strategy,
275 err = deflateParams (stream->stream, level, strategy);
96 Java_java_util_zip_Deflater_createStream(JNIEnv * env, jobject recv, jint level, jint strategy, jboolean noHeader) argument
260 Java_java_util_zip_Deflater_setLevelsImpl(JNIEnv * env, jobject recv, int level, int strategy, jlong handle) argument
/dalvik/libcore/logging/src/main/java/java/util/logging/
H A DLevel.java35 * {@code Level} objects are used to indicate the level of logging. There are a
37 * Enabling a certain logging level also enables all logging levels with larger
52 * The OFF level provides no logging messages.
57 * The SEVERE level provides severe failure messages.
62 * The WARNING level provides warnings.
67 * The INFO level provides informative messages.
72 * The CONFIG level provides static configuration messages.
77 * The FINE level provides tracing messages.
82 * The FINER level provides more detailed tracing messages.
87 * The FINEST level provide
191 Level(String name, int level) argument
208 Level(String name, int level, String resourceBundleName) argument
[all...]
H A DHandler.java30 * disabled by setting its logging level to {@code Level.OFF}.
42 // the logging level
43 private Level level; field in class:Handler
57 * level {@code Level.ALL}. It has no filter and no formatter.
61 this.level = DEFAULT_LEVEL;
110 * init the common properties, including filter, level, formatter, and
130 // set level
131 String levelName = manager.getProperty(prefix + ".level"); //$NON-NLS-1$
134 level = Level.parse(levelName);
136 printInvalidPropMessage("level", levelNam
[all...]
H A DLogRecord.java64 * The logging level.
68 private Level level; field in class:LogRecord
144 * level and message. The millis property is set to the current time. The
149 * @param level
150 * the logging level, may not be {@code null}.
154 * if {@code level} is {@code null}.
156 public LogRecord(Level level, String msg) { argument
157 if (null == level) {
158 // logging.4=The 'level' parameter is null.
161 this.level
202 setLevel(Level level) argument
[all...]
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DDeflater.java39 * Upper bound for the compression level range.
44 * Lower bound for compression level range.
49 * Usage of the default compression level.
74 * Possible value for compression level.
140 * level. The strategy can be specified with {@link #setStrategy}, only. A
142 * Deflater(level, boolean)} if you need to omit the header.
150 * level. The strategy can be specified with {@code setStrategy}, only. A
152 * {@code Deflater(level, boolean)} if you need to omit the header.
154 * @param level
155 * the compression level i
157 Deflater(int level) argument
172 Deflater(int level, boolean noHeader) argument
477 setLevelsImpl(int level, int strategy, long handle) argument
493 setLevel(int level) argument
556 createStream(int level, int strategy1, boolean noHeader1) argument
[all...]
H A DZipOutputStream.java338 * Sets the compression level to be used for writing entry data. This level
339 * may be set on a per entry basis. The level must have a value between -1
340 * and 8 according to the {@code Deflater} compression level bounds.
342 * @param level
343 * the compression level (ranging from -1 to 8).
346 public void setLevel(int level) { argument
347 if (level < Deflater.DEFAULT_COMPRESSION
348 || level > Deflater.BEST_COMPRESSION) {
351 compressLevel = level;
[all...]
/dalvik/libcore/icu/src/main/native/
H A DBidiWrapper.cpp121 UBiDiLevel level = 0; local
125 ubidi_getLogicalRun(data->mBiDi, start, &limit, &level);
126 jobject run = env->NewObject(bidiRunClass, bidiRunConstructor, start, limit, level);
/dalvik/libcore/sql/src/main/java/java/sql/
H A DConnection.java128 * type {@code ResultSet.TYPE_FORWARD_ONLY} and concurrency level {@code
249 * Returns the transaction isolation level for this connection.
264 * The type mapping must be set on the application level.
730 * Sets the transaction isolation level for this Connection.
735 * @param level
736 * the new transaction isolation level to use from the following
746 * {@code level} is not one of the expected constant values.
748 public void setTransactionIsolation(int level) throws SQLException; argument
H A DDatabaseMetaData.java822 * Returns the default transaction isolation level for this database.
824 * @return the default transaction isolation level. One of the following values:
2331 * Determines whether the database supports the ANSI92 entry level SQL grammar.
2333 * @return {@code true} if the ANSI92 entry level SQL grammar is supported,
2995 * Determines whether a specified transaction isolation level is supported.
2997 * @param level
2998 * the transaction isolation level, as specified in {@code
3003 * @return {@code true} if the specific isolation level is supported,
3008 public boolean supportsTransactionIsolationLevel(int level) argument
3015 * nothing and the transaction isolation level i
[all...]
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTestHelper_Connection1.java174 public void setTransactionIsolation(int level) throws SQLException { argument
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DAlertProtocol.java134 // holds level and description codes
162 * @param level: alert level code
166 protected void alert(byte level, byte description) { argument
168 logger.println("Alert.alert: "+level+" "+description);
170 this.alert[0] = level;
H A DSSLRecordProtocol.java437 * @param level: byte
440 protected void alert(byte level, byte description) { argument
442 logger.println("SSLRecordProtocol.allert: "+level+" "+description);
444 alertProtocol.alert(level, description);
/dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
H A DJDBCConnection.java316 public void setTransactionIsolation(int level) throws SQLException { argument
317 if (level != TRANSACTION_SERIALIZABLE) {
H A DJDBCDatabaseMetaData.java473 public boolean supportsTransactionIsolationLevel(int level) argument
475 return level == Connection.TRANSACTION_SERIALIZABLE;
/dalvik/libcore/sql/src/main/java/javax/sql/
H A DRowSet.java190 * Gets the transaction isolation level property set for this
191 * {@code RowSet}. The transaction isolation level defines the
195 * @return the current transaction isolation level. Must be one of:
843 * Sets the target instance's transaction isolation level to one of a
844 * discrete set of possible values. The transaction isolation level defines
848 * Keep in mind that setting a transaction isolation level has no effect
851 * @param level
852 * the transaction isolation level. One of:
863 public void setTransactionIsolation(int level) throws SQLException; argument
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
H A DImpl_RowSet.java232 public void setTransactionIsolation(int level) throws SQLException { argument
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp99 #define SOCKERR_SOCKLEVELINVALID -232 /* The socket level is invalid */
705 return "The socket level is invalid";
1088 static const char *sockoptLevelToString(int level) { argument
1089 switch(level) {
1203 * option at the HY_IPPROTO_IP level on the socket.
1308 int level; local
1317 level = IPPROTO_IP;
1333 level = IPPROTO_IPV6;
1341 result = setsockopt(handle, level, setSockOptVal, multicastRequest,

Completed in 311 milliseconds