bytedeco / javacv

Java interface to OpenCV, FFmpeg, and more
Other
7.59k stars 1.59k forks source link

Green and black screen when streaming with the camera on Android. Also av_interleaved_write_frame() error -32 while writing interleaved video frame #145

Closed lfdversluis closed 9 years ago

lfdversluis commented 9 years ago

After managing to migrate from 0.10 to 0.11 and getting my app working with proguard, I run in the following issue:

The following trace spams in my logcat:

05-08 22:59:47.583  30573-30573/com.lfdversluis.javacvexample V/RecordActivity﹕ Writing Frame
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample V/RecordActivity﹕ av_interleaved_write_frame() error -32 while writing interleaved video frame.
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ alz$a: av_interleaved_write_frame() error -32 while writing interleaved video frame.
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:744)
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:634)
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at com.lfdversluis.javacvexample.Activities.CameraActivity$b.onPreviewFrame(CameraActivity.java:742)
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1112)
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at android.os.Handler.dispatchMessage(Handler.java:102)
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at android.os.Looper.loop(Looper.java:135)
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at android.app.ActivityThread.main(ActivityThread.java:5254)
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at java.lang.reflect.Method.invoke(Native Method)
05-08 22:59:47.591  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at java.lang.reflect.Method.invoke(Method.java:372)
05-08 22:59:47.592  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
05-08 22:59:47.592  30573-30573/com.lfdversluis.javacvexample W/System.err﹕ at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
05-08 22:59:47.610  30573-31143/com.lfdversluis.javacvexample V/RecordActivity﹕ bufferReadResult: 3072
05-08 22:59:47.612  30573-31143/com.lfdversluis.javacvexample V/RecordActivity﹕ av_interleaved_write_frame() error -32 while writing interleaved audio frame.
05-08 22:59:47.612  30573-31143/com.lfdversluis.javacvexample W/System.err﹕ alz$a: av_interleaved_write_frame() error -32 while writing interleaved audio frame.
05-08 22:59:47.612  30573-31143/com.lfdversluis.javacvexample W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:918)
05-08 22:59:47.612  30573-31143/com.lfdversluis.javacvexample W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:883)
05-08 22:59:47.612  30573-31143/com.lfdversluis.javacvexample W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:756)
05-08 22:59:47.612  30573-31143/com.lfdversluis.javacvexample W/System.err﹕ at com.lfdversluis.javacvexample.Activities.CameraActivity$a.run(CameraActivity.java:628)
05-08 22:59:47.612  30573-31143/com.lfdversluis.javacvexample W/System.err﹕ at java.lang.Thread.run(Thread.java:818)

Now these two lines are "mine" as in the code I took from the example: com.lfdversluis.javacvexample.Activities.CameraActivity$b.onPreviewFrame(CameraActivity.java:742) com.lfdversluis.javacvexample.Activities.CameraActivity$a.run(CameraActivity.java:628)

And unfortunately, these 2 lines are created when I migrated from 0.10 to 0.11:

line 742 = recorder.record(converter.convert(yuvIplimage)); and line 628 = recorder.recordSamples(audioData);

The converter is instantiated as OpenCVFrameConverter.ToIplImage converter = new OpenCVFrameConverter.ToIplImage();

I am unable to find the error -32, but I have found error -22 on google, but I am not sure if it's related.

Also this error does not happen all the time. One time it worked but when I streamed to an RTMP server all I saw was a green screen and at one point it was black with weird stuff visible. See image: black_broken_view

saudet commented 9 years ago

What happens with an unmodified version of the RecordActivity sample?

lfdversluis commented 9 years ago

I've just tried with an unmodified version and the result was a green screen:

saudet commented 9 years ago

That's strange. It works perfectly fine here...

lfdversluis commented 9 years ago

I am testing on a nexus 7 which only has a front camera, might that be the issue?

saudet commented 9 years ago

Maybe it doesn't support the default standard format used by Android? but that would be weird coming from a device endorsed by Google.

Anyway, could you try to use the FFmpegFrameRecorder.recordImage() method instead and see if you can't come up with the right set of flags that make it record properly? Thanks!

lfdversluis commented 9 years ago

@saudet I have found the issue :+1: Some devices (such as mine) do no support the hardcoded imagewidth and imageheight as preview sizes. Basically it's this crash that will occur. You need to introduce some code that retrieves the supported preview sizes like this:

            Camera.Parameters parameters = mCamera.getParameters();
            List<Camera.Size> sizes = parameters.getSupportedPreviewSizes();
            Camera.Size cs = sizes.get(0);
            parameters.setPreviewSize(cs.width, cs.height);

However, now cs.width and cs.height are not equal to imagewidth and imageheight, causing this weird behavior. I just hardcoded something that works as preview size and everything was fine.

What's the best method to resolve this you think? I would like to offer 240, 360, 480 and 720p settings. But some devices cannot support this apparently.

saudet commented 9 years ago

You could simply choose a supported size closest to the desired output size, and let FFmpegFrameRecorder.record() resize the images, which it does when the sizes do not match.

You think you could add this logic to the sample? It would be nice :)

lfdversluis commented 9 years ago

Do you think this resizing will work? I got the weird behavior after all.

I think I can add the supported preview sizes to the sample, but if it gives strange behavior another approach might be needed.

saudet commented 9 years ago

I'm pretty sure it works, yes. Why do you say it does not work? Could you explain a bit more your reasoning? Or if you can come up with a few lines of code that clearly shows that FFmpegFrameRecorder cannot resize, then please open another issue about that, and we'll fix it! Thanks

lfdversluis commented 9 years ago

Well it's because I used those lines mentioned above. I have set:

 private int sampleAudioRateInHz = 44100;
    private int imageWidth = 480;
    private int imageHeight = 320;
    private int frameRate = 30;

and I just printed the sizes.get(0) width and height: 176 144. This of course is incredibly low resolution (144p), but apparently that gave the green/black screen result.

saudet commented 9 years ago

Yes, that's related to the current issue with the preview size working strangely on some versions of Android. You said you have a way to work around that, that's good. But that is in no way related to FFmpegFrameRecorder. If you think there is a bug in FFmpegFrameRecorder as well, please open another issue explaining how to reproduce that new bug without using Android camera preview. Sounds good?

lfdversluis commented 9 years ago

Ok so apparently it is not entirely solved.. I just changed the resolution dynamically and adjusted the camera parameters accordingly but I got an entirely black screen again... I'll try later tonight if I can figure out why..

lfdversluis commented 9 years ago

Got a java.nio.BufferOverflowException on ((ByteBuffer) yuvImage.image[0].position(0)).put(data) now..

lfdversluis commented 9 years ago

I replaced the constructor of CameraView with

public CameraView(Context context, Camera camera) {
            super(context);
            Log.w("camera", "camera view");
            mCamera = camera;

            Camera.Parameters camParams = mCamera.getParameters();
            Camera.Parameters parameters = cameraDevice.getParameters();
            List<Camera.Size> sizes = parameters.getSupportedPreviewSizes();

            for (int i = 0; i < sizes.size(); i++) {
                if ((sizes.get(i).width >= imageWidth && sizes.get(i).height >= imageHeight) || i == sizes.size()-1) {
                    imageWidth = sizes.get(i).width;
                    imageHeight = sizes.get(i).height;
                    break;
                }
            }
            camParams.setPreviewSize(imageWidth, imageHeight);

            camParams.setPreviewFrameRate(frameRate);
            mCamera.setParameters(camParams);

            mHolder = getHolder();
            mHolder.addCallback(CameraView.this);
            mHolder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
            mCamera.setPreviewCallback(CameraView.this);
        }

So that it takes the first match (this means that if the device supports your initial width and height, it selects that). The list is sorted so if your device does not support your initial settings it picks the next highest (or if you are at the end at the list, it selects that one).

If FFmpegFrameRecorder indeed resizes things, then it should work right? But all I am seeing is a black screen when streaming to an RTMP server. The audio is crystal clear though. I did add recorder.setVideoCodec(AV_CODEC_ID_H264); because it only supports H264, is that a problem?

saudet commented 9 years ago

Looks good, thanks!

So, how does the record() function get called?

lfdversluis commented 9 years ago

This is my onPreviewframe (almost the same as the example I think):

@Override
        public void onPreviewFrame(byte[] data, Camera camera) {
            if (audioRecord == null || audioRecord.getRecordingState() != AudioRecord.RECORDSTATE_RECORDING) {
                startTime = System.currentTimeMillis();
                return;
            }
            if (RECORD_LENGTH > 0) {
                int i = imagesIndex++ % images.length;
                yuvImage = images[i];
                timestamps[i] = 1000 * (System.currentTimeMillis() - startTime);
            }
            /* get video data */
            if (yuvImage != null && recording) {
                ((ByteBuffer) yuvImage.image[0].position(0)).put(data);

                if (RECORD_LENGTH <= 0) try {
                    Log.v(LOG_TAG, "Writing Frame");
                    long t = 1000 * (System.currentTimeMillis() - startTime);
                    if (t > recorder.getTimestamp()) {
                        recorder.setTimestamp(t);
                    }
                    recorder.record(yuvImage);
                    statusText.setText("Status: You are live!"); // I added this
                } catch (FFmpegFrameRecorder.Exception e) {
                    Log.v(LOG_TAG, e.getMessage());
                    e.printStackTrace();
                    errorWithString(e.getMessage());
                    stopRecording();
                }
            }
        }

the record() function doesn't trigger in stopRecording because I set RECORD_LENGTH to 0. So what I was thinking -- since I see a black screen -- is that maybe this code in the FFmpegFrameRecorder triggers:

 if (frame == null || (frame.image == null && frame.samples == null)) {
            recordImage(0, 0, 0, 0, 0, AV_PIX_FMT_NONE, (Buffer[])null);
        }

That woulde give a black screen, right?

saudet commented 9 years ago

Well, find where and how record() gets called.

lfdversluis commented 9 years ago

@saudet, the only place where record() gets called is in the code I just posted. At the onPreviewFrame inside CameraView.

saudet commented 9 years ago

Ok, good, and what does it get called with?

lfdversluis commented 9 years ago

The yuvImage is set with data here

if (yuvImage != null && recording) {
                ((ByteBuffer) yuvImage.image[0].position(0)).put(data);
               ...
}

and is declared as private Frame yuvImage = null; in my class.

and in initRecorder() it is created:

else if (yuvImage == null) {
            yuvImage = new Frame(imageWidth, imageHeight, Frame.DEPTH_UBYTE, 2);
            Log.i(LOG_TAG, "create yuvImage " + imageWidth + " " + imageHeight);
        }
saudet commented 9 years ago

Ok, could you print out the width and height of yuvImage and what you get with camera.getParameters().getPreviewSize(), both inside the callback? Thanks

lfdversluis commented 9 years ago

I ran the app on a nexus 7 and a galaxy S4. I logged the following line:

 Log.e("yuvimage", yuvImage.imageWidth + " " + yuvImage.imageHeight + " " + camera.getParameters().getPreviewSize().width + " " + camera.getParameters().getPreviewSize().height);

And this was printed:

E/yuvimage﹕ 480 480 480 480 // nexus 7
E/yuvimage﹕ 1920 1080 1920 1080 // galaxy s4

The nexus 7 streamed fine, and the video was visible. The galaxy s4 only had one run that worked and then it only shew a black screen, the rest resulted all in exceptions:

The first exception that I encountered:

05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel V/StreamActivity﹕ avcodec_encode_video2() error -1: Could not encode video packet.
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ aly$a: avcodec_encode_video2() error -1: Could not encode video packet.
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:722)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:634)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at com.lfdversluis.mytwitchchannel.Activities.StreamActivity$b.onPreviewFrame(StreamActivity.java:839)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at android.hardware.Camera$EventHandler.handleMessage(Camera.java:1160)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at android.os.Handler.dispatchMessage(Handler.java:102)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at android.os.Looper.loop(Looper.java:145)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at android.app.ActivityThread.main(ActivityThread.java:5944)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at java.lang.reflect.Method.invoke(Native Method)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at java.lang.reflect.Method.invoke(Method.java:372)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1389)
05-13 13:41:08.577  15501-15501/com.lfdversluis.mytwitchchannel W/System.err﹕ at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1184)

Line 839: recorder.record(yuvImage);

Then this enourmous out of memory exception occurred, even though I have android:largeHeap="true" in my manifest:

