android.util.EventLog Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.util;
public class EventLog
{
public static final class Event
{
Event() { throw new RuntimeException("Stub!"); }
public int getProcessId() { throw new RuntimeException("Stub!"); }
public int getThreadId() { throw new RuntimeException("Stub!"); }
public long getTimeNanos() { throw new RuntimeException("Stub!"); }
public int getTag() { throw new RuntimeException("Stub!"); }
public synchronized java.lang.Object getData() { throw new RuntimeException("Stub!"); }
}
EventLog() { throw new RuntimeException("Stub!"); }
public static native int writeEvent(int tag, int value);
public static native int writeEvent(int tag, long value);
public static native int writeEvent(int tag, java.lang.String str);
public static native int writeEvent(int tag, java.lang.Object... list);
public static native void readEvents(int[] tags, java.util.Collection output) throws java.io.IOException;
public static java.lang.String getTagName(int tag) { throw new RuntimeException("Stub!"); }
public static int getTagCode(java.lang.String name) { throw new RuntimeException("Stub!"); }
}