Searched refs:clientStream (Results 1 – 6 of 6) sorted by relevance
/frameworks/av/services/oboeservice/ |
D | AAudioServiceEndpointCapture.cpp | 80 for (const auto& clientStream : mRegisteredStreams) { in callbackLoop() local 81 if (clientStream->isRunning() && !clientStream->isSuspended()) { in callbackLoop() 83 static_cast<AAudioServiceStreamShared *>(clientStream.get()); in callbackLoop()
|
D | AAudioServiceEndpointPlay.cpp | 82 for (const auto& clientStream : mRegisteredStreams) { in callbackLoop() local 86 if (clientStream->isSuspended()) { in callbackLoop() 90 aaudio_stream_state_t state = clientStream->getState(); in callbackLoop() 98 static_cast<AAudioServiceStreamShared *>(clientStream.get()); in callbackLoop()
|
/frameworks/base/core/java/android/view/ |
D | ViewDebug.java | 534 OutputStream clientStream) throws IOException { in dispatchCommand() argument 539 dump(view, false, true, clientStream); in dispatchCommand() 541 dumpTheme(view, clientStream); in dispatchCommand() 543 dumpEncoded(view, clientStream); in dispatchCommand() 545 captureLayers(view, new DataOutputStream(clientStream)); in dispatchCommand() 549 capture(view, clientStream, params[0]); in dispatchCommand() 557 profile(view, clientStream, params[0]); in dispatchCommand() 601 private static void profile(View root, OutputStream clientStream, String parameter) in profile() argument 607 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024); in profile() 753 public static void captureLayers(View root, final DataOutputStream clientStream) [all …]
|
D | ViewRootImpl.java | 10397 OutputStream clientStream = null; in executeCommand() local 10399 clientStream = new ParcelFileDescriptor.AutoCloseOutputStream(out); in executeCommand() 10400 ViewDebug.dispatchCommand(view, command, parameters, clientStream); in executeCommand() 10404 if (clientStream != null) { in executeCommand() 10406 clientStream.close(); in executeCommand()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | ViewServer.java | 189 OutputStream clientStream = client.getOutputStream(); in writeValue() local 190 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024); in writeValue()
|
D | WindowManagerService.java | 4843 OutputStream clientStream = client.getOutputStream(); in viewServerListWindows() local 4844 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024); in viewServerListWindows() 4893 OutputStream clientStream = client.getOutputStream(); in viewServerGetFocusedWindow() local 4894 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024); in viewServerGetFocusedWindow()
|