Home
last modified time | relevance | path

Searched refs:getOutputStream (Results 1 – 13 of 13) sorted by relevance

/third_party/libphonenumber/tools/java/data/src/com/google/i18n/phonenumbers/
DCombineGeoDataServlet.java36 resp.getOutputStream().print("<html><head>"); in doPost()
37 resp.getOutputStream().print( in doPost()
39 resp.getOutputStream().print("<body>"); in doPost()
41 new ByteArrayInputStream(input.getBytes()), resp.getOutputStream(), "<br>"); in doPost()
43 resp.getOutputStream().print("</body></html>"); in doPost()
44 resp.getOutputStream().flush(); in doPost()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/
DFullDuplexEcho.cpp21 int32_t delayFrames = (int32_t) (kMaxDelayTimeSeconds * getOutputStream()->getSampleRate()); in start()
38 memset(outputFloat, 0, numOutputFrames * getOutputStream()->getBytesPerFrame()); in onBothStreamsReady()
41 int32_t outputStride = getOutputStream()->getChannelCount(); in onBothStreamsReady()
42 float delayFrames = mDelayTimeSeconds * getOutputStream()->getSampleRate(); in onBothStreamsReady()
DFullDuplexStream.cpp113 int32_t bufferSize = getOutputStream()->getBufferCapacityInFrames() in start()
114 * getOutputStream()->getChannelCount(); in start()
123 return getOutputStream()->requestStart(); in start()
127 getOutputStream()->requestStop(); // TODO result? in stop()
DNativeAudioContext.cpp60 oboe::AudioStream * ActivityContext::getOutputStream() { in getOutputStream() function in ActivityContext
230 oboe::AudioStream *outputStream = getOutputStream(); in start()
329 oboe::AudioStream *outputStream = getOutputStream(); in configureForStart()
365 oboe::AudioStream *outputStream = getOutputStream(); in configureStreamGateway()
381 oboe::AudioStream *oboeStream = getOutputStream(); in runBlockingIO()
498 oboe::AudioStream *outputStream = getOutputStream(); in configureForStart()
518 oboe::AudioStream *outputStream = getOutputStream(); in configureBuilder()
600 oboe::AudioStream *outputStream = getOutputStream(); in configureForStart()
DFullDuplexAnalyzer.cpp21 getLoopbackProcessor()->setSampleRate(getOutputStream()->getSampleRate()); in start()
33 int32_t outputStride = getOutputStream()->getChannelCount(); in onBothStreamsReady()
DFullDuplexStream.h41 oboe::AudioStream *getOutputStream() { in getOutputStream() function
DNativeAudioContext.h304 oboe::AudioStream *getOutputStream();
414 return getOutputStream()->start(); in startStreams()
619 oboe::AudioStream *outputStream = getOutputStream(); in startStreams()
/third_party/skia/third_party/externals/oboe/samples/LiveEffect/src/main/cpp/
DFullDuplexStream.cpp93 int32_t bufferSize = getOutputStream()->getBufferCapacityInFrames() in start()
94 * getOutputStream()->getChannelCount(); in start()
103 return getOutputStream()->requestStart(); in start()
109 if (getOutputStream()) { in stop()
110 outputResult = getOutputStream()->requestStop(); in stop()
DFullDuplexPass.h26 size_t bytesPerFrame = this->getOutputStream()->getBytesPerFrame(); in onBothStreamsReady()
DFullDuplexStream.h41 oboe::AudioStream *getOutputStream() { in getOutputStream() function
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceBrowserCompileServer.cpp177 std::unique_ptr<llvm::raw_fd_ostream> getOutputStream(int FD) { in getOutputStream() function
296 LogStream = getOutputStream(LogFD); in startCompileThread()
302 EmitStream = getOutputStream(ObjFD); in startCompileThread()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DSampleProfWriter.h46 raw_ostream &getOutputStream() { return *OutputStream; } in getOutputStream() function
/third_party/libphonenumber/migrator/migrator-servlet/src/main/java/com/google/phonenumbers/
DServletMain.java137 OutputStream outputStream = resp.getOutputStream(); in doGet()