Loading core/java/android/app/ActivityThread.java +2 −0 Original line number Diff line number Diff line Loading @@ -4645,12 +4645,14 @@ public final class ActivityThread extends ClientTransactionHandler } private void handleDumpGfxInfo(DumpComponentInfo info) { final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskWrites(); try { ThreadedRenderer.handleDumpGfxInfo(info.fd.getFileDescriptor(), info.args); } catch (Exception e) { Log.w(TAG, "Caught exception from dumpGfxInfo()", e); } finally { IoUtils.closeQuietly(info.fd); StrictMode.setThreadPolicy(oldPolicy); } } Loading Loading
core/java/android/app/ActivityThread.java +2 −0 Original line number Diff line number Diff line Loading @@ -4645,12 +4645,14 @@ public final class ActivityThread extends ClientTransactionHandler } private void handleDumpGfxInfo(DumpComponentInfo info) { final StrictMode.ThreadPolicy oldPolicy = StrictMode.allowThreadDiskWrites(); try { ThreadedRenderer.handleDumpGfxInfo(info.fd.getFileDescriptor(), info.args); } catch (Exception e) { Log.w(TAG, "Caught exception from dumpGfxInfo()", e); } finally { IoUtils.closeQuietly(info.fd); StrictMode.setThreadPolicy(oldPolicy); } } Loading