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() 99 static_cast<AAudioServiceStreamShared *>(clientStream.get()); in callbackLoop()
|
/frameworks/base/core/java/android/view/ |
D | ViewDebug.java | 544 OutputStream clientStream) throws IOException { in dispatchCommand() argument 549 dump(view, false, true, clientStream); in dispatchCommand() 551 dumpTheme(view, clientStream); in dispatchCommand() 553 dumpEncoded(view, clientStream); in dispatchCommand() 555 captureLayers(view, new DataOutputStream(clientStream)); in dispatchCommand() 559 capture(view, clientStream, params[0]); in dispatchCommand() 567 profile(view, clientStream, params[0]); in dispatchCommand() 569 invokeViewMethod(view, clientStream, params); in dispatchCommand() 613 private static void profile(View root, OutputStream clientStream, String parameter) in profile() argument 619 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024); in profile() [all …]
|
D | ViewRootImpl.java | 11539 OutputStream clientStream = null; in executeCommand() local 11541 clientStream = new ParcelFileDescriptor.AutoCloseOutputStream(out); in executeCommand() 11542 ViewDebug.dispatchCommand(view, command, parameters, clientStream); in executeCommand() 11546 if (clientStream != null) { in executeCommand() 11548 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 | 5147 OutputStream clientStream = client.getOutputStream(); in viewServerListWindows() local 5148 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024); in viewServerListWindows() 5197 OutputStream clientStream = client.getOutputStream(); in viewServerGetFocusedWindow() local 5198 out = new BufferedWriter(new OutputStreamWriter(clientStream), 8 * 1024); in viewServerGetFocusedWindow()
|