05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ Large object allocation failed: Failed anonymous mmap(0x0, 3112960, 0x3, 0x2, 128, 0): Out of memory
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 00100000-00c00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 00c10000-00f08000 rw-p 00000000 00:04 6345217    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 00f08000-01200000 rw-p 00000000 00:04 6344100    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 01200000-01d00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 01d10000-02008000 rw-p 00000000 00:04 6344095    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 02008000-02300000 rw-p 00000000 00:04 6344097    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 02300000-03500000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 03510000-03808000 rw-p 00000000 00:04 6345216    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 03808000-03b00000 rw-p 00000000 00:04 6345218    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 03b00000-04600000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 04610000-04908000 rw-p 00000000 00:04 6338071    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 04908000-04c00000 rw-p 00000000 00:04 6344096    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 04c00000-05b00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 05b08000-05e00000 rw-p 00000000 00:04 6338070    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 05e00000-06500000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 06508000-06800000 rw-p 00000000 00:04 6338069    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 06800000-06f00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 06f18000-07210000 rw-p 00000000 00:04 6346060    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 07210000-07508000 rw-p 00000000 00:04 6344092    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 07508000-07800000 rw-p 00000000 00:04 6346058    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 07800000-08800000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 088b8000-08bb0000 rw-p 00000000 00:04 6345198    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 08bb0000-08ea8000 rw-p 00000000 00:04 6346015    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 08ea8000-091a0000 rw-p 00000000 00:04 6345197    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 091a0000-09498000 rw-p 00000000 00:04 6345196    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 09498000-09790000 rw-p 00000000 00:04 6345195    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 09790000-09a88000 rw-p 00000000 00:04 6345194    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 09a88000-09d80000 rw-p 00000000 00:04 6346014    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 09d80000-0a078000 rw-p 00000000 00:04 6345193    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0a078000-0a370000 rw-p 00000000 00:04 6346013    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0a370000-0a668000 rw-p 00000000 00:04 6345190    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0a668000-0a960000 rw-p 00000000 00:04 6345187    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0a960000-0ac58000 rw-p 00000000 00:04 6345186    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0ac58000-0af50000 rw-p 00000000 00:04 6345185    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0af50000-0b248000 rw-p 00000000 00:04 6345184    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0b248000-0b540000 rw-p 00000000 00:04 6345183    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0b540000-0b838000 rw-p 00000000 00:04 6346012    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0b838000-0bb30000 rw-p 00000000 00:04 6346011    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0bb30000-0be28000 rw-p 00000000 00:04 6346010    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0be28000-0c120000 rw-p 00000000 00:04 6346009    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0c120000-0c418000 rw-p 00000000 00:04 6345182    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0c418000-0c710000 rw-p 00000000 00:04 6346008    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0c710000-0ca08000 rw-p 00000000 00:04 6345181    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0ca08000-0cd00000 rw-p 00000000 00:04 6345180    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0cd00000-0cff8000 rw-p 00000000 00:04 6346007    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0cff8000-0d2f0000 rw-p 00000000 00:04 6346006    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0d2f0000-0d5e8000 rw-p 00000000 00:04 6346005    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0d5e8000-0d8e0000 rw-p 00000000 00:04 6345175    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0d8e0000-0dbd8000 rw-p 00000000 00:04 6345174    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0dbd8000-0ded0000 rw-p 00000000 00:04 6346004    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0ded0000-0e1c8000 rw-p 00000000 00:04 6345173    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0e1c8000-0e4c0000 rw-p 00000000 00:04 6345172    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0e4c0000-0e7b8000 rw-p 00000000 00:04 6345171    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0e7b8000-0eab0000 rw-p 00000000 00:04 6346003    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0eab0000-0eda8000 rw-p 00000000 00:04 6345170    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0eda8000-0f0a0000 rw-p 00000000 00:04 6345169    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0f0a0000-0f398000 rw-p 00000000 00:04 6345166    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0f398000-0f690000 rw-p 00000000 00:04 6345165    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0f690000-0f988000 rw-p 00000000 00:04 6345164    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0f988000-0fc80000 rw-p 00000000 00:04 6345163    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0fc80000-0ff78000 rw-p 00000000 00:04 6345162    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 0ff78000-10270000 rw-p 00000000 00:04 6345161    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 10270000-10568000 rw-p 00000000 00:04 6345160    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 10568000-10860000 rw-p 00000000 00:04 6346000    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 10860000-10b58000 rw-p 00000000 00:04 6345159    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 10b58000-10e50000 rw-p 00000000 00:04 6345999    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 10e50000-11148000 rw-p 00000000 00:04 6345998    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 11148000-11440000 rw-p 00000000 00:04 6345997    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 11440000-11738000 rw-p 00000000 00:04 6345158    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 11738000-11a30000 rw-p 00000000 00:04 6345996    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 11a30000-11d28000 rw-p 00000000 00:04 6344082    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 11d28000-12020000 rw-p 00000000 00:04 6345155    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 12020000-12318000 rw-p 00000000 00:04 6345995    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 12318000-12610000 rw-p 00000000 00:04 6345994    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 12610000-12908000 rw-p 00000000 00:04 6345993    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 12908000-12c00000 rw-p 00000000 00:04 6345992    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 12c00000-12e01000 rw-p 00000000 00:04 6466       /dev/ashmem/dalvik-main space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 12e01000-1363d000 rw-p 00201000 00:04 6466       /dev/ashmem/dalvik-main space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 1363d000-32c00000 ---p 00a3d000 00:04 6466       /dev/ashmem/dalvik-main space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 32c00000-32c01000 rw-p 00000000 00:04 6467       /dev/ashmem/dalvik-main space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 32c01000-52c00000 ---p 00001000 00:04 6467       /dev/ashmem/dalvik-main space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 52e38000-53130000 rw-p 00000000 00:04 6345991    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 53130000-53428000 rw-p 00000000 00:04 6345990    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 53428000-53720000 rw-p 00000000 00:04 6345152    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 53720000-53a18000 rw-p 00000000 00:04 6345989    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 53a18000-53d10000 rw-p 00000000 00:04 6345988    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 53d10000-54008000 rw-p 00000000 00:04 6345151    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 54008000-54300000 rw-p 00000000 00:04 6344081    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 54300000-54317000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 54500000-55500000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55569000-55589000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55589000-55669000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55810000-55b08000 rw-p 00000000 00:04 6345150    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55b08000-55e00000 rw-p 00000000 00:04 6344080    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55e00000-55e01000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55e01000-55e02000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55e02000-55e04000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55e04000-55ffc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 55ffc000-56001000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56001000-56002000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56002000-56004000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56004000-561fc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 561fc000-56201000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56201000-56202000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56202000-56204000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56204000-563fc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 563fc000-56401000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56401000-56402000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56402000-56404000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56404000-565fc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 565fc000-56601000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56601000-56602000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56602000-56604000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56604000-567fc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 567fc000-56801000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56801000-56802000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56802000-56804000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56804000-569fc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 569fc000-56a00000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56b08000-56e00000 rw-p 00000000 00:04 6345149    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 56e00000-58f09000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 58f09000-58f0a000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 58f0a000-58f0b000 rwxp 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 58f0b000-58f2c000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 59100000-5b511000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5b608000-5b900000 rw-p 00000000 00:04 6345985    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5b908000-5bc00000 rw-p 00000000 00:04 6344104    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5bc00000-5ca00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5ca00000-5ca01000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5ca01000-5ca02000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5ca02000-5ca04000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5ca04000-5cbfc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5cbfc000-5cc01000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5cc01000-5cc02000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5cc02000-5cc04000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5cc04000-5cdfc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5cdfc000-5ce01000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5ce01000-5ce02000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5ce02000-5ce04000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5ce04000-5cffc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5cffc000-5d000000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5d016000-5d30e000 rw-p 00000000 00:04 6344077    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5d30e000-5d606000 rw-p 00000000 00:04 6344076    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5d606000-5d8fe000 rw-p 00000000 00:04 6345987    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5d8fe000-5d8ff000 r-xp 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 5d900000-61c00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 61c96000-70000000 rw-s 00000000 00:04 6334503    /dev/ashmem/DiscardableMemoryAshmemAllocator (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 70000000-7250d000 rw-p 00000000 b3:10 3718       /system/framework/arm/boot.art
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 7250d000-74eb3000 r--p 00000000 b3:10 3719       /system/framework/arm/boot.oat
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 74eb3000-76f5a000 r-xp 029a6000 b3:10 3719       /system/framework/arm/boot.oat
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 76f5a000-76f5b000 rw-p 04a4d000 b3:10 3719       /system/framework/arm/boot.oat
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 76f5b000-775c6000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 775c6000-77ba8000 r--p 00000000 b3:1d 271594     /data/dalvik-cache/arm/data@app@com.lfdversluis.mytwitchchannel-1@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 77ba8000-77f95000 r-xp 005e2000 b3:1d 271594     /data/dalvik-cache/arm/data@app@com.lfdversluis.mytwitchchannel-1@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 77f95000-77f96000 rw-p 009cf000 b3:1d 271594     /data/dalvik-cache/arm/data@app@com.lfdversluis.mytwitchchannel-1@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 77f96000-86f5b000 ---p 00000000 00:04 6332674    /dev/ashmem/dalvik-alloc-space-gap (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 86f5b000-88061000 rw-p 00000000 00:04 6465       /dev/ashmem/dalvik-non moving space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 88061000-88062000 rw-p 00000000 00:04 6626       /dev/ashmem/dalvik-alloc space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 88062000-880eb000 rw-p 00001000 00:04 6626       /dev/ashmem/dalvik-alloc space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 880eb000-8a75c000 ---p 0008a000 00:04 6626       /dev/ashmem/dalvik-alloc space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8a75c000-8af5b000 rw-p 026fb000 00:04 6626       /dev/ashmem/dalvik-alloc space (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8b100000-8b109000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8b109000-8b10a000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8b10a000-8b1ff000 rwxp 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8b1ff000-8b200000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8b208000-8b500000 rw-p 00000000 00:04 6345986    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8b500000-8c100000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8c100000-8c500000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8c700000-8cb00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8cc00000-8cd00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8cd40000-8d140000 rw-s 00000000 00:04 6342226    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8d194000-8dd00000 r-xp 00000000 b3:1d 271566     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavcodec.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8dd00000-8dd1b000 r--p 00b6b000 b3:1d 271566     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavcodec.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8dd1b000-8dd2b000 rw-p 00b86000 b3:1d 271566     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavcodec.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8dd2b000-8e428000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8e428000-8e720000 rw-p 00000000 00:04 6344103    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8e720000-8ef90000 rw-s 00000000 00:08 4206       anon_inode:dmabuf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8ef90000-8f800000 rw-s 00000000 00:08 4206       anon_inode:dmabuf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8f88a000-8fb82000 rw-s 00000000 00:04 6344917    /dev/ashmem/MemoryHeapBase (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8fb82000-8fb83000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8fb83000-8fc80000 rw-p 00000000 00:00 0          [stack:16236]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8fd8c000-8fd8d000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8fd8d000-8fd8e000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8fd8e000-8fe90000 rw-p 00000000 00:00 0          [stack:18887]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 8fe90000-90700000 rw-s 00000000 00:08 4206       anon_inode:dmabuf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 90800000-90900000 rw-s 00000000 00:04 6338068    /dev/ashmem/AudioFlinger::Client (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 90900000-90c00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 90c00000-90d00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 90dc3000-90e00000 r--p 00000000 b3:10 274        /system/fonts/NotoSerif-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 90f00000-91000000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91100000-91500000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 915e0000-915e1000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 915e1000-915e2000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 915e2000-91600000 rw-p 00000000 00:00 0          [stack:16004]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91600000-91900000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9193c000-9193d000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9193d000-9193e000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9193e000-91a40000 rw-p 00000000 00:00 0          [stack:16001]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91a40000-91a41000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91a41000-91a5f000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91a5f000-91b80000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91d02000-91d03000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91d03000-91d04000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91d04000-91e00000 rw-p 00000000 00:00 0          [stack:18908]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 91e00000-92000000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92000000-92400000 rw-s 00000000 00:04 6343312    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92400000-92500000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92502000-92503000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92503000-92504000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92504000-92600000 rw-p 00000000 00:00 0          [stack:18903]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92716000-92816000 rw-s 00000000 00:04 6343311    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92816000-92c16000 rw-s 00000000 00:04 6343310    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92d00000-92e00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92e15000-92e18000 rw-p 00000000 00:04 6333945    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92e18000-92e19000 rw-p 00000000 00:04 6333944    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92e19000-92e1b000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92e1b000-92e1c000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92e1c000-92e1d000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 92e1d000-92f1f000 rw-p 00000000 00:00 0          [stack:15976]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 93000000-93600000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 936e0000-93860000 rw-s 00000000 00:04 6337946    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 938f2000-938f3000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 938f3000-938f4000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 938f4000-939f0000 rw-p 00000000 00:00 0          [stack:16830]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 93a00000-93c00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 93c02000-93c03000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 93c03000-93d00000 rw-p 00000000 00:00 0          [stack:18798]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 93d00000-94100000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 94100000-94800000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 94800000-94900000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 94900000-95000000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95030000-95130000 rw-s 00000000 00:04 6342225    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95300000-95400000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95400000-95401000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95401000-95402000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95402000-95404000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95404000-955fc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 955fc000-95601000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95601000-95602000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95602000-95604000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95604000-957fc000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 957fc000-95800000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95804000-95805000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95805000-95902000 rw-p 00000000 00:00 0          [stack:15998]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95902000-95903000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95903000-95a00000 rw-p 00000000 00:00 0          [stack:18797]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95a00000-95a17000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95b00000-95e00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95e00000-95e09000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95e09000-95e0a000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95e0a000-95e6b000 rwxp 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95e6b000-95e6c000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 95f00000-95f2e000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96000000-960a1000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96102000-96103000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96103000-96200000 rw-p 00000000 00:00 0          [stack:15971]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96200000-96209000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96209000-9620a000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9620a000-9620b000 rwxp 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9620b000-9622c000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96300000-96309000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96309000-9630a000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9630a000-9630b000 rwxp 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9630b000-9632c000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96400000-96500000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96500000-96501000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96501000-965fe000 rw-p 00000000 00:00 0          [stack:15964]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 965fe000-965ff000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 965ff000-96600000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96600000-966fc000 rw-p 00000000 00:00 0          [stack:15963]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 966fc000-966fd000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 966fd000-966fe000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 966fe000-96800000 rw-p 00000000 00:00 0          [stack:15962]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96800000-96900000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 969e1000-969ea000 rw-s 00083000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 969fb000-969fc000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 969fc000-969fd000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 969fd000-96af9000 rw-p 00000000 00:00 0          [stack:15961]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96af9000-96afa000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96afa000-96bf7000 rw-p 00000000 00:00 0          [stack:15960]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96bf7000-96bf9000 rw-s 0006c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96c00000-96d00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96d1e000-96d1f000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96d1f000-96d20000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96d20000-96e1c000 rw-p 00000000 00:00 0          [stack:17639]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96e1c000-96e1d000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96e1d000-96e1e000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96e1e000-96f20000 rw-p 00000000 00:00 0          [stack:15779]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96f2d000-96f7a000 r--p 00000000 b3:10 2007       /system/fonts/Roboto-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96fad000-96ffa000 r--p 00000000 b3:10 1554       /system/fonts/Roboto-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96ffa000-96ffb000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96ffb000-96ffc000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 96ffc000-970fe000 rw-p 00000000 00:00 0          [stack:15995]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97110000-97189000 rw-s 00082000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97208000-97209000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97209000-97306000 rw-p 00000000 00:00 0          [stack:18796]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97306000-975d0000 r-xp 00000000 b3:1d 271534     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavformat.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 975d0000-975eb000 r--p 002c9000 b3:1d 271534     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavformat.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 975eb000-975fe000 rw-p 002e4000 b3:1d 271534     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavformat.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 975fe000-97600000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97600000-97700000 rw-s 00000000 00:04 6343309    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97700000-97800000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97802000-97803000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97803000-97900000 rw-p 00000000 00:00 0          [stack:18795]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97900000-97a00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97a77000-97a7a000 rw-s 00050000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97a7a000-97a7d000 rw-s 00059000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97ac2000-97ac3000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97ac3000-97bc0000 rw-p 00000000 00:00 0          [stack:18792]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97bc0000-97bc1000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97bc1000-97bdf000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97bdf000-97d00000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97d84000-97d85000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97d85000-97e82000 rw-p 00000000 00:00 0          [stack:18791]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97e82000-97e83000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97e83000-97f80000 rw-p 00000000 00:00 0          [stack:18480]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 97f80000-97ff9000 rw-s 0005f000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98000000-98100000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9811f000-98130000 rw-s 0005b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98170000-98181000 rw-s 00066000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98181000-98183000 rw-s 0003d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98183000-98185000 rw-s 0004a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 981ac000-981bd000 rw-s 0009d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 981bd000-981ce000 rw-s 0009c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 981ce000-981df000 rw-s 0009b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9827a000-9827b000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9827b000-98378000 rw-p 00000000 00:00 0          [stack:18790]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98378000-983f8000 r-xp 00000000 b3:1d 271550     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavformat.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 983f8000-983fa000 r--p 0007f000 b3:1d 271550     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavformat.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 983fa000-983fb000 rw-p 00081000 b3:1d 271550     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavformat.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 983fb000-98600000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98601000-98615000 rw-p 00000000 00:04 6332245    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98636000-9864a000 rw-p 00000000 00:04 6333988    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 986ad000-986af000 rw-s 00081000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 986af000-986b1000 rw-s 00080000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 986b4000-986c5000 rw-s 0007e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 986c5000-98706000 rw-s 0006e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98706000-98707000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98707000-98804000 rw-p 00000000 00:00 0          [stack:15987]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98804000-98805000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98805000-98902000 rw-p 00000000 00:00 0          [stack:15979]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98902000-98903000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98903000-98a00000 rw-p 00000000 00:00 0          [stack:15978]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98a00000-98c00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98c80000-98cf9000 rw-s 0001f000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98cf9000-98cfb000 rw-s 00040000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98cff000-98e00000 rw-p 00000000 00:04 6331967    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98e00000-98f00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98f09000-98f1a000 rw-s 00061000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98f1a000-98f1c000 rw-s 00060000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98f25000-98f36000 rw-s 0005e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98f36000-98f47000 rw-s 0005d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98f5d000-98f6e000 rw-s 0009a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98f6e000-98f7f000 rw-s 00099000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98f7f000-98f90000 rw-s 00098000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98ffc000-98ffd000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98ffd000-98ffe000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 98ffe000-99100000 rw-p 00000000 00:00 0          [stack:15812]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99100000-99200000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99209000-99261000 rw-p 00000000 00:04 6332043    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99261000-992a2000 rw-s 00047000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 992a2000-992e3000 rw-s 00046000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 992e3000-992e4000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 992e4000-992e5000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 992e5000-993e7000 rw-p 00000000 00:00 0          [stack:15662]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 993e7000-993e8000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 993e8000-993e9000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 993e9000-994eb000 rw-p 00000000 00:00 0          [stack:15661]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 994eb000-994ec000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 994ec000-994ed000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 994ed000-995ef000 rw-p 00000000 00:00 0          [stack:15660]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 995ef000-995f0000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 995f0000-995f1000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 995f1000-996f3000 rw-p 00000000 00:00 0          [stack:15659]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9970b000-99b00000 rw-p 00000000 00:04 6345032    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99b00000-99c00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c07000-99c18000 rw-s 00097000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c18000-99c1a000 rw-s 0007d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c1a000-99c1c000 rw-s 0007c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c1c000-99c1e000 rw-s 0007b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c1e000-99c20000 rw-s 0007a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c20000-99c22000 rw-s 00079000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c22000-99c24000 rw-s 00078000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c24000-99c26000 rw-s 00077000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c26000-99c37000 rw-s 00076000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c37000-99c78000 rw-s 00045000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99c78000-99cb9000 rw-s 00044000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99cb9000-99cfa000 rw-s 00043000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99cfa000-99cfb000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99cfb000-99cfc000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99cfc000-99dfe000 rw-p 00000000 00:00 0          [stack:15632]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99e00000-99f00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99f00000-99f01000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99f01000-99f02000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99f02000-99ffe000 rw-p 00000000 00:00 0          [stack:15666]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99ffe000-99fff000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 99fff000-9a000000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a000000-9a102000 rw-p 00000000 00:00 0          [stack:15629]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a102000-9a103000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a103000-9a104000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a104000-9a200000 rw-p 00000000 00:00 0          [stack:15628]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a200000-9a300000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a31e000-9a35f000 rw-s 00042000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a35f000-9a3a0000 rw-p 00000000 00:04 6331034    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a3a0000-9a3e1000 rw-p 00000000 00:04 6331971    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a3e1000-9a3e2000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a3e2000-9a4df000 rw-p 00000000 00:00 0          [stack:15626]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a4df000-9a4e0000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a4e0000-9a5dd000 rw-p 00000000 00:00 0          [stack:15625]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a5dd000-9a5de000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a5de000-9a5df000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a5df000-9a6db000 rw-p 00000000 00:00 0          [stack:15624]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a6db000-9a6dc000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a6dc000-9a6dd000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a6dd000-9a7d9000 rw-p 00000000 00:00 0          [stack:15623]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a7d9000-9a7da000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a7da000-9a7db000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a7db000-9a8d7000 rw-p 00000000 00:00 0          [stack:15622]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a8d7000-9a8d8000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a8d8000-9a8d9000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a8d9000-9a9d5000 rw-p 00000000 00:00 0          [stack:15621]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a9d5000-9a9d6000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a9d6000-9a9d7000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9a9d7000-9aad3000 rw-p 00000000 00:00 0          [stack:15620]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9aad3000-9aad4000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9aad4000-9aad5000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9aad5000-9abd1000 rw-p 00000000 00:00 0          [stack:15619]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9abd1000-9b010000 r-xp 00000000 b3:10 2025       /system/vendor/lib/libsc-a3xx.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b010000-9b038000 r--p 0043e000 b3:10 2025       /system/vendor/lib/libsc-a3xx.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b038000-9b03a000 rw-p 00466000 b3:10 2025       /system/vendor/lib/libsc-a3xx.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b03a000-9b049000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b049000-9b166000 r--s 00795000 b3:1d 264441     /data/app/com.google.android.webview-2/base.apk
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b166000-9b167000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b167000-9b168000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b168000-9b264000 rw-p 00000000 00:00 0          [stack:15609]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b264000-9b265000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b265000-9b362000 rw-p 00000000 00:00 0          [stack:15606]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b362000-9b363000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b363000-9b460000 rw-p 00000000 00:00 0          [stack:15603]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9b460000-9ba5c000 r--s 0001a000 b3:1d 264441     /data/app/com.google.android.webview-2/base.apk
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9ba62000-9ba63000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9ba63000-9ba64000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9ba64000-9bb60000 rw-p 00000000 00:00 0          [stack:15977]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bb60000-9bcc0000 r--p 00000000 b3:1d 264546     /data/dalvik-cache/arm/data@app@com.google.android.webview-2@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bcc0000-9bdb6000 r-xp 00160000 b3:1d 264546     /data/dalvik-cache/arm/data@app@com.google.android.webview-2@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bdb6000-9bdb7000 rw-p 00256000 b3:1d 264546     /data/dalvik-cache/arm/data@app@com.google.android.webview-2@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bdb7000-9bdb8000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bdb8000-9bdb9000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bdb9000-9beb5000 rw-p 00000000 00:00 0          [stack:15562]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9beb5000-9beb6000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9beb6000-9beb7000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9beb7000-9bfb9000 rw-p 00000000 00:00 0          [stack:15560]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bfb9000-9bfba000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bfba000-9bfbb000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9bfbb000-9c0bd000 rw-p 00000000 00:00 0          [stack:15559]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c0bd000-9c0be000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c0be000-9c0bf000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c0bf000-9c1c1000 rw-p 00000000 00:00 0          [stack:15552]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c224000-9c2bd000 r-xp 00000000 b3:1d 271526     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavcodec.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c2bd000-9c2bf000 r--p 00098000 b3:1d 271526     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavcodec.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c2bf000-9c2c0000 rw-p 0009a000 b3:1d 271526     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavcodec.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c2c0000-9c2c5000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c2c5000-9c2c6000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c2c6000-9c2c7000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c2c7000-9c3c9000 rw-p 00000000 00:00 0          [stack:15531]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9c3c9000-9e347000 r--p 00000000 b3:1d 264006     /data/dalvik-cache/arm/data@app@com.google.android.gms-1@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ 9e347000-a05a0000 r-xp 01f7e000 b3:1d 264006     /data/dalvik-cache/arm/data@app@com.google.android.gms-1@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a05a0000-a05a1000 rw-p 041d7000 b3:1d 264006     /data/dalvik-cache/arm/data@app@com.google.android.gms-1@base.apk@classes.dex
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a05a1000-a05b2000 rw-s 0006b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a05b2000-a05c3000 rw-s 0006a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a05c3000-a0604000 rw-s 00041000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0606000-a0617000 rw-s 0005a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0617000-a0628000 rw-s 00058000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0628000-a0639000 rw-s 00057000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0639000-a064a000 rw-s 00056000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a064a000-a064c000 rw-s 00055000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a064c000-a065d000 rw-s 00054000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a065d000-a066e000 rw-s 00053000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a066e000-a067f000 rw-s 00052000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a067f000-a0690000 rw-s 00051000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a06a0000-a06b1000 rw-s 00069000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a06d2000-a06e0000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a06e0000-a06f0000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a06f0000-a0702000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a071f000-a0775000 r-xp 00000000 b3:1d 271542     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libswscale.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0775000-a0776000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0776000-a0777000 r--p 00056000 b3:1d 271542     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libswscale.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0777000-a0778000 rw-p 00057000 b3:1d 271542     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libswscale.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0778000-a0780000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0780000-a07f9000 rw-s 0001e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0800000-a0900000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a090b000-a090c000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a090c000-a092b000 rw-p 00000000 00:00 0          [stack:16350]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a092b000-a094b000 r--s 00000000 00:04 6332809    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a094b000-a094d000 rw-s 0003b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a094d000-a094f000 rw-s 0003a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a095f000-a0970000 rw-s 00096000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0970000-a0a01000 rw-s 00030000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0a04000-a0a85000 rw-s 0002f000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0a90000-a0ad9000 rw-s 0002e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0b2f000-a0b40000 rw-s 00095000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0b40000-a0b89000 rw-s 0002c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0b90000-a0bd9000 rw-s 0002b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0bdf000-a0bf0000 rw-s 000b3000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0bf0000-a0d01000 rw-s 0002a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0d10000-a0d59000 rw-s 00029000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0d5f000-a0d70000 rw-s 0004e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0d70000-a0db9000 rw-s 00028000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0dc0000-a0e09000 rw-s 00027000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0e0c000-a0e0f000 rw-p 00000000 00:04 6334071    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0e0f000-a0e20000 rw-s 0004c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0e20000-a0e69000 rw-s 00026000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0e6b000-a0e6e000 rw-p 00000000 00:04 6331132    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0e6e000-a0e70000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0e70000-a0eb9000 rw-s 00025000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0eb9000-a0ebc000 rw-p 00000000 00:04 6334033    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0ebc000-a0ebd000 rw-p 00000000 00:04 6334032    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0ebd000-a0ebf000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0ebf000-a0ed0000 rw-s 0004b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0ed0000-a0f19000 rw-s 00024000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0f19000-a0f1b000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0f43000-a0f63000 r-xp 00000000 b3:1d 271391     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniswscale.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0f63000-a0f65000 r--p 0001f000 b3:1d 271391     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniswscale.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0f65000-a0f66000 rw-p 00021000 b3:1d 271391     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniswscale.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0f66000-a0f6a000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0f6a000-a0f6d000 rw-p 00000000 00:04 6331121    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0f6d000-a0f70000 rw-p 00000000 00:04 6332237    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a0f87000-a1007000 r-xp 00000000 b3:1d 271556     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavutil.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1007000-a1008000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1008000-a100a000 r--p 00080000 b3:1d 271556     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavutil.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a100a000-a100b000 rw-p 00082000 b3:1d 271556     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniavutil.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a100b000-a1010000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1010000-a1069000 r-xp 00000000 b3:1d 271536     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavutil.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1069000-a106a000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a106a000-a106d000 r--p 00059000 b3:1d 271536     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavutil.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a106d000-a106e000 rw-p 0005c000 b3:1d 271536     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libavutil.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a106e000-a1083000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a108a000-a108c000 rw-s 0008d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a109d000-a109e000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a109e000-a109f000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a109f000-a11a1000 rw-p 00000000 00:00 0          [stack:17645]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a11a3000-a11a5000 rw-s 00087000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a11ad000-a11af000 rw-s 00075000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a11af000-a11c0000 rw-s 00048000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a120f000-a1211000 rw-s 00031000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1211000-a1213000 rw-s 0004d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1213000-a1215000 rw-s 0005c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1215000-a1217000 rw-s 00062000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1219000-a121b000 rw-s 00064000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a121b000-a121d000 rw-s 00065000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a123f000-a1250000 rw-p 00000000 00:04 6343975    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1250000-a12c9000 rw-s 0001c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a12d1000-a12d3000 rw-s 00074000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a12d3000-a12d5000 rw-s 00073000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a12d5000-a12d7000 rw-s 00071000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a12d7000-a12da000 rw-s 00070000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a12de000-a12ff000 rw-s 000a0000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a12ff000-a1310000 rw-s 000cc000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1315000-a1330000 r-xp 00000000 b3:1d 271532     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniswresample.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1330000-a1331000 r--p 0001a000 b3:1d 271532     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniswresample.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1331000-a1332000 rw-p 0001b000 b3:1d 271532     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libjniswresample.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1332000-a1336000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1336000-a1347000 rw-s 000cb000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1347000-a1368000 rw-s 000d8000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1368000-a1389000 rw-s 0009e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a138b000-a139d000 r-xp 00000000 b3:1d 271524     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libswresample.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a139d000-a139f000 r--p 00011000 b3:1d 271524     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libswresample.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a139f000-a13a0000 rw-p 00013000 b3:1d 271524     /data/app/com.lfdversluis.mytwitchchannel-1/lib/arm/libswresample.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a13bc000-a13dd000 rw-s 0007f000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a13ed000-a13fe000 rw-s 0001d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a13fe000-a1400000 rw-s 00072000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1400000-a1500000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1501000-a1504000 rw-s 0006f000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1504000-a1506000 rw-s 0006d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1508000-a150a000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a150d000-a150f000 rw-s 00038000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a150f000-a1513000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1513000-a1515000 rw-s 0003f000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a151c000-a151f000 rw-p 00000000 00:04 6331108    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a151f000-a1530000 rw-s 00037000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a153a000-a154b000 rw-s 000c3000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a154b000-a1550000 rw-p 00000000 00:04 6342462    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1550000-a1571000 rw-s 00039000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1573000-a1579000 rw-p 00000000 00:04 6340430    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1579000-a157b000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a157b000-a157e000 rw-p 00000000 00:04 6332132    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a157e000-a15bf000 rw-p 00000000 00:04 6331040    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1600000-a1800000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1800000-a1802000 rw-s 0003c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1805000-a1807000 rw-s 00091000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1807000-a1818000 rw-s 0003e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1819000-a181b000 r-xp 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a181b000-a181e000 rw-p 00000000 00:04 6332930    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a181e000-a1822000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1822000-a1825000 rw-p 00000000 00:04 6332926    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1825000-a1826000 rw-p 00000000 00:04 6332925    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1826000-a182c000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1838000-a1839000 rw-p 00000000 00:04 6334070    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1839000-a187a000 rw-p 00000000 00:04 6331966    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a187a000-a18bb000 rw-p 00000000 00:04 6332837    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a18bb000-a18fc000 rw-p 00000000 00:04 6332836    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a18fc000-a18fd000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a18fd000-a18fe000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a18fe000-a1a00000 rw-p 00000000 00:00 0          [stack:15523]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1a00000-a1b00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1b00000-a1b01000 rw-p 00000000 00:04 6331131    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1b01000-a1b42000 rw-p 00000000 00:04 6332835    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1b42000-a1b44000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1b44000-a1b85000 rw-p 00000000 00:04 6332834    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1b85000-a1bc6000 rw-p 00000000 00:04 6332833    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bc6000-a1bcc000 r-xp 00000000 b3:10 693        /system/lib/libqservice.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bcc000-a1bcd000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bcd000-a1bcf000 r--p 00006000 b3:10 693        /system/lib/libqservice.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bcf000-a1bd0000 rw-p 00008000 b3:10 693        /system/lib/libqservice.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bd0000-a1bd4000 r-xp 00000000 b3:10 1841       /system/lib/libqdutils.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bd4000-a1bd5000 r--p 00003000 b3:10 1841       /system/lib/libqdutils.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bd5000-a1bd6000 rw-p 00004000 b3:10 1841       /system/lib/libqdutils.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bd6000-a1bd9000 r-xp 00000000 b3:10 1430       /system/lib/libmemalloc.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bd9000-a1bda000 r--p 00002000 b3:10 1430       /system/lib/libmemalloc.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bda000-a1bdb000 rw-p 00003000 b3:10 1430       /system/lib/libmemalloc.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bdb000-a1bde000 rw-p 00000000 00:04 6332907    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bde000-a1bf2000 rw-p 00000000 00:04 6332062    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bf7000-a1bfa000 rw-p 00000000 00:04 6340404    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bfa000-a1bfc000 rw-s 000c1000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bfc000-a1bfd000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bfd000-a1bfe000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1bfe000-a1d00000 rw-p 00000000 00:00 0          [stack:15521]
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1d00000-a1e00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e00000-a1e01000 rw-p 00000000 00:04 6331120    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e01000-a1e04000 r-xp 00000000 b3:10 1284       /system/lib/hw/gralloc.msm8960.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e04000-a1e05000 r--p 00002000 b3:10 1284       /system/lib/hw/gralloc.msm8960.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e05000-a1e06000 rw-p 00003000 b3:10 1284       /system/lib/hw/gralloc.msm8960.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e06000-a1e09000 rw-p 00000000 00:04 6331110    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e09000-a1e0b000 rw-s 00018000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e0b000-a1e1c000 rw-s 00017000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e1c000-a1e1e000 rw-s 00016000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e1e000-a1e20000 rw-s 00015000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e20000-a1e31000 rw-s 0000e000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e31000-a1e72000 rw-s 00006000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1e72000-a1e83000 rw-s 00004000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a1ec4000-a26c4000 rw-p 00000000 00:04 6625       /dev/ashmem/dalvik-allocspace main rosalloc space mark-bitmap 3 (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a26c4000-a2ec4000 rw-p 00000000 00:04 6624       /dev/ashmem/dalvik-allocspace main rosalloc space live-bitmap 3 (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a2ec4000-a492a000 r-xp 00000000 b3:1d 264545     /data/app/com.google.android.webview-2/lib/arm/libwebviewchromium.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a492a000-a4a69000 r--p 00000000 b3:1d 129968     /data/misc/shared_relro/libwebviewchromium32.relro
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a4a69000-a4a7e000 rw-p 01ba4000 b3:1d 264545     /data/app/com.google.android.webview-2/lib/arm/libwebviewchromium.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a4a7e000-a4aa8000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a4aa8000-a92c4000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a92c4000-a93c9000 r-xp 00000000 b3:10 79         /system/vendor/lib/egl/libGLESv2_adreno.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a93c9000-a93ca000 ---p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a93ca000-a93cc000 r--p 00105000 b3:10 79         /system/vendor/lib/egl/libGLESv2_adreno.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a93cc000-a93ff000 rw-p 00107000 b3:10 79         /system/vendor/lib/egl/libGLESv2_adreno.so
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a93ff000-a9500000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9500000-a9511000 rw-s 00003000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9511000-a9531000 rw-s 00000000 00:04 6332809    /dev/ashmem (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9531000-a9533000 r--p 00000000 b3:10 3705       /system/fonts/SamsungSans-Num4T.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9533000-a9536000 r--p 00000000 b3:10 3703       /system/fonts/SamsungSans-Num4L.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9536000-a9538000 r--p 00000000 b3:10 3702       /system/fonts/SamsungSans-Num3T.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9538000-a953b000 r--p 00000000 b3:10 3699       /system/fonts/SamsungSans-Num3L.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a953b000-a953d000 r--p 00000000 b3:10 3698       /system/fonts/SamsungNeoNum-3T.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a953d000-a953f000 r--p 00000000 b3:10 3697       /system/fonts/SamsungNeoNum-3L.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a953f000-a95f3000 r--p 00000000 b3:10 1252       /system/fonts/SamsungSans-Thin.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a95f3000-a9774000 r--p 00000000 b3:10 1403       /system/fonts/SamsungSans-Light.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9774000-a98f5000 r--p 00000000 b3:10 118        /system/fonts/SECRobotoLight-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a98f5000-a9a94000 r--p 00000000 b3:10 1470       /system/fonts/SECRobotoLight-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9a94000-a9a9e000 r--p 00000000 b3:10 3670       /system/fonts/CarroisGothicSC-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9a9e000-a9abb000 r--p 00000000 b3:10 3673       /system/fonts/DancingScript-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9abb000-a9ad8000 r--p 00000000 b3:10 3674       /system/fonts/DancingScript-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9ad8000-a9ae7000 r--p 00000000 b3:10 3671       /system/fonts/ComingSoon.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9ae7000-a9af8000 r--p 00000000 b3:10 3672       /system/fonts/CutiveMono.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9af8000-a9b13000 r--p 00000000 b3:10 450        /system/fonts/DroidSansMono.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9b13000-a9b53000 r--p 00000000 b3:10 869        /system/fonts/NotoSerif-BoldItalic.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9b53000-a9b90000 r--p 00000000 b3:10 288        /system/fonts/NotoSerif-Italic.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9b90000-a9bcd000 r--p 00000000 b3:10 273        /system/fonts/NotoSerif-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9bcd000-a9c0a000 r--p 00000000 b3:10 274        /system/fonts/NotoSerif-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9c0a000-a9c4a000 r--p 00000000 b3:10 1998       /system/fonts/RobotoCondensed-BoldItalic.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9c4a000-a9c85000 r--p 00000000 b3:10 1230       /system/fonts/RobotoCondensed-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9c85000-a9cc5000 r--p 00000000 b3:10 1999       /system/fonts/RobotoCondensed-Italic.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9cc5000-a9d00000 r--p 00000000 b3:10 1221       /system/fonts/RobotoCondensed-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9d00000-a9e00000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e01000-a9e03000 rw-s 00014000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e03000-a9e05000 rw-s 00013000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e05000-a9e07000 rw-s 00012000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e07000-a9e09000 rw-s 00011000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e0b000-a9e0e000 rw-p 00000000 00:04 6344091    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e0e000-a9e0f000 rw-p 00000000 00:04 6344090    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e0f000-a9e11000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e11000-a9e14000 rw-p 00000000 00:04 6344087    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e14000-a9e15000 rw-p 00000000 00:04 6344086    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e15000-a9e17000 rw-p 00000000 00:00 0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e17000-a9e1a000 rw-p 00000000 00:04 6338064    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e1a000-a9e5b000 r--p 00000000 b3:10 3696       /system/fonts/RobotoCondensed-LightItalic.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e5b000-a9e96000 r--p 00000000 b3:10 3695       /system/fonts/RobotoCondensed-Light.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e96000-a9e97000 rw-p 00000000 00:04 6332236    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9e97000-a9f17000 r--p 00000000 b3:10 330        /system/fonts/SamsungEmoji.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ a9f17000-aa052000 r--p 00000000 b3:10 247        /system/fonts/NanumGothic.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aa052000-aa054000 rw-s 00010000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aa054000-aa2c5000 r--p 00000000 b3:10 190        /system/fonts/MTLmr3m.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aa2c5000-aa4fd000 r--p 00000000 b3:10 1239       /system/fonts/SamsungKorean-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aa4fd000-aa737000 r--p 00000000 b3:10 1240       /system/fonts/SamsungKorean.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aa737000-aae43000 r--p 00000000 b3:10 366        /system/fonts/DroidSansFallback.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aae43000-aae4d000 r--p 00000000 b3:10 1172       /system/fonts/DroidSans_Subset.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aae4d000-aae81000 r--s 0006d000 b3:10 160        /system/framework/twframework-res.apk
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aae81000-aaea2000 r--p 00000000 b3:10 3690       /system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aaea2000-ab754000 r--p 00000000 b3:10 187        /system/fonts/NotoColorEmoji.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab754000-ab76c000 r--p 00000000 b3:10 3686       /system/fonts/NotoSansMyanmarUI-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab76c000-ab783000 r--p 00000000 b3:10 3687       /system/fonts/NotoSansMyanmarUI-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab783000-ab79d000 r--p 00000000 b3:10 3684       /system/fonts/NotoSansMyanmar-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab79d000-ab7b8000 r--p 00000000 b3:10 3685       /system/fonts/NotoSansMyanmar-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab7b8000-ab7c0000 r--p 00000000 b3:10 771        /system/fonts/NotoSansLaoUI-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab7c0000-ab7c8000 r--p 00000000 b3:10 299        /system/fonts/NotoSansLaoUI-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab7c8000-ab7d0000 r--p 00000000 b3:10 827        /system/fonts/NotoSansLao-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab7d0000-ab7d8000 r--p 00000000 b3:10 26         /system/fonts/NotoSansLao-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab7d8000-ab7fd000 r--p 00000000 b3:10 3688       /system/fonts/NotoSansSinhala-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab7fd000-ab824000 r--p 00000000 b3:10 3689       /system/fonts/NotoSansSinhala-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab824000-ab838000 r--p 00000000 b3:10 1788       /system/fonts/NotoSansKannadaUI-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab838000-ab84c000 r--p 00000000 b3:10 1677       /system/fonts/NotoSansKannadaUI-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab84c000-ab860000 r--p 00000000 b3:10 1818       /system/fonts/NotoSansKannada-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab860000-ab874000 r--p 00000000 b3:10 1820       /system/fonts/NotoSansKannada-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab874000-ab88f000 r--p 00000000 b3:10 987        /system/fonts/NotoSansTeluguUI-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab88f000-ab8ab000 r--p 00000000 b3:10 941        /system/fonts/NotoSansTeluguUI-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab8ab000-ab8c6000 r--p 00000000 b3:10 174        /system/fonts/NotoSansTelugu-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab8c6000-ab8e1000 r--p 00000000 b3:10 900        /system/fonts/NotoSansTelugu-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab8e1000-ab8fb000 r--p 00000000 b3:10 955        /system/fonts/NotoSansBengaliUI-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab8fb000-ab916000 r--p 00000000 b3:10 1007       /system/fonts/NotoSansBengaliUI-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab916000-ab92e000 r--p 00000000 b3:10 641        /system/fonts/NotoSansBengali-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab92e000-ab947000 r--p 00000000 b3:10 642        /system/fonts/NotoSansBengali-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab947000-ab956000 r--p 00000000 b3:10 714        /system/fonts/NotoSansMalayalamUI-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab956000-ab965000 r--p 00000000 b3:10 157        /system/fonts/NotoSansMalayalamUI-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab965000-ab973000 r--p 00000000 b3:10 66         /system/fonts/NotoSansMalayalam-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab973000-ab981000 r--p 00000000 b3:10 1776       /system/fonts/NotoSansMalayalam-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab981000-ab98a000 r--p 00000000 b3:10 865        /system/fonts/NotoSansTamilUI-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab98a000-ab993000 r--p 00000000 b3:10 859        /system/fonts/NotoSansTamilUI-Regular.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab993000-ab99c000 r--p 00000000 b3:10 822        /system/fonts/NotoSansTamil-Bold.ttf
05-13 13:41:08.587  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab99c000-ab9a5000 r--p 00000000 b3:10 811        /system/fonts/NotoSansTamil-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab9a5000-ab9ac000 r--p 00000000 b3:10 1103       /system/fonts/SamsungPunjabi.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab9ac000-ab9c8000 r--p 00000000 b3:10 1283       /system/fonts/SamsungOriya.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ab9c8000-aba26000 r--p 00000000 b3:10 1991       /system/fonts/SamsungGujarathi.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aba26000-aba2f000 r--p 00000000 b3:10 1256       /system/fonts/SamsungThai.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aba2f000-aba4b000 r--p 00000000 b3:10 640        /system/fonts/NotoSansDevanagariUI-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aba4b000-aba69000 r--p 00000000 b3:10 649        /system/fonts/NotoSansDevanagariUI-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aba69000-aba8c000 r--p 00000000 b3:10 3681       /system/fonts/NotoSansEthiopic-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aba8c000-abaaf000 r--p 00000000 b3:10 90         /system/fonts/NotoSansEthiopic-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ abaaf000-abacc000 r--p 00000000 b3:10 3677       /system/fonts/NotoNaskhUI-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ abacc000-abae9000 r--p 00000000 b3:10 3678       /system/fonts/NotoNaskhUI-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ abae9000-abb06000 r--p 00000000 b3:10 3675       /system/fonts/NotoNaskh-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ abb06000-abb23000 r--p 00000000 b3:10 3676       /system/fonts/NotoNaskh-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ abb23000-abb76000 r--p 00000000 b3:10 1247       /system/fonts/Roboto-BoldItalic.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ abb76000-acec9000 r--s 00b21000 b3:10 71         /system/framework/framework-res.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ acec9000-ad01a000 r-xp 00000000 b3:10 302        /system/lib/libstagefright.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ad01a000-ad022000 r--p 00150000 b3:10 302        /system/lib/libstagefright.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ad022000-ad023000 rw-p 00158000 b3:10 302        /system/lib/libstagefright.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ad023000-ae200000 r--s 00000000 b3:10 168        /system/usr/icu/icudt53l.dat
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae200000-ae300000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae301000-ae303000 rw-s 0000f000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae303000-ae305000 rw-s 0000d000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae305000-ae307000 rw-s 0000c000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae307000-ae309000 rw-s 0000b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae309000-ae30c000 rw-p 00000000 00:04 6333715    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae30c000-ae30d000 rw-p 00000000 00:04 6333714    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae30d000-ae30f000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae30f000-ae312000 rw-p 00000000 00:04 6333711    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae312000-ae313000 rw-p 00000000 00:04 6333710    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae313000-ae315000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae315000-ae318000 rw-p 00000000 00:04 6331926    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae318000-ae365000 r--p 00000000 b3:10 2007       /system/fonts/Roboto-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae365000-ae3af000 r--p 00000000 b3:10 3693       /system/fonts/Roboto-Medium.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae3af000-ae3f5000 r--p 00000000 b3:10 1339       /system/fonts/Roboto-Italic.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae3f5000-ae3f6000 rw-p 00000000 00:04 6331925    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae3f6000-ae3f8000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae3f8000-ae400000 rw-p 00000000 00:04 6332798    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae400000-ae500000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae501000-ae509000 rw-p 00000000 00:04 6332797    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae509000-ae527000 r--p 00000000 b3:10 877        /system/fonts/NotoSansDevanagari-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae527000-ae595000 r--p 00000000 b3:10 1688       /system/fonts/Roboto-LightItalic.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae595000-ae5f2000 r--s 01eb1000 b3:10 71         /system/framework/framework-res.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae5f2000-ae5f5000 rw-p 00000000 00:04 6330972    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae5f5000-ae5fd000 rw-p 00000000 00:04 6332796    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae5fd000-ae605000 rw-p 00000000 00:04 6332795    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae605000-ae60d000 rw-p 00000000 00:04 6332794    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae60d000-ae62c000 r--p 00000000 b3:10 907        /system/fonts/NotoSansDevanagari-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae62c000-ae66d000 r--p 00000000 b3:10 3692       /system/fonts/Roboto-BlackItalic.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae66d000-ae6a9000 r--p 00000000 b3:10 3691       /system/fonts/Roboto-Black.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae6a9000-ae6fc000 r--p 00000000 b3:10 3694       /system/fonts/Roboto-MediumItalic.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae6fc000-ae6fe000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae6fe000-ae701000 rw-p 00000000 00:04 6333708    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae701000-ae705000 rw-p 00000000 00:04 6332793    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae706000-ae708000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae708000-ae719000 rw-p 00000000 00:04 6346052    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae719000-ae72a000 rw-p 00000000 00:04 6346051    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae72a000-ae73b000 rw-p 00000000 00:04 6346050    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae73b000-ae747000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae747000-ae749000 rw-s 0000a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae749000-ae74b000 rw-s 00009000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae74b000-ae74e000 rw-s 00008000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae74e000-ae751000 rw-s 00007000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae751000-ae753000 rw-s 00005000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae753000-ae764000 rw-s 00002000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae764000-ae766000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae766000-ae767000 r-xp 00000000 b3:10 36         /system/lib/libwebviewchromium_loader.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae767000-ae768000 r--p 00000000 b3:10 36         /system/lib/libwebviewchromium_loader.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae768000-ae769000 rw-p 00001000 b3:10 36         /system/lib/libwebviewchromium_loader.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae769000-ae76a000 r-xp 00000000 b3:10 1184       /system/lib/libjnigraphics.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae76a000-ae76b000 r--p 00000000 b3:10 1184       /system/lib/libjnigraphics.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae76b000-ae76c000 rw-p 00001000 b3:10 1184       /system/lib/libjnigraphics.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae76c000-ae779000 r-xp 00000000 b3:10 1318       /system/lib/libandroid.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae779000-ae77b000 r--p 0000c000 b3:10 1318       /system/lib/libandroid.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae77b000-ae77c000 rw-p 0000e000 b3:10 1318       /system/lib/libandroid.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae77c000-ae7ad000 r-xp 00000000 b3:10 1859       /system/vendor/lib/egl/libGLESv1_CM_adreno.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7ad000-ae7ae000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7ae000-ae7af000 r--p 00031000 b3:10 1859       /system/vendor/lib/egl/libGLESv1_CM_adreno.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7af000-ae7b0000 rw-p 00032000 b3:10 1859       /system/vendor/lib/egl/libGLESv1_CM_adreno.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7b0000-ae7d4000 r-xp 00000000 b3:10 1868       /system/vendor/lib/libgsl.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7d4000-ae7d5000 r--p 00023000 b3:10 1868       /system/vendor/lib/libgsl.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7d5000-ae7d6000 rw-p 00024000 b3:10 1868       /system/vendor/lib/libgsl.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7d6000-ae7d7000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7d7000-ae7fe000 r-xp 00000000 b3:10 1496       /system/vendor/lib/egl/libEGL_adreno.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7fe000-ae7ff000 r--p 00026000 b3:10 1496       /system/vendor/lib/egl/libEGL_adreno.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae7ff000-ae800000 rw-p 00027000 b3:10 1496       /system/vendor/lib/egl/libEGL_adreno.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae800000-ae900000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae900000-ae902000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae902000-ae908000 r-xp 00000000 b3:10 1835       /system/lib/libcompiler_rt.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae908000-ae909000 r--p 00005000 b3:10 1835       /system/lib/libcompiler_rt.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae909000-ae90a000 rw-p 00006000 b3:10 1835       /system/lib/libcompiler_rt.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae90a000-ae957000 r--p 00000000 b3:10 1554       /system/fonts/Roboto-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae957000-ae9ba000 r--p 00000000 b3:10 122        /system/fonts/Roboto-Light.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae9ba000-ae9fc000 r--p 00000000 b3:10 1410       /system/fonts/Roboto-ThinItalic.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ae9fc000-aea00000 rw-p 00000000 00:04 6332792    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aea00000-aec00000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec00000-aec02000 r-xp 00000000 b3:10 485        /system/vendor/lib/libadreno_utils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec02000-aec03000 r--p 00001000 b3:10 485        /system/vendor/lib/libadreno_utils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec03000-aec04000 rw-p 00002000 b3:10 485        /system/vendor/lib/libadreno_utils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec04000-aec05000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec05000-aec0a000 r--p 00000000 b3:10 3682       /system/fonts/NotoSansGeorgian-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec0a000-aec0f000 r--p 00000000 b3:10 3683       /system/fonts/NotoSansGeorgian-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec0f000-aec13000 r--p 00000000 b3:10 3679       /system/fonts/NotoSansArmenian-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec13000-aec17000 r--p 00000000 b3:10 3680       /system/fonts/NotoSansArmenian-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec17000-aec1c000 r--p 00000000 b3:10 368        /system/fonts/NotoSansHebrew-Bold.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec1c000-aec21000 r--p 00000000 b3:10 371        /system/fonts/NotoSansHebrew-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec21000-aec28000 r--s 000a4000 b3:10 160        /system/framework/twframework-res.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec28000-aec65000 r--p 00000000 b3:10 303        /system/fonts/Roboto-Thin.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec65000-aec6c000 r-xp 00000000 b3:10 1111       /system/lib/librs_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec6c000-aec6d000 r--p 00006000 b3:10 1111       /system/lib/librs_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec6d000-aec6e000 rw-p 00007000 b3:10 1111       /system/lib/librs_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec6e000-aec86000 r-xp 00000000 b3:10 583        /system/lib/libjavacrypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec86000-aec87000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec87000-aec88000 r--p 00018000 b3:10 583        /system/lib/libjavacrypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec88000-aec89000 rw-p 00019000 b3:10 583        /system/lib/libjavacrypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec89000-aec95000 r-xp 00000000 b3:10 1520       /system/lib/libstagefright_amrnb_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec95000-aec96000 r--p 0000b000 b3:10 1520       /system/lib/libstagefright_amrnb_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec96000-aec97000 rw-p 0000c000 b3:10 1520       /system/lib/libstagefright_amrnb_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aec97000-aecf2000 r-xp 00000000 b3:10 282        /system/lib/libsavsff.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aecf2000-aecf5000 rw-p 0005a000 b3:10 282        /system/lib/libsavsff.so
05-13 13:41:08.597  15501-18887/com.lfdversluis.mytwitchchannel V/StreamActivity﹕ bufferReadResult: 3072
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aecf5000-aecf8000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aecf8000-aecf9000 rw-p 00000000 00:04 6331107    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aecf9000-aecfd000 rw-p 00000000 00:04 6332791    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aecfd000-aed00000 rw-p 00000000 00:04 6332770    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aed00000-aef00000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ aef00000-af300000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af300000-af301000 rw-p 00000000 00:04 6331104    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af301000-af305000 r-xp 00000000 b3:10 1179       /system/lib/libaudioeffect_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af305000-af306000 r--p 00003000 b3:10 1179       /system/lib/libaudioeffect_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af306000-af307000 rw-p 00004000 b3:10 1179       /system/lib/libaudioeffect_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af307000-af309000 r-xp 00000000 b3:10 1197       /system/lib/libsoundpool.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af309000-af30a000 r--p 00001000 b3:10 1197       /system/lib/libsoundpool.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af30a000-af30b000 rw-p 00002000 b3:10 1197       /system/lib/libsoundpool.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af30b000-af323000 r-xp 00000000 b3:10 1575       /system/lib/libvorbisidec.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af323000-af324000 r--p 00017000 b3:10 1575       /system/lib/libvorbisidec.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af324000-af325000 rw-p 00018000 b3:10 1575       /system/lib/libvorbisidec.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af325000-af327000 r-xp 00000000 b3:10 1550       /system/lib/libstagefright_yuv.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af327000-af328000 r--p 00001000 b3:10 1550       /system/lib/libstagefright_yuv.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af328000-af329000 rw-p 00002000 b3:10 1550       /system/lib/libstagefright_yuv.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af329000-af346000 r-xp 00000000 b3:10 1916       /system/lib/libstagefright_omx.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af346000-af348000 r--p 0001c000 b3:10 1916       /system/lib/libstagefright_omx.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af348000-af349000 rw-p 0001e000 b3:10 1916       /system/lib/libstagefright_omx.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af349000-af34a000 r-xp 00000000 b3:10 1529       /system/lib/libstagefright_enc_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af34a000-af34b000 r--p 00000000 b3:10 1529       /system/lib/libstagefright_enc_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af34b000-af34c000 rw-p 00001000 b3:10 1529       /system/lib/libstagefright_enc_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af34c000-af355000 r-xp 00000000 b3:10 357        /system/lib/libsfextcp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af355000-af356000 r--p 00008000 b3:10 357        /system/lib/libsfextcp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af356000-af357000 rw-p 00009000 b3:10 357        /system/lib/libsfextcp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af357000-af39e000 r-xp 00000000 b3:10 1408       /system/lib/libsavscmn.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af39e000-af39f000 rw-p 00046000 b3:10 1408       /system/lib/libsavscmn.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af39f000-af3d5000 r-xp 00000000 b3:10 3910       /system/lib/libopus.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3d5000-af3d6000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3d6000-af3d7000 r--p 00036000 b3:10 3910       /system/lib/libopus.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3d7000-af3d8000 rw-p 00037000 b3:10 3910       /system/lib/libopus.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3d8000-af3f0000 r-xp 00000000 b3:10 1548       /system/lib/libdrmframework.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3f0000-af3f3000 r--p 00017000 b3:10 1548       /system/lib/libdrmframework.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3f3000-af3f4000 rw-p 0001a000 b3:10 1548       /system/lib/libdrmframework.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3f4000-af3f5000 rw-p 00000000 00:04 6330971    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3f5000-af3f8000 rw-p 00000000 00:04 6330943    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3f8000-af3f9000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3f9000-af3fa000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af3fa000-af4fc000 rw-p 00000000 00:00 0          [stack:15520]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af4fc000-af4fd000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af4fd000-af4fe000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af4fe000-af600000 rw-p 00000000 00:00 0          [stack:15519]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af600000-af700000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af700000-af800000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af800000-af802000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af802000-af807000 r-xp 00000000 b3:10 1526       /system/lib/libstagefright_avc_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af807000-af808000 r--p 00004000 b3:10 1526       /system/lib/libstagefright_avc_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af808000-af809000 rw-p 00005000 b3:10 1526       /system/lib/libstagefright_avc_common.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af809000-af827000 r-xp 00000000 b3:10 1995       /system/lib/libexif.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af827000-af828000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af828000-af834000 r--p 0001e000 b3:10 1995       /system/lib/libexif.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af834000-af835000 rw-p 0002a000 b3:10 1995       /system/lib/libexif.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af835000-af86e000 r-xp 00000000 b3:10 871        /system/lib/libmedia_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af86e000-af870000 r--p 00038000 b3:10 871        /system/lib/libmedia_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af870000-af871000 rw-p 0003a000 b3:10 871        /system/lib/libmedia_jni.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af871000-af8f8000 r--s 00000000 b3:1d 129998     /data/misc/zoneinfo/tzdata
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af8f8000-af8f9000 rw-p 00000000 00:04 6333707    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af8f9000-af8fa000 rw-p 00000000 00:04 6330942    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af8fa000-af8fc000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af8fc000-af8ff000 rw-p 00000000 00:04 6332767    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af8ff000-af900000 rw-p 00000000 00:04 6332766    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af900000-af904000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af904000-af907000 rw-p 00000000 00:04 6330940    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af907000-af908000 rw-p 00000000 00:04 6330939    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af908000-af90b000 rw-p 00000000 00:04 6332765    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af90b000-af90c000 rw-p 00000000 00:04 6332764    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af90c000-af90e000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af90e000-af911000 rw-p 00000000 00:04 6333689    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af911000-af913000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af913000-af916000 rw-p 00000000 00:04 6330935    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af916000-af918000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af918000-af9dc000 r--s 0068f000 b3:1d 264441     /data/app/com.google.android.webview-2/base.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af9dc000-af9dd000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af9dd000-af9de000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ af9de000-afae0000 rw-p 00000000 00:00 0          [stack:15518]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afae0000-afb00000 rw-p 00000000 00:04 6623       /dev/ashmem/dalvik-rosalloc page map (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afb00000-afc00000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc00000-afc11000 r-xp 00000000 b3:10 1462       /system/lib/libmtp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc11000-afc12000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc12000-afc13000 r--p 00011000 b3:10 1462       /system/lib/libmtp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc13000-afc14000 rw-p 00012000 b3:10 1462       /system/lib/libmtp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc14000-afc1c000 r-xp 00000000 b3:10 3895       /system/lib/libjhead.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc1c000-afc1d000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc1d000-afc1e000 r--p 00008000 b3:10 3895       /system/lib/libjhead.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc1e000-afc1f000 rw-p 00009000 b3:10 3895       /system/lib/libjhead.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc1f000-afc20000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc20000-afc6d000 r--p 00000000 b3:10 1554       /system/fonts/Roboto-Regular.ttf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ afc6d000-b0e4a000 r--s 00000000 b3:10 168        /system/usr/icu/icudt53l.dat
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0e4a000-b0e7e000 r-xp 00000000 b3:10 250        /system/lib/libjavacore.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0e7e000-b0e7f000 r--p 00033000 b3:10 250        /system/lib/libjavacore.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0e7f000-b0e81000 rw-p 00034000 b3:10 250        /system/lib/libjavacore.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0e81000-b0e82000 rw-p 00000000 00:04 6333690    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0e82000-b0e85000 rw-p 00000000 00:04 6494       /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0e85000-b0e86000 rw-p 00000000 00:04 6493       /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0e86000-b0f80000 rw-p 00000000 00:04 6491       /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0f80000-b0fb2000 rw-p 00000000 00:04 6490       /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b0fb2000-b10ac000 rw-p 00000000 00:04 6489       /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b10ac000-b10de000 rw-p 00000000 00:04 6488       /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b10de000-b10df000 rw-p 00000000 00:04 6487       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b10df000-b10e0000 rw-p 00000000 00:04 6486       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b10e0000-b10e1000 rw-p 00000000 00:04 6485       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b10e1000-b10e2000 rw-p 00000000 00:04 6484       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b10e2000-b10e3000 rw-p 00000000 00:04 6483       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b10e3000-b10e4000 rw-p 00000000 00:04 6482       /dev/ashmem/dalvik-mark sweep sweep array free buffer (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b10e4000-b14e5000 rw-p 00000000 00:04 6481       /dev/ashmem/dalvik-live stack (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b14e5000-b18e6000 rw-p 00000000 00:04 6480       /dev/ashmem/dalvik-allocation stack (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b18e6000-b1926000 rw-p 00000000 00:04 6479       /dev/ashmem/dalvik-mark stack (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b1926000-b282d000 rw-p 00000000 00:04 6478       /dev/ashmem/dalvik-card table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b282d000-b284d000 rw-p 00000000 00:04 6477       /dev/ashmem/dalvik-large marked objects (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b284d000-b286d000 rw-p 00000000 00:04 6476       /dev/ashmem/dalvik-large live objects (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b286d000-b306d000 rw-p 00000000 00:04 6475       /dev/ashmem/dalvik-allocspace main rosalloc space 1 mark-bitmap 2 (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b306d000-b386d000 rw-p 00000000 00:04 6474       /dev/ashmem/dalvik-allocspace main rosalloc space 1 live-bitmap 2 (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b386d000-b3870000 rw-p 00000000 00:04 6332760    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3870000-b3874000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3874000-b3877000 rw-p 00000000 00:04 6330933    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3877000-b3878000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3878000-b3879000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3879000-b3897000 rw-p 00000000 00:00 0          [stack:15608]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3897000-b38fc000 r--s 00622000 b3:1d 264441     /data/app/com.google.android.webview-2/base.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b38fc000-b38fd000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b38fd000-b38fe000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b38fe000-b3a00000 rw-p 00000000 00:00 0          [stack:15517]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3a00000-b3b00000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b00000-b3b01000 rw-p 00000000 00:04 6333688    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b01000-b3b02000 rw-p 00000000 00:04 6330932    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b02000-b3b06000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b06000-b3b10000 r-xp 00000000 b3:10 1858       /system/vendor/lib/egl/eglsubAndroid.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b10000-b3b11000 r--p 00009000 b3:10 1858       /system/vendor/lib/egl/eglsubAndroid.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b11000-b3b12000 rw-p 0000a000 b3:10 1858       /system/vendor/lib/egl/eglsubAndroid.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b12000-b3b13000 rw-p 00000000 00:04 6330934    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b13000-b3b15000 r--s 9f05a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b15000-b3b17000 r--s 00687000 b3:1d 264441     /data/app/com.google.android.webview-2/base.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b17000-b3b1a000 rw-p 00000000 00:04 6331868    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b1a000-b3b1b000 rw-p 00000000 00:04 6331867    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b1b000-b3b21000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b21000-b3b22000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b22000-b3b23000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b23000-b3b41000 rw-p 00000000 00:00 0          [stack:15607]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b41000-b3b45000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b45000-b3b46000 rw-p 00000000 00:04 6332131    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b46000-b3b48000 rw-s 000c0000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b48000-b3b4a000 rw-s 000be000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b4a000-b3b4c000 rw-s 000bd000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b4c000-b3b4f000 rw-s 000bc000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b4f000-b3b51000 r-xp 00000000 b3:10 1198       /system/lib/libwebviewchromium_plat_support.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b51000-b3b52000 r--p 00001000 b3:10 1198       /system/lib/libwebviewchromium_plat_support.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b52000-b3b53000 rw-p 00002000 b3:10 1198       /system/lib/libwebviewchromium_plat_support.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b53000-b3b54000 rw-p 00000000 00:04 6332759    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b54000-b3b56000 rw-s 00001000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b57000-b3b5a000 rw-p 00000000 00:04 6343314    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b5a000-b3b5f000 r--p 00000000 b3:1d 136399     /data/data/com.lfdversluis.mytwitchchannel/cache/ads-1111641700.dex (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b5f000-b3b61000 r-xp 00005000 b3:1d 136399     /data/data/com.lfdversluis.mytwitchchannel/cache/ads-1111641700.dex (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b61000-b3b62000 rw-p 00007000 b3:1d 136399     /data/data/com.lfdversluis.mytwitchchannel/cache/ads-1111641700.dex (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b62000-b3b63000 r--p 00000000 b3:1d 264546     /data/dalvik-cache/arm/data@app@com.google.android.webview-2@base.apk@classes.dex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b63000-b3b64000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b64000-b3b82000 r--s 018f9000 b3:1d 264441     /data/app/com.google.android.webview-2/base.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b82000-b3b85000 r--s 01919000 b3:1d 264441     /data/app/com.google.android.webview-2/base.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b85000-b3b88000 rw-p 00000000 00:04 6331826    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b88000-b3b89000 r--p 00000000 b3:1d 136399     /data/data/com.lfdversluis.mytwitchchannel/cache/ads-1111641700.dex (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b89000-b3b8a000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b8a000-b3b8c000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b8c000-b3b8f000 rw-p 00000000 00:04 6330844    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b8f000-b3b90000 rw-p 00000000 00:04 6330843    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b90000-b3b92000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b92000-b3b95000 rw-p 00000000 00:04 6330842    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b95000-b3b96000 rw-p 00000000 00:04 6330841    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b96000-b3b98000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b98000-b3b9c000 rw-p 00000000 00:04 6331824    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b9d000-b3b9e000 rw-s 00000000 00:08 4206       anon_inode:dmabuf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b9e000-b3b9f000 rw-s 00000000 00:08 4206       anon_inode:dmabuf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3b9f000-b3ba5000 rw-p 00000000 00:04 6340429    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ba6000-b3ba9000 rw-p 00000000 00:04 6333629    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ba9000-b3bab000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3bab000-b3bac000 r-xp 00000000 b3:10 1648       /system/lib/libknoxvpnfdsender.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3bac000-b3bad000 r--p 00000000 b3:10 1648       /system/lib/libknoxvpnfdsender.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3bad000-b3bae000 rw-p 00001000 b3:10 1648       /system/lib/libknoxvpnfdsender.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3baf000-b3bb1000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3bb1000-b3bb3000 rw-s 000bf000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3bb3000-b3bb5000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3bb5000-b3bb6000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3bb6000-b3bb7000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3bb7000-b3cb9000 rw-p 00000000 00:00 0          [stack:15516]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3cb9000-b3cbc000 rw-p 00000000 00:04 6331796    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3cbc000-b3cbd000 rw-p 00000000 00:04 6331795    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3cbd000-b3cc1000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3cc1000-b3cc2000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3cc2000-b3cc3000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3cc3000-b3dc5000 rw-p 00000000 00:00 0          [stack:15515]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3dc5000-b3dc6000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3dc6000-b3dc7000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3dc7000-b3ec9000 rw-p 00000000 00:00 0          [stack:15514]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ec9000-b3ecc000 rw-p 00000000 00:04 6330804    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ecc000-b3ecd000 rw-p 00000000 00:04 6330803    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ecd000-b3ed0000 rw-p 00000000 00:04 6331792    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ed0000-b3ed1000 rw-p 00000000 00:04 6331791    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ed1000-b3ed4000 rw-p 00000000 00:04 6330800    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ed4000-b3ed5000 rw-p 00000000 00:04 6330799    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ed5000-b3ed9000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3ed9000-b3eda000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3eda000-b3edb000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3edb000-b3fdd000 rw-p 00000000 00:00 0          [stack:15513]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3fdd000-b3fde000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3fde000-b3fdf000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b3fdf000-b40db000 rw-p 00000000 00:00 0          [stack:15512]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b40db000-b40de000 rw-p 00000000 00:04 6330798    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b40de000-b40df000 rw-p 00000000 00:04 6330797    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b40df000-b40e1000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b40e1000-b40e2000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b40e2000-b40e3000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b40e3000-b41e5000 rw-p 00000000 00:00 0          [stack:15511]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b41e5000-b41e6000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b41e7000-b41ed000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b41ed000-b41ee000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b41ee000-b41ef000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b41ef000-b42eb000 rw-p 00000000 00:00 0          [stack:15510]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b42eb000-b43e9000 r--p 00000000 00:0b 7318       /dev/binder
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43e9000-b43ea000 rw-p 00000000 00:04 6331825    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43ea000-b43eb000 rw-p 00000000 00:04 6332906    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43eb000-b43ed000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43ed000-b43ef000 rw-s 00049000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43ef000-b43f2000 rw-p 00000000 00:04 6332683    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43f2000-b43f3000 rw-p 00000000 00:04 6332682    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43f3000-b43f5000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43f5000-b43f9000 r--p 00000000 b3:10 1320       /system/framework/arm/com.android.media.remotedisplay.odex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43f9000-b43fb000 r-xp 00004000 b3:10 1320       /system/framework/arm/com.android.media.remotedisplay.odex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43fb000-b43fc000 rw-p 00006000 b3:10 1320       /system/framework/arm/com.android.media.remotedisplay.odex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b43fc000-b4406000 r--p 00000000 b3:10 1535       /system/framework/arm/com.android.location.provider.odex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4406000-b440a000 r-xp 0000a000 b3:10 1535       /system/framework/arm/com.android.location.provider.odex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b440a000-b440b000 rw-p 0000e000 b3:10 1535       /system/framework/arm/com.android.location.provider.odex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b440b000-b440d000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b440d000-b440e000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b440e000-b440f000 rw-p 00000000 00:04 6346059    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b440f000-b4410000 rw-s 00000000 00:08 4206       anon_inode:dmabuf
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4410000-b4413000 rw-p 00000000 00:04 6335894    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4413000-b4415000 rw-s 00036000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4415000-b4417000 rw-s 00035000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4417000-b4420000 rw-s 00034000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4420000-b4431000 rw-s 00023000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4431000-b4432000 rw-p 00000000 00:04 6331109    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4432000-b4434000 rw-s 00033000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4434000-b4436000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4436000-b4438000 rw-s 00032000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4438000-b4439000 rw-p 00000000 00:04 6340403    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4439000-b443a000 rw-p 00000000 00:04 6335893    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b443a000-b443e000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b443e000-b4447000 rw-s 00022000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4447000-b444d000 rw-p 00000000 00:04 6332677    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b444d000-b4453000 rw-p 00000000 00:04 6332676    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4453000-b4458000 rw-s 0001a000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4458000-b44cf000 r--s 000ee000 b3:1d 271341     /data/app/com.lfdversluis.mytwitchchannel-1/base.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44cf000-b44e5000 r--s 02779000 b3:1d 271341     /data/app/com.lfdversluis.mytwitchchannel-1/base.apk
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44e5000-b44e8000 rw-p 00000000 00:04 6333578    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44e8000-b44e9000 rw-p 00000000 00:04 6333577    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44e9000-b44ec000 rw-p 00000000 00:04 6333576    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44ec000-b44ed000 rw-p 00000000 00:04 6333575    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44ed000-b44f0000 rw-p 00000000 00:04 6332663    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44f0000-b44f1000 rw-p 00000000 00:04 6332662    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44f1000-b44f3000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44f3000-b44f4000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44f4000-b44f5000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b44f5000-b45f1000 rw-p 00000000 00:00 0          [stack:15508]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b45f1000-b45f4000 rw-p 00000000 00:04 6332661    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b45f4000-b45f5000 rw-p 00000000 00:04 6332660    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b45f5000-b45f7000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b45f7000-b45f8000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b45f8000-b45f9000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b45f9000-b46f5000 rw-p 00000000 00:00 0          [stack:15507]
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b46f5000-b47b1000 rw-p 00000000 00:04 6628       /dev/ashmem/dalvik-allocspace alloc space mark-bitmap 4 (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b47b1000-b486d000 rw-p 00000000 00:04 6627       /dev/ashmem/dalvik-allocspace alloc space live-bitmap 4 (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b486d000-b496d000 rw-p 00000000 00:04 6469       /dev/ashmem/dalvik-allocspace zygote / non moving space mark-bitmap 0 (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b496d000-b4a6d000 rw-p 00000000 00:04 6468       /dev/ashmem/dalvik-allocspace zygote / non moving space live-bitmap 0 (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4a6d000-b4a6e000 r--p 00000000 b3:10 3719       /system/framework/arm/boot.oat
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4a6e000-b4a6f000 rw-p 00000000 00:04 6333628    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4a6f000-b4b04000 r--p 0250d000 b3:10 3718       /system/framework/arm/boot.art
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4b04000-b4df5000 r-xp 00000000 b3:10 3857       /system/lib/libart.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4df5000-b4df6000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4df6000-b4dfd000 r--p 002f1000 b3:10 3857       /system/lib/libart.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4dfd000-b4dfe000 rw-p 002f8000 b3:10 3857       /system/lib/libart.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b4dfe000-b5000000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5000000-b5001000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5001000-b5003000 r-xp 00000000 b3:10 1468       /system/lib/libpowermanager.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5003000-b5004000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5004000-b5005000 r--p 00002000 b3:10 1468       /system/lib/libpowermanager.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5005000-b5006000 rw-p 00003000 b3:10 1468       /system/lib/libpowermanager.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5006000-b5007000 r--p 00000000 b3:1d 264006     /data/dalvik-cache/arm/data@app@com.google.android.gms-1@base.apk@classes.dex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5007000-b5009000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5009000-b500a000 r--p 00000000 b3:10 1320       /system/framework/arm/com.android.media.remotedisplay.odex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b500a000-b500b000 r--p 00000000 b3:10 1535       /system/framework/arm/com.android.location.provider.odex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b500b000-b500c000 rw-p 00000000 00:04 6343313    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b500c000-b500f000 rw-p 00000000 00:04 6333589    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b500f000-b5010000 rw-p 00000000 00:04 6331802    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5010000-b5012000 rw-s 0001b000 00:0b 7673       /dev/kgsl-3d0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5012000-b5014000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5014000-b5015000 r-xp 00000000 b3:10 4300       /system/vendor/lib/libqti-perfd-client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5015000-b5016000 r--p 00000000 b3:10 4300       /system/vendor/lib/libqti-perfd-client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5016000-b5017000 rw-p 00001000 b3:10 4300       /system/vendor/lib/libqti-perfd-client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5017000-b5018000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5018000-b5019000 r-xp 00000000 b3:10 3828       /system/lib/hw/memtrack.msm8960.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5019000-b501a000 r--p 00000000 b3:10 3828       /system/lib/hw/memtrack.msm8960.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b501a000-b501b000 rw-p 00001000 b3:10 3828       /system/lib/hw/memtrack.msm8960.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b501b000-b501e000 rw-p 00000000 00:04 6331801    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b501e000-b501f000 rw-p 00000000 00:04 6331800    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b501f000-b5021000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5021000-b5024000 rw-p 00000000 00:04 6330810    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5024000-b5025000 rw-p 00000000 00:04 6330809    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5025000-b5028000 rw-p 00000000 00:04 6333582    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5028000-b5029000 rw-p 00000000 00:04 6333581    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5029000-b502b000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b502b000-b502e000 rw-p 00000000 00:04 6330808    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b502e000-b502f000 rw-p 00000000 00:04 6330807    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b502f000-b5031000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5031000-b5034000 rw-p 00000000 00:04 6331799    /dev/ashmem/dalvik-indirect ref table slots (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5034000-b5038000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5038000-b5058000 rw-p 00000000 00:04 6473       /dev/ashmem/dalvik-rosalloc page map (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5058000-b5078000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5078000-b507e000 r-xp 00000000 b3:10 3863       /system/lib/libbacktrace_libc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b507e000-b507f000 r--p 00005000 b3:10 3863       /system/lib/libbacktrace_libc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b507f000-b5080000 rw-p 00006000 b3:10 3863       /system/lib/libbacktrace_libc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5080000-b50a0000 r--s 00000000 00:0b 6155       /dev/__properties__
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50a0000-b50a2000 r-xp 00000000 b3:10 1571       /system/lib/libusbhost.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50a2000-b50a3000 r--p 00001000 b3:10 1571       /system/lib/libusbhost.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50a3000-b50a4000 rw-p 00002000 b3:10 1571       /system/lib/libusbhost.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50a4000-b50dd000 r-xp 00000000 b3:10 1602       /system/lib/libssl.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50dd000-b50de000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50de000-b50e0000 r--p 00039000 b3:10 1602       /system/lib/libssl.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50e0000-b50e3000 rw-p 0003b000 b3:10 1602       /system/lib/libssl.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50e3000-b50ed000 r-xp 00000000 b3:10 3943       /system/lib/libsoundtrigger.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50ed000-b50f0000 r--p 00009000 b3:10 3943       /system/lib/libsoundtrigger.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50f0000-b50f1000 rw-p 0000c000 b3:10 3943       /system/lib/libsoundtrigger.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50f1000-b50fa000 r-xp 00000000 b3:10 697        /system/lib/libsensorhub.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50fa000-b50fc000 r--p 00008000 b3:10 697        /system/lib/libsensorhub.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50fc000-b50fd000 rw-p 0000a000 b3:10 697        /system/lib/libsensorhub.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b50fd000-b510c000 r-xp 00000000 b3:10 1107       /system/lib/libselinux.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b510c000-b510d000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b510d000-b510e000 r--p 0000f000 b3:10 1107       /system/lib/libselinux.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b510e000-b510f000 rw-p 00010000 b3:10 1107       /system/lib/libselinux.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b510f000-b5111000 r-xp 00000000 b3:10 3914       /system/lib/libprocessgroup.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5111000-b5112000 r--p 00001000 b3:10 3914       /system/lib/libprocessgroup.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5112000-b5113000 rw-p 00002000 b3:10 3914       /system/lib/libprocessgroup.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5113000-b554d000 r-xp 00000000 b3:10 3912       /system/lib/libpdfium.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b554d000-b5556000 r--p 00439000 b3:10 3912       /system/lib/libpdfium.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5556000-b555a000 rw-p 00442000 b3:10 3912       /system/lib/libpdfium.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b555a000-b555f000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b555f000-b5561000 r-xp 00000000 b3:10 3903       /system/lib/libnetd_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5561000-b5562000 r--p 00001000 b3:10 3903       /system/lib/libnetd_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5562000-b5563000 rw-p 00002000 b3:10 3903       /system/lib/libnetd_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5563000-b5567000 r-xp 00000000 b3:10 518        /system/lib/libnativehelper.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5567000-b5568000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5568000-b5569000 r--p 00004000 b3:10 518        /system/lib/libnativehelper.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5569000-b556a000 rw-p 00005000 b3:10 518        /system/lib/libnativehelper.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b556a000-b556c000 r-xp 00000000 b3:10 3901       /system/lib/libnativebridge.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b556c000-b556d000 r--p 00001000 b3:10 3901       /system/lib/libnativebridge.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b556d000-b556e000 rw-p 00002000 b3:10 3901       /system/lib/libnativebridge.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b556e000-b5577000 r-xp 00000000 b3:10 3900       /system/lib/libminikin.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5577000-b5578000 r--p 00008000 b3:10 3900       /system/lib/libminikin.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5578000-b5579000 rw-p 00009000 b3:10 3900       /system/lib/libminikin.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5579000-b557a000 r-xp 00000000 b3:10 1431       /system/lib/libmemtrack.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b557a000-b557b000 r--p 00000000 b3:10 1431       /system/lib/libmemtrack.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b557b000-b557c000 rw-p 00001000 b3:10 1431       /system/lib/libmemtrack.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b557c000-b558e000 r-xp 00000000 b3:10 1848       /system/lib/libstagefright_foundation.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b558e000-b558f000 r--p 00011000 b3:10 1848       /system/lib/libstagefright_foundation.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b558f000-b5590000 rw-p 00012000 b3:10 1848       /system/lib/libstagefright_foundation.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5590000-b5597000 r-xp 00000000 b3:10 1504       /system/lib/libsec_km.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5597000-b5598000 r--p 00006000 b3:10 1504       /system/lib/libsec_km.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5598000-b5599000 rw-p 00007000 b3:10 1504       /system/lib/libsec_km.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5599000-b559a000 r--p 00000000 b3:1d 271594     /data/dalvik-cache/arm/data@app@com.lfdversluis.mytwitchchannel-1@base.apk@classes.dex
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b559a000-b559e000 r-xp 00000000 b3:10 3917       /system/lib/libsdp_crypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b559e000-b559f000 r--p 00003000 b3:10 3917       /system/lib/libsdp_crypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b559f000-b55a0000 rw-p 00004000 b3:10 3917       /system/lib/libsdp_crypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b55a0000-b55a2000 r-xp 00000000 b3:10 1466       /system/lib/libpersona.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b55a2000-b55a3000 r--p 00001000 b3:10 1466       /system/lib/libpersona.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b55a3000-b55a4000 rw-p 00002000 b3:10 1466       /system/lib/libpersona.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b55a4000-b55a5000 rw-p 00000000 00:04 6331798    /dev/ashmem/dalvik-indirect ref table (deleted)
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b55a5000-b5627000 r-xp 00000000 b3:10 1227       /system/lib/libsqlite.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5627000-b5628000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5628000-b5629000 r--p 00082000 b3:10 1227       /system/lib/libsqlite.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5629000-b562a000 rw-p 00083000 b3:10 1227       /system/lib/libsqlite.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b562a000-b562b000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b562b000-b562c000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b562c000-b57b0000 r-xp 00000000 b3:10 1865       /system/lib/libomadrm.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b57b0000-b57b1000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b57b1000-b57b4000 r--p 00184000 b3:10 1865       /system/lib/libomadrm.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b57b4000-b57bb000 rw-p 00187000 b3:10 1865       /system/lib/libomadrm.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b57bb000-b57c2000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b57c2000-b5811000 r-xp 00000000 b3:10 1510       /system/lib/libsonivox.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5811000-b5812000 r--p 0004e000 b3:10 1510       /system/lib/libsonivox.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5812000-b5813000 rw-p 0004f000 b3:10 1510       /system/lib/libsonivox.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5813000-b5818000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5818000-b581b000 r-xp 00000000 b3:10 1508       /system/lib/libsecnativefeature.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b581b000-b581c000 r--p 00002000 b3:10 1508       /system/lib/libsecnativefeature.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b581c000-b581d000 rw-p 00003000 b3:10 1508       /system/lib/libsecnativefeature.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b581d000-b5827000 r-xp 00000000 b3:10 683        /system/lib/libcommon_time_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5827000-b5828000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5828000-b582b000 r--p 0000a000 b3:10 683        /system/lib/libcommon_time_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b582b000-b582c000 rw-p 0000d000 b3:10 683        /system/lib/libcommon_time_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b582c000-b5833000 r-xp 00000000 b3:10 1908       /system/lib/libnbaio.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5833000-b5834000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5834000-b5835000 r--p 00007000 b3:10 1908       /system/lib/libnbaio.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5835000-b5836000 rw-p 00008000 b3:10 1908       /system/lib/libnbaio.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5836000-b58c8000 r-xp 00000000 b3:10 1678       /system/lib/libmedia.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b58c8000-b58e5000 r--p 00091000 b3:10 1678       /system/lib/libmedia.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b58e5000-b58e6000 rw-p 000ae000 b3:10 1678       /system/lib/libmedia.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b58e6000-b5922000 r-xp 00000000 b3:10 3894       /system/lib/libinputflinger.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5922000-b5924000 r--p 0003b000 b3:10 3894       /system/lib/libinputflinger.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5924000-b5925000 rw-p 0003d000 b3:10 3894       /system/lib/libinputflinger.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5925000-b593b000 r-xp 00000000 b3:10 1879       /system/lib/libinput.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b593b000-b593c000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b593c000-b593f000 r--p 00016000 b3:10 1879       /system/lib/libinput.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b593f000-b5940000 rw-p 00019000 b3:10 1879       /system/lib/libinput.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5940000-b594a000 r-xp 00000000 b3:10 3893       /system/lib/libimg_utils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b594a000-b594c000 r--p 00009000 b3:10 3893       /system/lib/libimg_utils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b594c000-b594d000 rw-p 0000b000 b3:10 3893       /system/lib/libimg_utils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b594d000-b596c000 r-xp 00000000 b3:10 255        /system/lib/libquramimagecodec.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b596c000-b596d000 r--p 0001e000 b3:10 255        /system/lib/libquramimagecodec.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b596d000-b596e000 rw-p 0001f000 b3:10 255        /system/lib/libquramimagecodec.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b596e000-b599d000 r-xp 00000000 b3:10 341        /system/lib/libjpeg.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b599d000-b599e000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b599e000-b599f000 r--p 0002f000 b3:10 341        /system/lib/libjpeg.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b599f000-b59a0000 rw-p 00030000 b3:10 341        /system/lib/libjpeg.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b59a0000-b5ba6000 r-xp 00000000 b3:10 2017       /system/lib/libskia.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5ba6000-b5ba7000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5ba7000-b5bb9000 r--p 00206000 b3:10 2017       /system/lib/libskia.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bb9000-b5bbb000 rw-p 00218000 b3:10 2017       /system/lib/libskia.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bbb000-b5bc0000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bc0000-b5bce000 r-xp 00000000 b3:10 1844       /system/lib/libsamsungeffect.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bce000-b5bcf000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bcf000-b5bd0000 r--p 0000e000 b3:10 1844       /system/lib/libsamsungeffect.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bd0000-b5bd1000 rw-p 0000f000 b3:10 1844       /system/lib/libsamsungeffect.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bd1000-b5beb000 r-xp 00000000 b3:10 28         /system/lib/libRScpp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5beb000-b5bec000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bec000-b5bed000 r--p 0001a000 b3:10 28         /system/lib/libRScpp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bed000-b5bee000 rw-p 0001b000 b3:10 28         /system/lib/libRScpp.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5bee000-b5c12000 r-xp 00000000 b3:10 1317       /system/lib/libpng.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5c12000-b5c13000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5c13000-b5c14000 r--p 00024000 b3:10 1317       /system/lib/libpng.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5c14000-b5c15000 rw-p 00025000 b3:10 1317       /system/lib/libpng.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5c15000-b5c17000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5c17000-b5c6d000 r-xp 00000000 b3:10 1950       /system/lib/libft2.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5c6d000-b5c6f000 r--p 00055000 b3:10 1950       /system/lib/libft2.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5c6f000-b5c70000 rw-p 00057000 b3:10 1950       /system/lib/libft2.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5c70000-b5caa000 r-xp 00000000 b3:10 1951       /system/lib/libbcinfo.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5caa000-b5cab000 r--p 00039000 b3:10 1951       /system/lib/libbcinfo.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5cab000-b5cac000 rw-p 0003a000 b3:10 1951       /system/lib/libbcinfo.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5cac000-b5ccc000 r-xp 00000000 b3:10 766        /system/lib/libbcc.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5ccc000-b5ccd000 r--p 0001f000 b3:10 766        /system/lib/libbcc.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5ccd000-b5cce000 rw-p 00020000 b3:10 766        /system/lib/libbcc.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5cce000-b5cee000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5cee000-b5d75000 r-xp 00000000 b3:10 3866       /system/lib/libc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5d75000-b5d79000 r--p 00086000 b3:10 3866       /system/lib/libc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5d79000-b5d7a000 rw-p 0008a000 b3:10 3866       /system/lib/libc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5d7a000-b5d7b000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b5d7b000-b6639000 r-xp 00000000 b3:10 1321       /system/lib/libLLVM.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6639000-b6678000 r--p 008bd000 b3:10 1321       /system/lib/libLLVM.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6678000-b6679000 rw-p 008fc000 b3:10 1321       /system/lib/libLLVM.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6679000-b6680000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6680000-b66b2000 r-xp 00000000 b3:10 1833       /system/lib/libRS.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b66b2000-b66b3000 r--p 00032000 b3:10 1833       /system/lib/libRS.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b66b3000-b66b4000 rw-p 00033000 b3:10 1833       /system/lib/libRS.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b66b4000-b66ff000 r-xp 00000000 b3:10 23         /system/lib/libhwui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b66ff000-b6702000 r--p 0004a000 b3:10 23         /system/lib/libhwui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6702000-b6703000 rw-p 0004d000 b3:10 23         /system/lib/libhwui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6703000-b67f7000 r-xp 00000000 b3:10 1871       /system/lib/libicuuc.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b67f7000-b67f8000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b67f8000-b6801000 r--p 000f4000 b3:10 1871       /system/lib/libicuuc.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6801000-b6802000 rw-p 000fd000 b3:10 1871       /system/lib/libicuuc.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6802000-b6806000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6806000-b680a000 r-xp 00000000 b3:10 1413       /system/lib/libgabi++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b680a000-b680b000 r--p 00003000 b3:10 1413       /system/lib/libgabi++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b680b000-b680c000 rw-p 00004000 b3:10 1413       /system/lib/libgabi++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b680c000-b694d000 r-xp 00000000 b3:10 1980       /system/lib/libicui18n.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b694d000-b6955000 r--p 00140000 b3:10 1980       /system/lib/libicui18n.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6955000-b6956000 rw-p 00148000 b3:10 1980       /system/lib/libicui18n.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6956000-b699b000 r-xp 00000000 b3:10 389        /system/lib/libharfbuzz_ng.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b699b000-b699c000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b699c000-b699d000 r--p 00045000 b3:10 389        /system/lib/libharfbuzz_ng.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b699d000-b699e000 rw-p 00046000 b3:10 389        /system/lib/libharfbuzz_ng.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b699e000-b69a1000 r-xp 00000000 b3:10 1866       /system/lib/libwpa_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69a1000-b69a2000 r--p 00002000 b3:10 1866       /system/lib/libwpa_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69a2000-b69a3000 rw-p 00003000 b3:10 1866       /system/lib/libwpa_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69a3000-b69a8000 r-xp 00000000 b3:10 690        /system/lib/libnetutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69a8000-b69a9000 r--p 00004000 b3:10 690        /system/lib/libnetutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69a9000-b69aa000 rw-p 00005000 b3:10 690        /system/lib/libnetutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69aa000-b69b0000 r-xp 00000000 b3:10 1421       /system/lib/libhardware_legacy.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69b0000-b69b1000 r--p 00005000 b3:10 1421       /system/lib/libhardware_legacy.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69b1000-b69b2000 rw-p 00006000 b3:10 1421       /system/lib/libhardware_legacy.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69b2000-b69b3000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69b3000-b69c7000 r-xp 00000000 b3:10 1182       /system/lib/libexpat.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69c7000-b69c9000 r--p 00013000 b3:10 1182       /system/lib/libexpat.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69c9000-b69ca000 rw-p 00015000 b3:10 1182       /system/lib/libexpat.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b69ca000-b6af5000 r-xp 00000000 b3:10 1605       /system/lib/libcrypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6af5000-b6b03000 r--p 0012a000 b3:10 1605       /system/lib/libcrypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b03000-b6b0b000 rw-p 00138000 b3:10 1605       /system/lib/libcrypto.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b0b000-b6b0d000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b0d000-b6b0e000 r-xp 00000000 b3:10 1154       /system/lib/libcc_manager.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b0e000-b6b0f000 r--p 00000000 b3:10 1154       /system/lib/libcc_manager.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b0f000-b6b10000 rw-p 00001000 b3:10 1154       /system/lib/libcc_manager.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b10000-b6b11000 r-xp 00000000 b3:10 1559       /system/lib/libsync.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b11000-b6b12000 r--p 00000000 b3:10 1559       /system/lib/libsync.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b12000-b6b13000 rw-p 00001000 b3:10 1559       /system/lib/libsync.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b13000-b6b14000 r-xp 00000000 b3:10 1420       /system/lib/libhardware.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b14000-b6b15000 r--p 00000000 b3:10 1420       /system/lib/libhardware.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b15000-b6b16000 rw-p 00001000 b3:10 1420       /system/lib/libhardware.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b16000-b6b17000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b17000-b6b21000 r-xp 00000000 b3:10 1853       /system/lib/libui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b21000-b6b22000 r--p 00009000 b3:10 1853       /system/lib/libui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b22000-b6b23000 rw-p 0000a000 b3:10 1853       /system/lib/libui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b23000-b6b2a000 r-xp 00000000 b3:10 695        /system/lib/libremotedesktop_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b2a000-b6b2b000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b2b000-b6b2d000 r--p 00007000 b3:10 695        /system/lib/libremotedesktop_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b2d000-b6b2e000 rw-p 00009000 b3:10 695        /system/lib/libremotedesktop_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b2e000-b6b6d000 r-xp 00000000 b3:10 1593       /system/lib/libgui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b6d000-b6b6e000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b6e000-b6b79000 r--p 0003f000 b3:10 1593       /system/lib/libgui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b79000-b6b7a000 rw-p 0004a000 b3:10 1593       /system/lib/libgui.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b7a000-b6b80000 r-xp 00000000 b3:10 1244       /system/lib/libcamera_metadata.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b80000-b6b81000 r--p 00005000 b3:10 1244       /system/lib/libcamera_metadata.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b81000-b6b82000 rw-p 00006000 b3:10 1244       /system/lib/libcamera_metadata.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6b82000-b6bb8000 r-xp 00000000 b3:10 1558       /system/lib/libcamera_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bb8000-b6bb9000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bb9000-b6bc2000 r--p 00036000 b3:10 1558       /system/lib/libcamera_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bc2000-b6bc3000 rw-p 0003f000 b3:10 1558       /system/lib/libcamera_client.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bc3000-b6bc7000 r-xp 00000000 b3:10 1516       /system/lib/libspeexresampler.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bc7000-b6bc8000 r--p 00003000 b3:10 1516       /system/lib/libspeexresampler.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bc8000-b6bc9000 rw-p 00004000 b3:10 1516       /system/lib/libspeexresampler.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bc9000-b6bcd000 r-xp 00000000 b3:10 513        /system/lib/libaudioutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bcd000-b6bce000 r--p 00003000 b3:10 513        /system/lib/libaudioutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bce000-b6bcf000 rw-p 00004000 b3:10 513        /system/lib/libaudioutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6bcf000-b6be6000 r-xp 00000000 b3:10 1200       /system/lib/libz.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6be6000-b6be7000 r--p 00016000 b3:10 1200       /system/lib/libz.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6be7000-b6be8000 rw-p 00017000 b3:10 1200       /system/lib/libz.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6be8000-b6c0d000 r-xp 00000000 b3:10 1332       /system/lib/libbinder.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c0d000-b6c14000 r--p 00024000 b3:10 1332       /system/lib/libbinder.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c14000-b6c15000 rw-p 0002b000 b3:10 1332       /system/lib/libbinder.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c15000-b6c38000 r-xp 00000000 b3:10 296        /system/lib/libandroidfw.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c38000-b6c39000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c39000-b6c3a000 r--p 00023000 b3:10 296        /system/lib/libandroidfw.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c3a000-b6c3b000 rw-p 00024000 b3:10 296        /system/lib/libandroidfw.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c3b000-b6c44000 r-xp 00000000 b3:10 1323       /system/lib/libGLESv2.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c44000-b6c45000 r--p 00008000 b3:10 1323       /system/lib/libGLESv2.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c45000-b6c46000 rw-p 00009000 b3:10 1323       /system/lib/libGLESv2.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c46000-b6c4b000 r-xp 00000000 b3:10 1297       /system/lib/libGLESv1_CM.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c4b000-b6c4c000 r--p 00004000 b3:10 1297       /system/lib/libGLESv1_CM.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c4c000-b6c4d000 rw-p 00005000 b3:10 1297       /system/lib/libGLESv1_CM.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c4d000-b6c4f000 r-xp 00000000 b3:10 1292       /system/lib/libETC1.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c4f000-b6c50000 r--p 00001000 b3:10 1292       /system/lib/libETC1.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c50000-b6c51000 rw-p 00002000 b3:10 1292       /system/lib/libETC1.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c51000-b6c53000 r-xp 00000000 b3:10 3954       /system/lib/libunwind-ptrace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c53000-b6c54000 r--p 00001000 b3:10 3954       /system/lib/libunwind-ptrace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c54000-b6c55000 rw-p 00002000 b3:10 3954       /system/lib/libunwind-ptrace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c55000-b6c61000 r-xp 00000000 b3:10 3955       /system/lib/libunwind.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c61000-b6c62000 r--p 0000b000 b3:10 3955       /system/lib/libunwind.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c62000-b6c63000 rw-p 0000c000 b3:10 3955       /system/lib/libunwind.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6c63000-b6ca9000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ca9000-b6cad000 r-xp 00000000 b3:10 1414       /system/lib/libgccdemangle.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cad000-b6cae000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cae000-b6caf000 r--p 00004000 b3:10 1414       /system/lib/libgccdemangle.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6caf000-b6cb0000 rw-p 00005000 b3:10 1414       /system/lib/libgccdemangle.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cb0000-b6cb1000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cb1000-b6cb7000 r-xp 00000000 b3:10 3862       /system/lib/libbacktrace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cb7000-b6cb8000 r--p 00005000 b3:10 3862       /system/lib/libbacktrace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cb8000-b6cb9000 rw-p 00006000 b3:10 3862       /system/lib/libbacktrace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cb9000-b6cbb000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cbb000-b6ccf000 r-xp 00000000 b3:10 1572       /system/lib/libutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ccf000-b6cd0000 r--p 00013000 b3:10 1572       /system/lib/libutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cd0000-b6cd1000 rw-p 00014000 b3:10 1572       /system/lib/libutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6cd1000-b6d04000 r-xp 00000000 b3:10 1850       /system/lib/libstlport.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6d04000-b6d06000 r--p 00032000 b3:10 1850       /system/lib/libstlport.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6d06000-b6d07000 rw-p 00034000 b3:10 1850       /system/lib/libstlport.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6d07000-b6d08000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6d08000-b6d71000 r-xp 00000000 b3:10 1990       /system/lib/libGLES_trace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6d71000-b6d72000 r--p 00068000 b3:10 1990       /system/lib/libGLES_trace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6d72000-b6d73000 rw-p 00069000 b3:10 1990       /system/lib/libGLES_trace.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6d73000-b6dd1000 r-xp 00000000 b3:10 1986       /system/lib/libEGL.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6dd1000-b6dd2000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6dd2000-b6dd4000 r--p 0005e000 b3:10 1986       /system/lib/libEGL.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6dd4000-b6ddd000 rw-p 00060000 b3:10 1986       /system/lib/libEGL.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ddd000-b6de0000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6de0000-b6ec4000 r-xp 00000000 b3:10 1589       /system/lib/libandroid_runtime.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ec4000-b6ec5000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ec5000-b6ecb000 r--p 000e4000 b3:10 1589       /system/lib/libandroid_runtime.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ecb000-b6ed5000 rw-p 000ea000 b3:10 1589       /system/lib/libandroid_runtime.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ed5000-b6eda000 rw-p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6eda000-b6ee5000 r-xp 00000000 b3:10 1880       /system/lib/libcutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ee5000-b6ee6000 r--p 0000a000 b3:10 1880       /system/lib/libcutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ee6000-b6ee7000 rw-p 0000b000 b3:10 1880       /system/lib/libcutils.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ee7000-b6ee9000 r-xp 00000000 b3:10 519        /system/vendor/lib/libNimsWrap.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6ee9000-b6eea000 r--p 00001000 b3:10 519        /system/vendor/lib/libNimsWrap.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6eea000-b6eeb000 rw-p 00002000 b3:10 519        /system/vendor/lib/libNimsWrap.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6eeb000-b6eed000 r-xp 00000000 b3:10 1503       /system/lib/libstdc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6eed000-b6eee000 r--p 00001000 b3:10 1503       /system/lib/libstdc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6eee000-b6eef000 rw-p 00002000 b3:10 1503       /system/lib/libstdc++.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6eef000-b6f05000 r-xp 00000000 b3:10 433        /system/lib/libm.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f05000-b6f06000 r--p 00015000 b3:10 433        /system/lib/libm.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f06000-b6f07000 rw-p 00016000 b3:10 433        /system/lib/libm.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f07000-b6f08000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f08000-b6f0c000 r-xp 00000000 b3:10 1296       /system/lib/liblog.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f0c000-b6f0d000 r--p 00003000 b3:10 1296       /system/lib/liblog.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f0d000-b6f0e000 rw-p 00004000 b3:10 1296       /system/lib/liblog.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f0e000-b6f0f000 r--p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f0f000-b6f71000 r-xp 00000000 b3:10 2012       /system/lib/libc.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f71000-b6f72000 ---p 00000000 00:00 0
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f72000-b6f75000 r--p 00062000 b3:10 2012       /system/lib/libc.so
05-13 13:41:08.597  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f75000-b6f78000 rw-p 00065000 b3:10 2012       /system/lib/libc.so
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f78000-b6f81000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f81000-b6f82000 r--p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f82000-b6f83000 r-xp 00000000 b3:10 3936       /system/lib/libsigchain.so
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f83000-b6f84000 r--p 00000000 b3:10 3936       /system/lib/libsigchain.so
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f84000-b6f85000 rw-p 00001000 b3:10 3936       /system/lib/libsigchain.so
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f85000-b6f86000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f86000-b6f87000 r--p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f87000-b6f89000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f89000-b6f8a000 r-xp 00000000 00:00 0          [sigpage]
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f8a000-b6f97000 r-xp 00000000 b3:10 1947       /system/bin/linker
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f97000-b6f98000 r--p 0000c000 b3:10 1947       /system/bin/linker
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f98000-b6f99000 rw-p 0000d000 b3:10 1947       /system/bin/linker
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f99000-b6f9a000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f9a000-b6f9c000 r-xp 00000000 b3:10 1864       /system/bin/app_process32
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f9c000-b6f9d000 r--p 00002000 b3:10 1864       /system/bin/app_process32
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b6f9d000-b6f9e000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b7000000-b9500000 rw-p 00000000 00:00 0          [heap]
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b9500000-b97f8000 rw-p 00000000 00:04 6345219    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ b9800000-bc000000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ bc000000-bc2f8000 rw-p 00000000 00:04 6344105    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ bc300000-bc700000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ bc700000-bc9f8000 rw-p 00000000 00:04 6338077    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ bca00000-bdc00000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ bdc00000-bdef8000 rw-p 00000000 00:04 6346063    /dev/ashmem/dalvik-large object space allocation (deleted)
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ bdf00000-be300000 rw-p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ be53e000-be53e000 ---p 00000000 00:00 0
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ be53e000-bed3d000 rw-p 00000000 00:00 0          [stack]
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ffff0000-ffff1000 r-xp 00000000 00:00 0          [vectors]
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ ffff0000-ffff1000 r-xp 00000000 00:00 0          [vectors]
05-13 13:41:08.607  15501-15512/com.lfdversluis.mytwitchchannel W/art﹕ [ 05-13 13:41:08.617   888: 1605 I/EDMNativeHelperService ]
    isCameraEnabled

And finally the third crash causes the app to freeze and no longer respond:

05-13 13:54:39.458   32743-4178/com.lfdversluis.mytwitchchannel V/StreamActivity﹕ av_interleaved_write_frame() error -32 while writing interleaved audio frame.
05-13 13:54:39.458   32743-4178/com.lfdversluis.mytwitchchannel W/System.err﹕ aly$a: av_interleaved_write_frame() error -32 while writing interleaved audio frame.
05-13 13:54:39.468   32743-4178/com.lfdversluis.mytwitchchannel W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:918)
05-13 13:54:39.468   32743-4178/com.lfdversluis.mytwitchchannel W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:883)
05-13 13:54:39.468   32743-4178/com.lfdversluis.mytwitchchannel W/System.err﹕ at alw.a(FFmpegFrameRecorder.java:756)
05-13 13:54:39.468   32743-4178/com.lfdversluis.mytwitchchannel W/System.err﹕ at com.lfdversluis.mytwitchchannel.Activities.StreamActivity$a.run(StreamActivity.java:694)
05-13 13:54:39.468   32743-4178/com.lfdversluis.mytwitchchannel W/System.err﹕ at java.lang.Thread.run(Thread.java:818)

This exception happened multiple times.

So yeah, pretty much crash and burn during the runs. Not one time was something visible on the stream using the galaxy s4.

saudet commented 9 years ago

So, it looks like resizing works fine, right?

And it sounds like x264 requires too much memory for encoding. Have you tried another codec by outputting to a file?

lfdversluis commented 9 years ago

It has to be H264, as the server does not accept anything else. I think it might be the resolution difference. 1920x1080 vs 480x 480 is quite a difference. What do you think?

saudet commented 9 years ago

Yes, it's probably running out of memory, or CPU time, or both.

In any case, could you send a pull request with modifications suggested in https://github.com/bytedeco/javacv/issues/145#issuecomment-101209354 and anything else required to get it running, at least with lower resolutions? It would be great. Thanks in advance!

lfdversluis commented 9 years ago

Sure. I will try to think of a solution for devices which (only) support high resolutions.

saudet commented 9 years ago

Since we know FFmpegFrameRecorder can resize without problem, what about simply initializing FFmpegFrameRecorder with a lower resolution?

lfdversluis commented 9 years ago

Sorry for the delay, I've had a busy weekend. I've tried the following line:

recorder = new FFmpegFrameRecorder(pathToFileOrUrl, Math.min(frameWidth, 1280), Math.min(frameHeight, 720), 1);

Now using a spinner I've set the following values:

switch (streamQualitySpinner.getSelectedItemPosition()) {
            case 0: // 240p
                frameWidth = 320;
                frameHeight = 240;
                break;
            case 1: // 360p
                frameWidth = 480;
                frameHeight = 360;
                break;
            case 2: // 480p
                frameWidth = 640;
                frameHeight = 480;
                break;
            case 3: // 720p
                frameWidth = 1280;
                frameHeight = 720;
                break;
        }

The cap seems redundant, and it also is, but I previously used the imageWidth and imageHeight which could be up to 1920x1080.

The result of a simple run already produces this:

E/StreamActivity﹕ Resolution: 640 x 480 (set in CameraView.surfaceChanged like in the PR).
E/StreamActivity﹕ frameWidth: 320 frameHeight: 240
E/StreamActivity﹕ run audiothread av_interleaved_write_frame() error -32 while writing interleaved audio frame.

So before there even get's a frame written, it already crashes after initialization. So now the surface records with 480p quality and the frames themselves are converted to 240p. Yet this already produces an exception without even having sent one frame. Any ideas?

Also, once that error occurs the whole app no longer responds, even though I call stopRecording() immediately in the catch clause.

lfdversluis commented 9 years ago

I have a very vague hunch... maybe it leads onto something, maybe it does not:

Some devices do no support 30 fps, enforced by this line:

camParams.setPreviewFrameRate(frameRate);

Similarly to the camera settings, you can query a range of supported framerates. However, I've queried this and it does NOT work at all. On my nexus 7 the range said it supported between 4 and 60 fps, but 45 fps already crashed the device.

I've used this code:

for(int[] arr : camParams.getSupportedPreviewFpsRange ()){
    Log.e(LOG_TAG, "Supported range: " + arr[0] + " - " + arr[1]);
}

And it printed E/StreamActivity﹕ Supported range: 4000 - 60000.

So now that I've commented that line, do you think that it's a problem that the recorder still gets the value set here recorder.setFrameRate(frameRate);, while the actual frameRate might differ?

saudet commented 9 years ago

Well, let's see, if you don't try to record audio, does everything work perfectly? If so, then it probably has something more to do with audio frames than video frames..

lfdversluis commented 9 years ago

I'm going to test that now. Is there an easy way to disable audio? That boolean is volatile and gets changed all over the place :smile:

lfdversluis commented 9 years ago

Hmmmm I've commented too much I think. It no longer streams.

...
Log.i(LOG_TAG, "recorder initialize success");

       // audioRecordRunnable = new AudioRecordRunnable();
       // audioThread = new Thread(audioRecordRunnable);
       // runAudioThread = true;
...

public void startRecording() {

        initRecorder();

        try {
            recorder.start();
            startTime = System.currentTimeMillis();
            recording = true;
           // audioThread.start();
...

public void stopRecording() {

runAudioThread = false;
       /* try {
            audioThread.join();
        } catch (InterruptedException e) {
            e.printStackTrace();
        } */
....

What should not be commented in the code above?

lfdversluis commented 9 years ago

My mind is blown but if you set the parameters in a SEPERATE call like this:

 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
    Log.e(LOG_TAG, "surface change called");

    Camera.Parameters camParams = mCamera.getParameters();
    List<Camera.Size> sizes = camParams.getSupportedPreviewSizes();
    // Sort the list in ascending order
    Collections.sort(sizes, new Comparator<Camera.Size>() {

        public int compare(final Camera.Size a, final Camera.Size b) {
            return a.width * a.height - b.width * b.height;
        }
    });

    for (int i = 0; i < sizes.size(); i++) {
        if ((sizes.get(i).width >= imageWidth && sizes.get(i).height >= imageHeight) || i == sizes.size() - 1) {
            imageWidth = sizes.get(i).width;
            imageHeight = sizes.get(i).height;
            Log.e(LOG_TAG, "Resolution: " + imageWidth + " x " + imageHeight);
            break;
        }
    }
    camParams.setPreviewSize(imageWidth, imageHeight);
    mCamera.setParameters(camParams);

    for(int[] arr : camParams.getSupportedPreviewFpsRange()){
        Log.e(LOG_TAG, "Supported range: " + arr[0] + " - " + arr[1]);
    }

    Camera.Parameters framerateAttempts = mCamera.getParameters();
    camParams.setPreviewFrameRate(frameRate);
    mCamera.setParameters(framerateAttempts);
        ....

it DOES work. I have NO clue why, but it seem to work. A friend of mine has a phone that crashes on startup,and it seems to work. Again, mind = blown.

saudet commented 9 years ago

@lfdversluis Looks like an undocumented "feature", but I guess it makes sense to support a different range of frame rates for a different resolution. Maybe the awkwardness is one reason why they are deprecating that particular API?

saudet commented 9 years ago

About the audio stuff, just initialize FFmpegFrameRecorder with audioChannels = 0, and comment out the call to recordSamples().

lfdversluis commented 9 years ago

I think this issue can be closed for now. If something comes up i'll open a new issue.

ShihabSoft commented 9 years ago

Did you try freeing up resources in that loop.For reducing OOM exceptions.

Regards, ShihabSoft Founder of RevealedTricks4U http://www.revealedtricks4u.com

On Sat, Jun 27, 2015 at 10:05 PM, Laurens Versluis <notifications@github.com

wrote:

Closed #145 https://github.com/bytedeco/javacv/issues/145.

— Reply to this email directly or view it on GitHub https://github.com/bytedeco/javacv/issues/145#event-342011660.

saudet commented 9 years ago

@lfdversluis If you have some updates for the sample, please send a PR!! Thanks a lot

lfdversluis commented 9 years ago

@saudet Besides the call to set the fps in a different statement I have no additions to the sample. Doing the additional statement is also a bit 'hacky'. I think focusing on #163 may more fruitful.

ghost commented 8 years ago

@lfdversluis I'm sorry I had the same problem, you reach a solution?

lfdversluis commented 8 years ago

@mghaffari Yes, six posts up I added a chunk of code that works. Apparently by separating the two calls it worked, why I still don't know.