/libcore/dalvik/src/main/java/dalvik/system/ |
H A D | DalvikLogHandler.java | 44 void publish(Logger source, String tag, Level level, String message); argument
|
/libcore/luni/src/main/java/java/util/logging/ |
H A D | Level.java | 32 * {@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 D | LogRecord.java | 62 * 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 D | Handler.java | 26 * 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 D | Logger.java | 47 * <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 D | Deflater.java | 57 * 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 D | ZipOutputStream.java | 356 * Sets the compression level to be used for writing entry data. This level 357 * may be set on a per entry basis. The level must have a value between -1 358 * and 8 according to the {@code Deflater} compression level bounds. 360 * @param level 361 * the compression level (ranging from -1 to 8). 364 public void setLevel(int level) { argument 365 if (level < Deflater.DEFAULT_COMPRESSION || level > Deflater.BEST_COMPRESSION) { 368 compressLevel = level; [all...] |
/libcore/dalvik/src/main/java/dalvik/annotation/ |
H A D | TestTargetNew.java | 55 * 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 D | AlertProtocol.java | 130 // 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 D | SSLRecordProtocol.java | 432 * @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 D | ForwardingOs.java | 66 public int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptByte(fd, level, option); } argument 67 public InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptInAddr(fd, level, option); } argument 68 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptInt(fd, level, option); } argument 69 public StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptLinger(fd, level, option); } argument 70 public StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException { return os.getsockoptTimeval(fd, level, optio argument 108 setsockoptByte(FileDescriptor fd, int level, int option, int value) argument 109 setsockoptIfreq(FileDescriptor fd, int level, int option, String value) argument 110 setsockoptInt(FileDescriptor fd, int level, int option, int value) argument 111 setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) argument 112 setsockoptGroupReq(FileDescriptor fd, int level, int option, StructGroupReq value) argument 113 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument 114 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument [all...] |
H A D | Os.java | 58 public int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException; argument 59 public InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException; argument 60 public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; argument 61 public StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException; argument 62 public StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException; argument 101 public void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument 102 public void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException; argument 103 public void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument 104 public void setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument 105 public void setsockoptGroupReq(FileDescriptor fd, int level, in argument 106 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument 107 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument [all...] |
H A D | Posix.java | 60 public native int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException; argument 61 public native InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException; argument 62 public native int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException; argument 63 public native StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException; argument 64 public native StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException; argument 152 public native void setsockoptByte(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument 153 public native void setsockoptIfreq(FileDescriptor fd, int level, int option, String value) throws ErrnoException; argument 154 public native void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument 155 public native void setsockoptIpMreqn(FileDescriptor fd, int level, int option, int value) throws ErrnoException; argument 156 public native void setsockoptGroupReq(FileDescriptor fd, int level, in argument 157 setsockoptLinger(FileDescriptor fd, int level, int option, StructLinger value) argument 158 setsockoptTimeval(FileDescriptor fd, int level, int option, StructTimeval value) argument [all...] |
H A D | IoBridge.java | 370 int level = (groupReq.gr_group instanceof Inet4Address) ? IPPROTO_IP : IPPROTO_IPV6; 372 Libcore.os.setsockoptGroupReq(fd, level, op, groupReq);
|
/libcore/dalvik/src/main/native/ |
H A D | sub.mk | 2 # This file is included by the top-level libcore Android.mk.
|
/libcore/luni/src/main/native/ |
H A D | java_util_zip_Deflater.cpp | 40 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 D | libcore_io_Posix.cpp | 676 static jint Posix_getsockoptByte(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument 680 throwIfMinusOne(env, "getsockopt", TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &result, &size))); 684 static jobject Posix_getsockoptInAddr(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument 691 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &sa->sin_addr, &size)); 699 static jint Posix_getsockoptInt(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument 703 throwIfMinusOne(env, "getsockopt", TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &result, &size))); 707 static jobject Posix_getsockoptLinger(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument 712 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, option, &l, &size)); 720 static jobject Posix_getsockoptTimeval(JNIEnv* env, jobject, jobject javaFd, jint level, jint option) { argument 725 int rc = TEMP_FAILURE_RETRY(getsockopt(fd, level, optio 1045 Posix_setsockoptByte(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument 1051 Posix_setsockoptIfreq(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jstring javaInterfaceName) argument 1060 Posix_setsockoptInt(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument 1065 Posix_setsockoptIpMreqn(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jint value) argument 1073 Posix_setsockoptGroupReq(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaGroupReq) argument 1104 Posix_setsockoptLinger(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaLinger) argument 1114 Posix_setsockoptTimeval(JNIEnv* env, jobject, jobject javaFd, jint level, jint option, jobject javaTimeval) argument [all...] |
H A D | java_text_Bidi.cpp | 149 UBiDiLevel level = 0; local 153 ubidi_getLogicalRun(ubidi, start, &limit, &level); 154 jobject run = env->NewObject(JniConstants::bidiRunClass, bidiRunConstructor, start, limit, level);
|
H A D | sub.mk | 2 # This file is included by the top-level libcore Android.mk.
|
/libcore/luni/src/main/java/java/text/ |
H A D | Bidi.java | 34 * 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 D | ConcurrentSkipListMap.java | 187 * 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 566 final int level; field in class:ConcurrentSkipListMap.HeadIndex 567 HeadIndex(Node<K,V> node, Index<K,V> down, Index<K,V> right, int level) argument 867 insertIndex(Node<K,V> z, int level) argument [all...] |
/libcore/luni/src/main/java/java/sql/ |
H A D | Connection.java | 129 * 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 D | DatabaseMetaData.java | 889 * 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 D | Driver.java | 364 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);
|
/libcore/luni/src/main/java/javax/sql/ |
H A D | RowSet.java | 194 * 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
|