Searched refs:clientStream (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/services/java/com/android/server/
H A DViewServer.java219 OutputStream clientStream = client.getOutputStream();
220 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024);
H A DWindowManagerService.java4593 OutputStream clientStream = client.getOutputStream();
4594 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024);
/frameworks/base/core/java/android/view/
H A DViewDebug.java679 OutputStream clientStream) throws IOException {
685 dump(view, clientStream);
689 capture(view, clientStream, params[0]);
695 profile(view, clientStream, params[0]);
738 private static void profile(View root, OutputStream clientStream, String parameter) argument
744 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024);
857 private static void capture(View root, final OutputStream clientStream, String parameter) argument
890 out = new BufferedOutputStream(clientStream, 32 * 1024);
901 clientStream.close();
910 private static void dump(View root, OutputStream clientStream) throw argument
678 dispatchCommand(View view, String command, String parameters, OutputStream clientStream) argument
[all...]
H A DViewRoot.java2872 OutputStream clientStream = null;
2874 clientStream = new ParcelFileDescriptor.AutoCloseOutputStream(out);
2875 ViewDebug.dispatchCommand(view, command, parameters, clientStream);
2879 if (clientStream != null) {
2881 clientStream.close();

Completed in 86 milliseconds