Searched refs:clientStream (Results 1 – 6 of 6) sorted by relevance
/frameworks/av/services/oboeservice/ |
D | AAudioServiceEndpointCapture.cpp | 84 for (const auto& clientStream : mRegisteredStreams) { in callbackLoop() local 85 if (clientStream->isRunning() && !clientStream->isSuspended()) { in callbackLoop() 89 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 | 454 OutputStream clientStream) throws IOException { in dispatchCommand() argument 460 dump(view, false, true, clientStream); in dispatchCommand() 462 dumpTheme(view, clientStream); in dispatchCommand() 464 captureLayers(view, new DataOutputStream(clientStream)); in dispatchCommand() 468 capture(view, clientStream, params[0]); in dispatchCommand() 476 profile(view, clientStream, params[0]); in dispatchCommand() 520 private static void profile(View root, OutputStream clientStream, String parameter) in profile() argument 526 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024); in profile() 672 public static void captureLayers(View root, final DataOutputStream clientStream) 683 clientStream.writeInt(outRect.width()); [all …]
|
D | ViewRootImpl.java | 8629 OutputStream clientStream = null; in executeCommand() local 8631 clientStream = new ParcelFileDescriptor.AutoCloseOutputStream(out); in executeCommand() 8632 ViewDebug.dispatchCommand(view, command, parameters, clientStream); in executeCommand() 8636 if (clientStream != null) { in executeCommand() 8638 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 | 4088 OutputStream clientStream = client.getOutputStream(); in viewServerListWindows() local 4089 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024); in viewServerListWindows() 4138 OutputStream clientStream = client.getOutputStream(); in viewServerGetFocusedWindow() local 4139 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024); in viewServerGetFocusedWindow()
|