Base function finished

This commit is contained in:
NudeDude 2018-01-11 18:14:11 +01:00
parent 9e38bd34d0
commit 89acc4b0f2
13 changed files with 572 additions and 76 deletions

View File

@ -89,7 +89,7 @@ public class ShowStatus extends AsyncTask<Long, Void, Boolean> {
usernameStr = currentTweet.getUser().getName();
scrNameStr = currentTweet.getUser().getScreenName();
Query query = new Query("to:"+scrNameStr+" since_id:"+tweetID+" +exclude:retweets");
Query query = new Query("to:"+scrNameStr+" since_id:"+tweetID+" -filter:retweets");
query.setCount(load);
QueryResult result = twitter.search(query);

View File

@ -1,12 +1,19 @@
package org.nuclearfog.twidda.database;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.SharedPreferences;
import android.widget.Button;
import com.flask.colorpicker.ColorPickerView;
import com.flask.colorpicker.OnColorSelectedListener;
import com.flask.colorpicker.OnColorChangedListener;
import com.flask.colorpicker.builder.ColorPickerDialogBuilder;
public class ColorPreferences implements OnColorSelectedListener {
import org.nuclearfog.twidda.R;
import org.nuclearfog.twidda.window.AppSettings;
public class ColorPreferences implements OnColorChangedListener, DialogInterface.OnDismissListener {
public static final int BACKGROUND = 0x0;
public static final int FONT_COLOR = 0x1;
@ -21,7 +28,6 @@ public class ColorPreferences implements OnColorSelectedListener {
private SharedPreferences settings;
private static Context context;
private ColorPreferences(Context context) {
ColorPreferences.context = context;
settings = context.getSharedPreferences("settings", 0);
@ -31,7 +37,7 @@ public class ColorPreferences implements OnColorSelectedListener {
}
@Override
public void onColorSelected(int i) {
public void onColorChanged(int i) {
switch(mode) {
case BACKGROUND:
background = i;
@ -45,6 +51,35 @@ public class ColorPreferences implements OnColorSelectedListener {
}
}
@Override
public void onDismiss(DialogInterface i) {
Button colorButton1 = (Button)((AppSettings)context).findViewById(R.id.color_background);
Button colorButton2 = (Button)((AppSettings)context).findViewById(R.id.color_font);
Button colorButton3 = (Button)((AppSettings)context).findViewById(R.id.color_tweet);
String color1Str = "#"+Integer.toHexString(background);
String color2Str = "#"+Integer.toHexString(font);
String color3Str = "#"+Integer.toHexString(tweet);
colorButton1.setBackgroundColor(background);
colorButton2.setBackgroundColor(font);
colorButton3.setBackgroundColor(tweet);
colorButton1.setText(color1Str);
colorButton2.setText(color2Str);
colorButton3.setText(color3Str);
}
public int getColor(final int Mode){
switch (Mode) {
case BACKGROUND:
return background;
case FONT_COLOR:
return font;
case TWEET_COLOR:
return tweet;
default:
return -1;
}
}
public void setColor(final int MODE) {
int preColor = 0x0;
mode = MODE;
@ -54,10 +89,12 @@ public class ColorPreferences implements OnColorSelectedListener {
preColor = font;
else if(MODE == TWEET_COLOR)
preColor = tweet;
ColorPickerDialogBuilder.with(context)
Dialog d = ColorPickerDialogBuilder.with(context)
.showAlphaSlider(false).initialColor(preColor)
.wheelType(ColorPickerView.WHEEL_TYPE.CIRCLE).density(20)
.setOnColorSelectedListener(this).build().show();
.setOnColorChangedListener(this).build();
d.setOnDismissListener(this);
d.show();
}
public void commit() {
@ -68,12 +105,8 @@ public class ColorPreferences implements OnColorSelectedListener {
e.apply();
}
public int getBackgroundColor(){return background;}
public int getFontColor(){return font;}
public int getTweetColor(){return tweet;}
public static ColorPreferences getInstance(Context c) {
if(ourInstance==null)
if(ourInstance == null)
ourInstance = new ColorPreferences(c);
context = c;
return ourInstance;

View File

@ -43,7 +43,7 @@ public class TimelineAdapter extends ArrayAdapter implements View.OnClickListene
p = parent;
if(v == null) {
v = inf.inflate(R.layout.tweet, parent,false);
v.setBackgroundColor(mcolor.getBackgroundColor());
v.setBackgroundColor(mcolor.getColor(ColorPreferences.BACKGROUND));
}
String answerStr = Integer.toString(mTweets.getAnswer(position));
String retweetStr = Integer.toString(mTweets.getRetweet(position));

View File

@ -39,7 +39,7 @@ public class TrendAdapter extends ArrayAdapter {
if(v == null) {
LayoutInflater inf=(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = inf.inflate(R.layout.trend, parent,false);
v.setBackgroundColor(mcolor.getBackgroundColor());
v.setBackgroundColor(mcolor.getColor(ColorPreferences.BACKGROUND));
}
String trendName = trend.getTrendname(position);
((TextView) v.findViewById(R.id.trendname)).setText(trendName);

View File

@ -60,7 +60,7 @@ public class UserAdapter extends ArrayAdapter implements View.OnClickListener {
imgView.setImageResource(R.mipmap.pb);
}
v.setBackgroundColor(mColor.getBackgroundColor());
v.setBackgroundColor(mColor.getColor(ColorPreferences.BACKGROUND));
return v;
}

View File

@ -8,10 +8,10 @@ import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.EditText;
import android.widget.NumberPicker;
import android.widget.Switch;
import android.widget.TextView;
import org.nuclearfog.twidda.R;
import org.nuclearfog.twidda.database.ColorPreferences;
@ -25,9 +25,10 @@ public class AppSettings extends AppCompatActivity implements View.OnClickListen
private EditText woeId;
private SharedPreferences settings;
private NumberPicker load_factor;
private TextView load_factor;
private ColorPreferences mColor;
private boolean imgldr;
private int row, wId;
@Override
protected void onCreate(Bundle savedInst) {
@ -35,28 +36,46 @@ public class AppSettings extends AppCompatActivity implements View.OnClickListen
setContentView(R.layout.settings);
mColor = ColorPreferences.getInstance(this);
settings = getApplicationContext().getSharedPreferences("settings", 0);
String location = Integer.toString(settings.getInt("woeid",23424829));
row = settings.getInt("preload",10);
wId = settings.getInt("woeid",23424829);
String location = Integer.toString(wId);
String load = Integer.toString(row);
Button delButon = (Button) findViewById(R.id.delete_db);
Switch toggleImg = (Switch) findViewById(R.id.toggleImg);
CheckBox toggleImg = (CheckBox) findViewById(R.id.toggleImg);
Button colorButton1 = (Button) findViewById(R.id.color_background);
Button colorButton2 = (Button) findViewById(R.id.color_font);
Button colorButton3 = (Button) findViewById(R.id.color_tweet);
Button save_woeid = (Button) findViewById(R.id.save_woeid);
load_factor = (NumberPicker)findViewById(R.id.tweet_load);
Button reduce = (Button) findViewById(R.id.less);
Button enhance = (Button) findViewById(R.id.more);
load_factor = (TextView)findViewById(R.id.number_row);
woeId = (EditText) findViewById(R.id.woeid);
delButon.setOnClickListener(this);
colorButton1.setOnClickListener(this);
colorButton2.setOnClickListener(this);
colorButton3.setOnClickListener(this);
save_woeid.setOnClickListener(this);
toggleImg.setOnCheckedChangeListener(this);
reduce.setOnClickListener(this);
enhance.setOnClickListener(this);
int color1 = mColor.getColor(ColorPreferences.BACKGROUND);
int color2 = mColor.getColor(ColorPreferences.TWEET_COLOR);
int color3 = mColor.getColor(ColorPreferences.FONT_COLOR);
String color1Str = "#"+Integer.toHexString(color1);
String color2Str = "#"+Integer.toHexString(color2);
String color3Str = "#"+Integer.toHexString(color3);
colorButton1.setBackgroundColor(color1);
colorButton2.setBackgroundColor(color2);
colorButton3.setBackgroundColor(color3);
colorButton1.setText(color1Str);
colorButton2.setText(color2Str);
colorButton3.setText(color3Str);
load_factor.setMinValue(5);
load_factor.setMaxValue(100);
toggleImg.setChecked(settings.getBoolean("image_load",false));
load_factor.setValue(settings.getInt("preload",10));
load_factor.setText(load);
woeId.setText(location);
}
@ -79,8 +98,8 @@ public class AppSettings extends AppCompatActivity implements View.OnClickListen
@Override
protected void onDestroy() {
Editor edit = settings.edit();
edit.putInt("woeid", Integer.valueOf(woeId.getText().toString()));
edit.putInt("preload", load_factor.getValue());
edit.putInt("woeid", wId);
edit.putInt("preload", row);
edit.putBoolean("image_load", imgldr);
edit.apply();
mColor.commit();
@ -102,6 +121,16 @@ public class AppSettings extends AppCompatActivity implements View.OnClickListen
case R.id.color_tweet:
mColor.setColor(ColorPreferences.TWEET_COLOR);
break;
case R.id.less:
if(row > 5)
row -= 5;
load_factor.setText(Integer.toString(row));
break;
case R.id.more:
if(row < 200)
row += 5;
load_factor.setText(Integer.toString(row));
break;
}
}

View File

@ -97,7 +97,7 @@ public class TweetDetail extends AppCompatActivity implements View.OnClickListen
private void setContent() {
ColorPreferences mColor = ColorPreferences.getInstance(getApplicationContext());
LinearLayout background = (LinearLayout) findViewById(R.id.tweet_detail);
background.setBackgroundColor(mColor.getBackgroundColor());//TODO
background.setBackgroundColor(mColor.getColor(ColorPreferences.BACKGROUND));//TODO
ShowStatus set = new ShowStatus(this);
set.execute(tweetID);
}

View File

@ -53,7 +53,7 @@ public class TweetPopup extends AppCompatActivity implements View.OnClickListene
LinearLayout root = (LinearLayout) findViewById(R.id.tweet_popup);
ColorPreferences mColor = ColorPreferences.getInstance(this);
root.setBackgroundColor(mColor.getTweetColor());
root.setBackgroundColor(mColor.getColor(ColorPreferences.TWEET_COLOR));
}
@Override
@ -73,7 +73,7 @@ public class TweetPopup extends AppCompatActivity implements View.OnClickListene
break;
case R.id.image:
Intent i = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, RESULT_FIRST_USER);
startActivityForResult(i, RESULT_FIRST_USER );
break;
}
}

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="20.0"
android:viewportWidth="20.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FFFFFF" android:pathData="M16,10c0,0.553 -0.048,1 -0.601,1H4.601C4.049,11 4,10.553 4,10c0,-0.553 0.049,-1 0.601,-1H15.4C15.952,9 16,9.447 16,10z"/>
</vector>

View File

@ -0,0 +1,4 @@
<vector android:height="24dp" android:viewportHeight="20.0"
android:viewportWidth="20.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FFFFFF" android:pathData="M16,10c0,0.553 -0.048,1 -0.601,1H11v4.399C11,15.951 10.553,16 10,16c-0.553,0 -1,-0.049 -1,-0.601V11H4.601C4.049,11 4,10.553 4,10c0,-0.553 0.049,-1 0.601,-1H9V4.601C9,4.048 9.447,4 10,4c0.553,0 1,0.048 1,0.601V9h4.399C15.952,9 16,9.447 16,10z"/>
</vector>

View File

@ -14,74 +14,95 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_margin="5dp"
android:orientation="horizontal">
<Button
android:id="@+id/color_background"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:layout_margin="5dp" />
<Button
android:id="@+id/color_font"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:layout_margin="5dp" />
<Button
android:id="@+id/color_tweet"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:gravity="center_vertical"
android:orientation="horizontal"
android:padding="5dp">
<NumberPicker
android:id="@+id/tweet_load"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Switch
android:id="@+id/toggleImg"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
android:layout_margin="5dp" />
<Button
android:id="@+id/color_background2"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="horizontal"
android:padding="10dp">
android:layout_margin="5dp"
android:orientation="horizontal">
<TextView
android:id="@+id/number_row"
android:layout_width="64dp"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="10dp" />
<Button
android:id="@+id/more"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_marginRight="5dp"
android:background="@drawable/plus" />
<Button
android:id="@+id/less"
android:layout_width="32dp"
android:layout_height="32dp"
android:background="@drawable/minus" />
<CheckBox
android:id="@+id/toggleImg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:text="@string/image" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:orientation="horizontal">
<Button
android:id="@+id/delete_db"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/holo_red_dark"
android:text="@string/delete_database" />
<EditText
android:id="@+id/woeid"
android:layout_width="120dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="number" />
<Button
android:id="@+id/save_woeid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
tools:text="@string/save" />
</LinearLayout>
<Button
android:id="@+id/delete_db"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@android:color/holo_red_dark"
android:text="@string/delete_database" />
</LinearLayout>

View File

@ -1,6 +1,6 @@
#Wed Dec 20 18:30:35 CET 2017
#Wed Jan 10 20:47:44 CET 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-all.zip

405
hs_err_pid5384.log Normal file
View File

@ -0,0 +1,405 @@
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 13631488 bytes for Failed to commit area from 0x00000000a4000000 to 0x00000000a4d00000 of length 13631488.
# Possible reasons:
# The system is out of physical RAM or swap space
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
# placed in the first 4GB address space. The Java Heap base address is the
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
# This output file may be truncated or incomplete.
#
# Out of Memory Error (t:/workspace/hotspot/src/os/windows/vm/os_windows.cpp:3357), pid=5384, tid=1100
#
# JRE version: Java(TM) SE Runtime Environment (9.0+11) (build 9.0.1+11)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (9.0.1+11, mixed mode, tiered, compressed oops, g1 gc, windows-amd64)
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
#
--------------- S U M M A R Y ------------
Command Line: -Xmx1536m -Dfile.encoding=windows-1252 -Duser.country=DE -Duser.language=de -Duser.variant org.gradle.launcher.daemon.bootstrap.GradleDaemon 4.4.1
Host: Intel(R) Core(TM) i3-4010U CPU @ 1.70GHz, 4 cores, 3G, Windows 10 , 64 bit Build 16299 (10.0.16299.15)
Time: Wed Jan 10 13:39:45 2018 Mitteleuropäische Zeit elapsed time: 4 seconds (0d 0h 0m 4s)
--------------- T H R E A D ---------------
Current thread (0x00000298f085b800): VMThread "VM Thread" [stack: 0x000000e93af00000,0x000000e93b000000] [id=1100]
Stack: [0x000000e93af00000,0x000000e93b000000]
[error occurred during error reporting (printing stack bounds), id 0xe0000002]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x5870b8]
V [jvm.dll+0x69c0ee]
V [jvm.dll+0x69d00a]
V [jvm.dll+0x69cb95]
V [jvm.dll+0x69d5ab]
V [jvm.dll+0x586916]
V [jvm.dll+0x586ce8]
C [ntdll.dll+0xa4c6d]
C [ntdll.dll+0x1d1d8]
C [ntdll.dll+0xa3b9e]
C 0x00000298da800e2a
VM_Operation (0x000000e93c6ff130): G1IncCollectionPause, mode: safepoint, requested by thread 0x00000298f24ad800
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x00000298f24ad800 JavaThread "Cache worker for file hash cache (C:\Users\Sufian\StudioProjects\Twidda\.gradle\4.4.1\fileHashes)" [_thread_blocked, id=2408, stack(0x000000e93c600000,0x000000e93c700000)]
0x00000298f24aa800 JavaThread "File lock request listener" [_thread_in_native, id=2128, stack(0x000000e93c500000,0x000000e93c600000)]
0x00000298f24a7800 JavaThread "Cache worker for file hash cache (C:\Users\Sufian\.gradle\caches\4.4.1\fileHashes)" [_thread_blocked, id=3728, stack(0x000000e93c400000,0x000000e93c500000)]
0x00000298f221a800 JavaThread "Stdin handler" [_thread_blocked, id=8976, stack(0x000000e93c300000,0x000000e93c400000)]
0x00000298f22eb800 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:49994 to /127.0.0.1:49995" [_thread_blocked, id=2180, stack(0x000000e93c200000,0x000000e93c300000)]
0x00000298f228a000 JavaThread "Daemon worker" [_thread_blocked, id=1664, stack(0x000000e93c100000,0x000000e93c200000)]
0x00000298f216d000 JavaThread "Cancel handler" [_thread_blocked, id=8832, stack(0x000000e93c000000,0x000000e93c100000)]
0x00000298f2206000 JavaThread "Handler for socket connection from /127.0.0.1:49994 to /127.0.0.1:49995" [_thread_in_native, id=6272, stack(0x000000e93bf00000,0x000000e93c000000)]
0x00000298f21e0000 JavaThread "Daemon" [_thread_blocked, id=3660, stack(0x000000e93be00000,0x000000e93bf00000)]
0x00000298f1bc9000 JavaThread "Daemon periodic checks" [_thread_blocked, id=1412, stack(0x000000e93bd00000,0x000000e93be00000)]
0x00000298f22f6800 JavaThread "Incoming local TCP Connector on port 49994" [_thread_in_native, id=8604, stack(0x000000e93bc00000,0x000000e93bd00000)]
0x00000298f1235800 JavaThread "Daemon health stats" [_thread_blocked, id=1660, stack(0x000000e93bb00000,0x000000e93bc00000)]
0x00000298f0bcc000 JavaThread "Service Thread" daemon [_thread_blocked, id=6444, stack(0x000000e93b900000,0x000000e93ba00000)]
0x00000298f095b800 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=1732, stack(0x000000e93b800000,0x000000e93b900000)]
0x00000298f0936000 JavaThread "Sweeper thread" daemon [_thread_blocked, id=4116, stack(0x000000e93b700000,0x000000e93b800000)]
0x00000298f08c5000 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=596, stack(0x000000e93b600000,0x000000e93b700000)]
0x00000298f086b000 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=5488, stack(0x000000e93b500000,0x000000e93b600000)]
0x00000298f0866000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=1544, stack(0x000000e93b400000,0x000000e93b500000)]
0x00000298f08c4000 JavaThread "Attach Listener" daemon [_thread_blocked, id=9176, stack(0x000000e93b300000,0x000000e93b400000)]
0x00000298f08c3800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2472, stack(0x000000e93b200000,0x000000e93b300000)]
0x00000298f0872800 JavaThread "Finalizer" daemon [_thread_blocked, id=3904, stack(0x000000e93b100000,0x000000e93b200000)]
0x00000298f0870000 JavaThread "Reference Handler" daemon [_thread_blocked, id=4240, stack(0x000000e93b000000,0x000000e93b100000)]
0x00000298ce86c000 JavaThread "main" [_thread_blocked, id=6628, stack(0x000000e93a300000,0x000000e93a400000)]
Other Threads:
=>0x00000298f085b800 VMThread "VM Thread" [stack: 0x000000e93af00000,0x000000e93b000000] [id=1100]
0x00000298f0bcf800 WatcherThread [stack: 0x000000e93ba00000,0x000000e93bb00000] [id=2260]
0x00000298ce883800 GCTaskThread "GC Thread#0" [stack: 0x000000e93a400000,0x000000e93a500000] [id=5200]
0x00000298ce886000 GCTaskThread "GC Thread#1" [stack: 0x000000e93a500000,0x000000e93a600000] [id=6228]
0x00000298ce887800 GCTaskThread "GC Thread#2" [stack: 0x000000e93a600000,0x000000e93a700000] [id=9088]
0x00000298ce88a800 GCTaskThread "GC Thread#3" [stack: 0x000000e93a700000,0x000000e93a800000] [id=7216]
0x00000298ce8ef000 ConcurrentGCThread "G1 Main Marker" [stack: 0x000000e93ad00000,0x000000e93ae00000] [id=2796]
0x00000298ce8f1000 ConcurrentGCThread "G1 Marker#0" [stack: 0x000000e93ae00000,0x000000e93af00000] [id=7920]
0x00000298ce89a000 ConcurrentGCThread "G1 Refine#0" [stack: 0x000000e93ab00000,0x000000e93ac00000] [id=1788]
0x00000298ce899000 ConcurrentGCThread "G1 Refine#1" [stack: 0x000000e93aa00000,0x000000e93ab00000] [id=6124]
0x00000298ce898800 ConcurrentGCThread "G1 Refine#2" [stack: 0x000000e93a900000,0x000000e93aa00000] [id=784]
0x00000298ce88d000 ConcurrentGCThread "G1 Refine#3" [stack: 0x000000e93a800000,0x000000e93a900000] [id=8704]
0x00000298ce89c000 ConcurrentGCThread "G1 Young RemSet Sampling" [stack: 0x000000e93ac00000,0x000000e93ad00000] [id=9076]
Threads with active compile tasks:
C2 CompilerThread11851 4 java.io.WinNTFileSystem::normalize (224 bytes)
VM state:at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00000298ce86b810] Threads_lock - owner thread: 0x00000298f085b800
[0x00000298ce86b030] Heap_lock - owner thread: 0x00000298f24ad800
Heap address: 0x00000000a0000000, size: 1536 MB, Compressed Oops mode: 32-bit
Narrow klass base: 0x0000000000000000, Narrow klass shift: 3
Compressed class space size: 1073741824 Address: 0x0000000100000000
Heap:
garbage-first heap total 78848K, used 17631K [0x00000000a0000000, 0x00000000a0100268, 0x0000000100000000)
region size 1024K, 4 young (4096K), 4 survivors (4096K)
Metaspace used 18962K, capacity 19496K, committed 19712K, reserved 1067008K
class space used 2361K, capacity 2491K, committed 2560K, reserved 1048576K
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, A=archive, TS=gc time stamp, AC=allocation context, TAMS=top-at-mark-start (previous, next)
| 0|0x00000000a0000000, 0x00000000a0100000, 0x00000000a0100000|100%|HS| |TS 0|AC 0|TAMS 0x00000000a0000000, 0x00000000a0000000|
| 1|0x00000000a0100000, 0x00000000a0200000, 0x00000000a0200000|100%|HC| |TS 0|AC 0|TAMS 0x00000000a0100000, 0x00000000a0100000|
| 2|0x00000000a0200000, 0x00000000a0300000, 0x00000000a0300000|100%| O| |TS 1|AC 0|TAMS 0x00000000a0200000, 0x00000000a0200000|
| 3|0x00000000a0300000, 0x00000000a0400000, 0x00000000a0400000|100%| O| |TS 1|AC 0|TAMS 0x00000000a0300000, 0x00000000a0300000|
| 4|0x00000000a0400000, 0x00000000a0500000, 0x00000000a0500000|100%| O| |TS 1|AC 0|TAMS 0x00000000a0400000, 0x00000000a0400000|
| 5|0x00000000a0500000, 0x00000000a0600000, 0x00000000a0600000|100%| O| |TS 3|AC 0|TAMS 0x00000000a0500000, 0x00000000a0500000|
| 6|0x00000000a0600000, 0x00000000a0700000, 0x00000000a0700000|100%| O| |TS 3|AC 0|TAMS 0x00000000a0600000, 0x00000000a0600000|
| 7|0x00000000a0700000, 0x00000000a0800000, 0x00000000a0800000|100%| O| |TS 5|AC 0|TAMS 0x00000000a0700000, 0x00000000a0700000|
| 8|0x00000000a0800000, 0x00000000a0900000, 0x00000000a0900000|100%| O| |TS 7|AC 0|TAMS 0x00000000a0800000, 0x00000000a0800000|
| 9|0x00000000a0900000, 0x00000000a0a00000, 0x00000000a0a00000|100%| O| |TS 7|AC 0|TAMS 0x00000000a0900000, 0x00000000a0900000|
| 10|0x00000000a0a00000, 0x00000000a0b00000, 0x00000000a0b00000|100%| O| |TS 7|AC 0|TAMS 0x00000000a0a00000, 0x00000000a0a00000|
| 11|0x00000000a0b00000, 0x00000000a0c00000, 0x00000000a0c00000|100%| O| |TS 9|AC 0|TAMS 0x00000000a0b00000, 0x00000000a0b00000|
| 12|0x00000000a0c00000, 0x00000000a0d00000, 0x00000000a0d00000|100%| O| |TS 9|AC 0|TAMS 0x00000000a0c00000, 0x00000000a0c00000|
| 13|0x00000000a0d00000, 0x00000000a0de7400, 0x00000000a0e00000| 90%| O| |TS 9|AC 0|TAMS 0x00000000a0d00000, 0x00000000a0d00000|
| 14|0x00000000a0e00000, 0x00000000a0e00000, 0x00000000a0f00000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a0e00000, 0x00000000a0e00000|
| 15|0x00000000a0f00000, 0x00000000a0f00000, 0x00000000a1000000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a0f00000, 0x00000000a0f00000|
| 16|0x00000000a1000000, 0x00000000a1000000, 0x00000000a1100000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1000000, 0x00000000a1000000|
| 17|0x00000000a1100000, 0x00000000a1100000, 0x00000000a1200000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1100000, 0x00000000a1100000|
| 18|0x00000000a1200000, 0x00000000a1200000, 0x00000000a1300000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1200000, 0x00000000a1200000|
| 19|0x00000000a1300000, 0x00000000a1300000, 0x00000000a1400000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1300000, 0x00000000a1300000|
| 20|0x00000000a1400000, 0x00000000a1400000, 0x00000000a1500000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1400000, 0x00000000a1400000|
| 21|0x00000000a1500000, 0x00000000a1500000, 0x00000000a1600000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1500000, 0x00000000a1500000|
| 22|0x00000000a1600000, 0x00000000a1600000, 0x00000000a1700000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1600000, 0x00000000a1600000|
| 23|0x00000000a1700000, 0x00000000a1700000, 0x00000000a1800000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1700000, 0x00000000a1700000|
| 24|0x00000000a1800000, 0x00000000a1800000, 0x00000000a1900000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1800000, 0x00000000a1800000|
| 25|0x00000000a1900000, 0x00000000a1900000, 0x00000000a1a00000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1900000, 0x00000000a1900000|
| 26|0x00000000a1a00000, 0x00000000a1a00000, 0x00000000a1b00000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1a00000, 0x00000000a1a00000|
| 27|0x00000000a1b00000, 0x00000000a1b00000, 0x00000000a1c00000| 0%| F| |TS 0|AC 0|TAMS 0x00000000a1b00000, 0x00000000a1b00000|
| 28|0x00000000a1c00000, 0x00000000a1c00000, 0x00000000a1d00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a1c00000, 0x00000000a1c00000|
| 29|0x00000000a1d00000, 0x00000000a1d00000, 0x00000000a1e00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a1d00000, 0x00000000a1d00000|
| 30|0x00000000a1e00000, 0x00000000a1e00000, 0x00000000a1f00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a1e00000, 0x00000000a1e00000|
| 31|0x00000000a1f00000, 0x00000000a1f00000, 0x00000000a2000000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a1f00000, 0x00000000a1f00000|
| 32|0x00000000a2000000, 0x00000000a2000000, 0x00000000a2100000| 0%| F| |TS 7|AC 0|TAMS 0x00000000a2000000, 0x00000000a2000000|
| 33|0x00000000a2100000, 0x00000000a2100000, 0x00000000a2200000| 0%| F| |TS 7|AC 0|TAMS 0x00000000a2100000, 0x00000000a2100000|
| 34|0x00000000a2200000, 0x00000000a2200000, 0x00000000a2300000| 0%| F| |TS 7|AC 0|TAMS 0x00000000a2200000, 0x00000000a2200000|
| 35|0x00000000a2300000, 0x00000000a2300000, 0x00000000a2400000| 0%| F| |TS 7|AC 0|TAMS 0x00000000a2300000, 0x00000000a2300000|
| 36|0x00000000a2400000, 0x00000000a2450be0, 0x00000000a2500000| 31%| S|CS|TS 9|AC 0|TAMS 0x00000000a2400000, 0x00000000a2400000|
| 37|0x00000000a2500000, 0x00000000a2600000, 0x00000000a2600000|100%| S|CS|TS 9|AC 0|TAMS 0x00000000a2500000, 0x00000000a2500000|
| 38|0x00000000a2600000, 0x00000000a2700000, 0x00000000a2700000|100%| S|CS|TS 9|AC 0|TAMS 0x00000000a2600000, 0x00000000a2600000|
| 39|0x00000000a2700000, 0x00000000a2800000, 0x00000000a2800000|100%| S|CS|TS 9|AC 0|TAMS 0x00000000a2700000, 0x00000000a2700000|
| 40|0x00000000a2800000, 0x00000000a2800000, 0x00000000a2900000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a2800000, 0x00000000a2800000|
| 41|0x00000000a2900000, 0x00000000a2900000, 0x00000000a2a00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a2900000, 0x00000000a2900000|
| 42|0x00000000a2a00000, 0x00000000a2a00000, 0x00000000a2b00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a2a00000, 0x00000000a2a00000|
| 43|0x00000000a2b00000, 0x00000000a2b00000, 0x00000000a2c00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a2b00000, 0x00000000a2b00000|
| 44|0x00000000a2c00000, 0x00000000a2c00000, 0x00000000a2d00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a2c00000, 0x00000000a2c00000|
| 45|0x00000000a2d00000, 0x00000000a2d00000, 0x00000000a2e00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a2d00000, 0x00000000a2d00000|
| 46|0x00000000a2e00000, 0x00000000a2e00000, 0x00000000a2f00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a2e00000, 0x00000000a2e00000|
| 47|0x00000000a2f00000, 0x00000000a2f00000, 0x00000000a3000000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a2f00000, 0x00000000a2f00000|
| 48|0x00000000a3000000, 0x00000000a3000000, 0x00000000a3100000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3000000, 0x00000000a3000000|
| 49|0x00000000a3100000, 0x00000000a3100000, 0x00000000a3200000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3100000, 0x00000000a3100000|
| 50|0x00000000a3200000, 0x00000000a3200000, 0x00000000a3300000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3200000, 0x00000000a3200000|
| 51|0x00000000a3300000, 0x00000000a3300000, 0x00000000a3400000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3300000, 0x00000000a3300000|
| 52|0x00000000a3400000, 0x00000000a3400000, 0x00000000a3500000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3400000, 0x00000000a3400000|
| 53|0x00000000a3500000, 0x00000000a3500000, 0x00000000a3600000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3500000, 0x00000000a3500000|
| 54|0x00000000a3600000, 0x00000000a3600000, 0x00000000a3700000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3600000, 0x00000000a3600000|
| 55|0x00000000a3700000, 0x00000000a3700000, 0x00000000a3800000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3700000, 0x00000000a3700000|
| 56|0x00000000a3800000, 0x00000000a3800000, 0x00000000a3900000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3800000, 0x00000000a3800000|
| 57|0x00000000a3900000, 0x00000000a3900000, 0x00000000a3a00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3900000, 0x00000000a3900000|
| 58|0x00000000a3a00000, 0x00000000a3a00000, 0x00000000a3b00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3a00000, 0x00000000a3a00000|
| 59|0x00000000a3b00000, 0x00000000a3b00000, 0x00000000a3c00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3b00000, 0x00000000a3b00000|
| 60|0x00000000a3c00000, 0x00000000a3c00000, 0x00000000a3d00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3c00000, 0x00000000a3c00000|
| 61|0x00000000a3d00000, 0x00000000a3d00000, 0x00000000a3e00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3d00000, 0x00000000a3d00000|
| 62|0x00000000a3e00000, 0x00000000a3e00000, 0x00000000a3f00000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3e00000, 0x00000000a3e00000|
| 63|0x00000000a3f00000, 0x00000000a3f00000, 0x00000000a4000000| 0%| F| |TS 9|AC 0|TAMS 0x00000000a3f00000, 0x00000000a3f00000|
Card table byte_map: [0x00000298ea420000,0x00000298ea720000] byte_map_base: 0x00000298e9f20000
Marking Bits (Prev, Next): (CMBitMap*) 0x00000298ce8ee530, (CMBitMap*) 0x00000298ce8ee568
Prev Bits: [0x00000298eaa20000, 0x00000298ec220000)
Next Bits: [0x00000298ec220000, 0x00000298eda20000)
Polling page: 0x00000298cc730000
CodeHeap 'non-profiled nmethods': size=120064Kb used=751Kb max_used=751Kb free=119312Kb
bounds [0x00000298e22c0000, 0x00000298e2530000, 0x00000298e9800000]
CodeHeap 'profiled nmethods': size=120000Kb used=4040Kb max_used=4040Kb free=115959Kb
bounds [0x00000298dad90000, 0x00000298db190000, 0x00000298e22c0000]
CodeHeap 'non-nmethods': size=5696Kb used=1258Kb max_used=1273Kb free=4438Kb
bounds [0x00000298da800000, 0x00000298daa70000, 0x00000298dad90000]
total_blobs=2769 nmethods=1911 adapters=346
compilation: enabled
Compilation events (10 events):
Event: 3.987 Thread 0x00000298f08c5000 nmethod 1908 0x00000298e237b590 code [0x00000298e237b740, 0x00000298e237b858]
Event: 3.987 Thread 0x00000298f08c5000 1910 3 java.util.regex.Pattern$Node::study (21 bytes)
Event: 3.988 Thread 0x00000298f08c5000 nmethod 1910 0x00000298db181290 code [0x00000298db181440, 0x00000298db1816b0]
Event: 3.988 Thread 0x00000298f0866000 nmethod 1909 0x00000298e237b910 code [0x00000298e237baa0, 0x00000298e237bb18]
Event: 3.989 Thread 0x00000298f08c5000 1911 1 java.util.concurrent.locks.AbstractOwnableSynchronizer::getExclusiveOwnerThread (5 bytes)
Event: 3.989 Thread 0x00000298f08c5000 nmethod 1911 0x00000298e237bb90 code [0x00000298e237bd40, 0x00000298e237be58]
Event: 3.989 Thread 0x00000298f08c5000 1912 3 org.gradle.internal.service.DefaultServiceRegistry$SingletonService::get (5 bytes)
Event: 3.990 Thread 0x00000298f08c5000 nmethod 1912 0x00000298db181790 code [0x00000298db181940, 0x00000298db181b50]
Event: 3.990 Thread 0x00000298f08c5000 1913 3 org.gradle.internal.service.DefaultServiceRegistry$ManagedObjectProvider::getInstance (57 bytes)
Event: 3.990 Thread 0x00000298f08c5000 nmethod 1913 0x00000298db181c10 code [0x00000298db181dc0, 0x00000298db182090]
GC Heap History (9 events):
Event: 1.048 GC heap before
{Heap before GC invocations=0 (full 0):
garbage-first heap total 65536K, used 16384K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 14 young (14336K), 0 survivors (0K)
Metaspace used 8922K, capacity 9210K, committed 9472K, reserved 1058816K
class space used 898K, capacity 968K, committed 1024K, reserved 1048576K
}
Event: 1.056 GC heap after
{Heap after GC invocations=1 (full 0):
garbage-first heap total 65536K, used 7223K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 2 young (2048K), 2 survivors (2048K)
Metaspace used 8922K, capacity 9210K, committed 9472K, reserved 1058816K
class space used 898K, capacity 968K, committed 1024K, reserved 1048576K
}
Event: 1.458 GC heap before
{Heap before GC invocations=1 (full 0):
garbage-first heap total 65536K, used 18487K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 13 young (13312K), 2 survivors (2048K)
Metaspace used 10208K, capacity 10496K, committed 10624K, reserved 1058816K
class space used 1068K, capacity 1133K, committed 1152K, reserved 1048576K
}
Event: 1.469 GC heap after
{Heap after GC invocations=2 (full 0):
garbage-first heap total 65536K, used 9037K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 2 young (2048K), 2 survivors (2048K)
Metaspace used 10208K, capacity 10496K, committed 10624K, reserved 1058816K
class space used 1068K, capacity 1133K, committed 1152K, reserved 1048576K
}
Event: 1.923 GC heap before
{Heap before GC invocations=2 (full 0):
garbage-first heap total 65536K, used 30541K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 22 young (22528K), 2 survivors (2048K)
Metaspace used 10527K, capacity 10808K, committed 11008K, reserved 1058816K
class space used 1115K, capacity 1173K, committed 1280K, reserved 1048576K
}
Event: 1.931 GC heap after
{Heap after GC invocations=3 (full 0):
garbage-first heap total 65536K, used 11545K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 3 young (3072K), 3 survivors (3072K)
Metaspace used 10527K, capacity 10808K, committed 11008K, reserved 1058816K
class space used 1115K, capacity 1173K, committed 1280K, reserved 1048576K
}
Event: 3.538 GC heap before
{Heap before GC invocations=3 (full 0):
garbage-first heap total 65536K, used 41241K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 32 young (32768K), 3 survivors (3072K)
Metaspace used 16603K, capacity 17220K, committed 17280K, reserved 1064960K
class space used 1985K, capacity 2137K, committed 2176K, reserved 1048576K
}
Event: 3.554 GC heap after
{Heap after GC invocations=4 (full 0):
garbage-first heap total 65536K, used 16108K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 4 young (4096K), 4 survivors (4096K)
Metaspace used 16603K, capacity 17220K, committed 17280K, reserved 1064960K
class space used 1985K, capacity 2137K, committed 2176K, reserved 1048576K
}
Event: 3.991 GC heap before
{Heap before GC invocations=4 (full 0):
garbage-first heap total 65536K, used 40684K [0x00000000a0000000, 0x00000000a0100200, 0x0000000100000000)
region size 1024K, 28 young (28672K), 4 survivors (4096K)
Metaspace used 18962K, capacity 19496K, committed 19712K, reserved 1067008K
class space used 2361K, capacity 2491K, committed 2560K, reserved 1048576K
}
Deoptimization events (10 events):
Event: 2.038 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e2312b0c method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 62 c2
Event: 2.038 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e232e768 method=java.util.HashMap.putVal(ILjava/lang/Object;Ljava/lang/Object;ZZ)Ljava/lang/Object; @ 94 c2
Event: 2.087 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e2334964 method=java.util.concurrent.ConcurrentHashMap.putVal(Ljava/lang/Object;Ljava/lang/Object;Z)Ljava/lang/Object; @ 256 c2
Event: 2.138 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e22e0a98 method=java.lang.StringLatin1.canEncode(I)Z @ 4 c2
Event: 2.138 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e22e1378 method=java.lang.AbstractStringBuilder.isLatin1()Z @ 10 c2
Event: 2.145 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e22cd150 method=java.lang.StringLatin1.canEncode(I)Z @ 4 c2
Event: 2.446 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e2332b88 method=java.util.HashMap.getNode(ILjava/lang/Object;)Ljava/util/HashMap$Node; @ 129 c2
Event: 2.670 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e232b244 method=java.io.WinNTFileSystem.normalize(Ljava/lang/String;)Ljava/lang/String; @ 128 c2
Event: 3.152 Thread 0x00000298ce86c000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e22da09c method=java.lang.String.equals(Ljava/lang/Object;)Z @ 27 c2
Event: 3.941 Thread 0x00000298f228a000 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00000298e2324d38 method=java.lang.AbstractStringBuilder.isLatin1()Z @ 10 c2
Classes redefined (0 events):
No events
Internal exceptions (10 events):
Event: 3.353 Thread 0x00000298f2206000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a2b04978}: <clinit>> (0x00000000a2b04978) thrown at [t:/workspace/hotspot/src/share/vm/prims/jni.cpp, line 1363]
Event: 3.364 Thread 0x00000298f2206000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a2b1f328}: <clinit>> (0x00000000a2b1f328) thrown at [t:/workspace/hotspot/src/share/vm/prims/jni.cpp, line 1363]
Event: 3.399 Thread 0x00000298f228a000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a2b9fbd8}: <clinit>> (0x00000000a2b9fbd8) thrown at [t:/workspace/hotspot/src/share/vm/prims/jni.cpp, line 1363]
Event: 3.400 Thread 0x00000298f228a000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a2ba6dd8}: <clinit>> (0x00000000a2ba6dd8) thrown at [t:/workspace/hotspot/src/share/vm/prims/jni.cpp, line 1363]
Event: 3.435 Thread 0x00000298f228a000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a2a8f0c0}: method resolution failed> (0x00000000a2a8f0c0) thrown at [t:/workspace/hotspot/src/share/vm/prims/methodHandles.cpp, line 1256]
Event: 3.437 Thread 0x00000298f228a000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a2a9e790}: method resolution failed> (0x00000000a2a9e790) thrown at [t:/workspace/hotspot/src/share/vm/prims/methodHandles.cpp, line 1256]
Event: 3.438 Thread 0x00000298f228a000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a2aa2090}: java.lang.invoke.DelegatingMethodHandle$Holder.reinvoke_L(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V> (0x00000000a2aa2090) thrown at [t:/workspace/hotspot/src/
Event: 3.439 Thread 0x00000298f228a000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a2aa8490}: java.lang.invoke.Invokers$Holder.invoker(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;> (0x00000000a2aa8490) thrown at [t:/workspace/hotspot/src/
Event: 3.667 Thread 0x00000298f228a000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a34065c0}: java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;> (0x00000000a34065c0) thrown at [t:/workspace/hotspot/src/sh
Event: 3.668 Thread 0x00000298f228a000 Exception <a 'java/lang/NoSuchMethodError'{0x00000000a3409cb8}: java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;> (0x00000000a3409cb8) thrown at [t:/worksp
Events (10 events):
Event: 3.984 loading class org/gradle/internal/resource/ResourceIsAFolderException
Event: 3.984 loading class org/gradle/internal/resource/ResourceIsAFolderException done
Event: 3.986 loading class org/gradle/internal/resource/ResourceLocation
Event: 3.986 loading class org/gradle/internal/resource/ResourceLocation done
Event: 3.986 loading class org/gradle/groovy/scripts/TextResourceScriptSource
Event: 3.986 loading class org/gradle/groovy/scripts/TextResourceScriptSource done
Event: 3.987 loading class org/gradle/api/Task
Event: 3.987 loading class org/gradle/api/Task done
Event: 3.990 Thread 0x00000298f24ad800 Thread added: 0x00000298f24ad800
Event: 3.990 Executing VM operation: G1IncCollectionPause
Dynamic libraries:
0x00007ff77b8d0000 - 0x00007ff77b90e000 C:\Program Files\Java\jdk-9.0.1\bin\java.exe
0x00007ff9d07e0000 - 0x00007ff9d09c0000 C:\WINDOWS\SYSTEM32\ntdll.dll
0x00007ff9cde60000 - 0x00007ff9cdf0e000 C:\WINDOWS\System32\KERNEL32.DLL
0x00007ff9ccd90000 - 0x00007ff9ccff6000 C:\WINDOWS\System32\KERNELBASE.dll
0x00007ff9ce5f0000 - 0x00007ff9ce691000 C:\WINDOWS\System32\ADVAPI32.dll
0x00007ff9d06b0000 - 0x00007ff9d074d000 C:\WINDOWS\System32\msvcrt.dll
0x00007ff9d0750000 - 0x00007ff9d07ab000 C:\WINDOWS\System32\sechost.dll
0x00007ff9ce6a0000 - 0x00007ff9ce7bf000 C:\WINDOWS\System32\RPCRT4.dll
0x00007ff9ce890000 - 0x00007ff9cea1f000 C:\WINDOWS\System32\USER32.dll
0x00007ff9cd7d0000 - 0x00007ff9cd7f0000 C:\WINDOWS\System32\win32u.dll
0x00007ff9cdcd0000 - 0x00007ff9cdcf8000 C:\WINDOWS\System32\GDI32.dll
0x00007ff9cd7f0000 - 0x00007ff9cd983000 C:\WINDOWS\System32\gdi32full.dll
0x00007ff9ccc40000 - 0x00007ff9cccdb000 C:\WINDOWS\System32\msvcp_win.dll
0x00007ff9cd990000 - 0x00007ff9cda86000 C:\WINDOWS\System32\ucrtbase.dll
0x00007ff9bac30000 - 0x00007ff9bae99000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.16299.192_none_15c8cdae9364c23b\COMCTL32.dll
0x00007ff9c3850000 - 0x00007ff9c385a000 C:\WINDOWS\SYSTEM32\VERSION.dll
0x00007ff9cea20000 - 0x00007ff9ced28000 C:\WINDOWS\System32\combase.dll
0x00007ff9cd750000 - 0x00007ff9cd7c2000 C:\WINDOWS\System32\bcryptPrimitives.dll
0x00007ff9cdfe0000 - 0x00007ff9ce00d000 C:\WINDOWS\System32\IMM32.DLL
0x00007ff9c49d0000 - 0x00007ff9c4abf000 C:\Program Files\Java\jdk-9.0.1\bin\msvcr120.dll
0x00007ff9c4920000 - 0x00007ff9c49c6000 C:\Program Files\Java\jdk-9.0.1\bin\msvcp120.dll
0x0000000070980000 - 0x00000000713a4000 C:\Program Files\Java\jdk-9.0.1\bin\server\jvm.dll
0x00007ff9cdcc0000 - 0x00007ff9cdcc8000 C:\WINDOWS\System32\PSAPI.DLL
0x00007ff9cb7e0000 - 0x00007ff9cb7e9000 C:\WINDOWS\SYSTEM32\WSOCK32.dll
0x00007ff9c41a0000 - 0x00007ff9c41c3000 C:\WINDOWS\SYSTEM32\WINMM.dll
0x00007ff9ce300000 - 0x00007ff9ce36c000 C:\WINDOWS\System32\WS2_32.dll
0x00007ff9c4170000 - 0x00007ff9c419a000 C:\WINDOWS\SYSTEM32\WINMMBASE.dll
0x00007ff9cdc60000 - 0x00007ff9cdcaa000 C:\WINDOWS\System32\cfgmgr32.dll
0x00007ff9c4910000 - 0x00007ff9c491f000 C:\Program Files\Java\jdk-9.0.1\bin\verify.dll
0x00007ff9c48e0000 - 0x00007ff9c4907000 C:\Program Files\Java\jdk-9.0.1\bin\java.dll
0x00007ff9c48c0000 - 0x00007ff9c48d6000 C:\Program Files\Java\jdk-9.0.1\bin\zip.dll
0x00007ff9c48b0000 - 0x00007ff9c48ba000 C:\Program Files\Java\jdk-9.0.1\bin\jimage.dll
0x00007ff9cf270000 - 0x00007ff9d06a6000 C:\WINDOWS\System32\SHELL32.dll
0x00007ff9cdf10000 - 0x00007ff9cdfb6000 C:\WINDOWS\System32\shcore.dll
0x00007ff9cd000000 - 0x00007ff9cd747000 C:\WINDOWS\System32\windows.storage.dll
0x00007ff9cdd00000 - 0x00007ff9cdd51000 C:\WINDOWS\System32\shlwapi.dll
0x00007ff9ccb50000 - 0x00007ff9ccb61000 C:\WINDOWS\System32\kernel.appcore.dll
0x00007ff9ccb90000 - 0x00007ff9ccbdc000 C:\WINDOWS\System32\powrprof.dll
0x00007ff9ccb30000 - 0x00007ff9ccb4b000 C:\WINDOWS\System32\profapi.dll
0x00007ff9c4890000 - 0x00007ff9c48aa000 C:\Program Files\Java\jdk-9.0.1\bin\net.dll
0x00007ff9c6470000 - 0x00007ff9c654e000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
0x00007ff9cc3c0000 - 0x00007ff9cc426000 C:\WINDOWS\system32\mswsock.dll
0x00007ff9c4870000 - 0x00007ff9c4881000 C:\Program Files\Java\jdk-9.0.1\bin\nio.dll
0x00007ff9c7860000 - 0x00007ff9c787e000 C:\Users\Sufian\.gradle\native\25\windows-amd64\native-platform.dll
0x00007ff9c8420000 - 0x00007ff9c8429000 C:\Program Files\Java\jdk-9.0.1\bin\management.dll
0x00007ff9c8410000 - 0x00007ff9c841a000 C:\Program Files\Java\jdk-9.0.1\bin\management_ext.dll
0x00007ff9cc580000 - 0x00007ff9cc597000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
0x00007ff9cbfd0000 - 0x00007ff9cc003000 C:\WINDOWS\system32\rsaenh.dll
0x00007ff9cc690000 - 0x00007ff9cc6b5000 C:\WINDOWS\SYSTEM32\bcrypt.dll
0x00007ff9cca60000 - 0x00007ff9cca89000 C:\WINDOWS\SYSTEM32\USERENV.dll
0x00007ff9cc5a0000 - 0x00007ff9cc5ab000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
0x00007ff9cc150000 - 0x00007ff9cc189000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
0x00007ff9ced30000 - 0x00007ff9ced38000 C:\WINDOWS\System32\NSI.dll
0x00007ff9c6c10000 - 0x00007ff9c6c26000 C:\WINDOWS\SYSTEM32\dhcpcsvc6.DLL
0x00007ff9c6d80000 - 0x00007ff9c6d9a000 C:\WINDOWS\SYSTEM32\dhcpcsvc.DLL
0x00007ff9cb5f0000 - 0x00007ff9cb7b8000 C:\WINDOWS\SYSTEM32\dbghelp.dll
VM Arguments:
jvm_args: -Xmx1536m -Dfile.encoding=windows-1252 -Duser.country=DE -Duser.language=de -Duser.variant
java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 4.4.1
java_class_path (initial): C:\Program Files\Android\Android Studio\gradle\gradle-4.4.1\lib\gradle-launcher-4.4.1.jar
Launcher Type: SUN_STANDARD
Logging:
Log output configuration:
#0: stdout all=warning uptime,level,tags
#1: stderr all=off uptime,level,tags
Environment Variables:
PATH=C:\ProgramData\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\GNU\GnuPG\pub;C:\Program Files\TDM-GCC-64\bin;C:\Program Files (x86)\ADB;C:\Program Files\CMake\bin;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files (x86)\Git\cmd;E:\WINSDK\Windows Performance Toolkit\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Users\Sufian\AppData\Local\Microsoft\WindowsApps;C:\Program Files\LLVM\bin;
USERNAME=Sufian
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 69 Stepping 1, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 10 , 64 bit Build 16299 (10.0.16299.15)
CPU:total 4 (initial active 4) (2 cores per cpu, 2 threads per core) family 6 model 69 stepping 1, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, fma
Memory: 4k page, physical 4074772k(582672k free), swap 4074772k(2976k free)
vm_info: Java HotSpot(TM) 64-Bit Server VM (9.0.1+11) for windows-amd64 JRE (9.0.1+11), built on Sep 28 2017 04:54:03 by "mach5one" with MS VC++ 12.0 (VS2013)
END.