HomeSort by relevance Sort by last modified time
    Searched refs:streaming (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium_org/media/tools/player_x11/
data_source_logger.cc 23 bool streaming)
25 streaming_(streaming) {
59 bool streaming = data_source_->IsStreaming(); local
60 VLOG(1) << "IsStreaming() -> " << (streaming ? "true" : "false");
61 return streaming;
  /external/chromium_org/media/filters/
in_memory_url_protocol.cc 10 bool streaming)
14 streaming_(streaming) {
in_memory_url_protocol.h 21 InMemoryUrlProtocol(const uint8* buf, int64 size, bool streaming);
  /frameworks/base/core/java/android/hardware/camera2/
ICameraDeviceUser.aidl 34 int submitRequest(in CaptureRequest request, boolean streaming);
  /frameworks/av/include/camera/camera2/
ICameraDeviceUser.h 48 bool streaming = false) = 0;
  /external/chromium_org/chrome/renderer/resources/extensions/
cast_streaming_session_custom_bindings.js 5 // Custom binding for the Cast Streaming Session API.
7 var binding = require('binding').Binding.create('cast.streaming.session');
cast_streaming_udp_transport_custom_bindings.js 5 // Custom binding for the Cast Streaming UdpTransport API.
7 var binding = require('binding').Binding.create('cast.streaming.udpTransport');
cast_streaming_rtp_stream_custom_bindings.js 5 // Custom binding for the Cast Streaming RtpStream API.
7 var binding = require('binding').Binding.create('cast.streaming.rtpStream');
  /libcore/luni/src/main/java/java/net/
Socket.java 99 * @param streaming
100 * if {@code true} a streaming socket is returned, a datagram
108 localAddress, int localPort, boolean streaming) throws IOException {
118 startupSocket(dstAddress, dstPort, localAddress, localPort, streaming);
128 startupSocket(dstAddress, dstPort, localAddress, localPort, streaming);
132 * Creates a new streaming socket connected to the target host specified by
154 * Creates a new streaming socket connected to the target host specified by
182 * Creates a new streaming or datagram socket connected to the target host
194 * @param streaming
195 * if {@code true} a streaming socket is returned, a datagra
    [all...]
PlainSocketImpl.java 54 private boolean streaming = true; field in class:PlainSocketImpl
189 if (streaming && usingSocks()) {
199 protected void create(boolean streaming) throws IOException {
200 this.streaming = streaming;
201 this.fd = IoBridge.socket(streaming);
505 if (streaming) {
512 // Unlike writes to a streaming socket, writes to a datagram
  /frameworks/av/include/camera/
IProCameraUser.h 64 bool streaming = false) = 0;
ProCamera.h 148 * < 0 error, >= 0 the request ID. streaming to have the request repeat
154 bool streaming = false);
169 * NOTE: As a side effect this cancels ALL streaming requests.
  /frameworks/av/services/camera/libcameraservice/api_pro/
ProCamera2Client.h 48 bool streaming = false);
ProCamera2Client.cpp 191 bool streaming) {
209 if (streaming) {
  /frameworks/av/camera/
IProCameraUser.cpp 106 virtual int submitRequest(camera_metadata_t* metadata, bool streaming)
115 // arg2 = streaming (bool)
116 data.writeInt32(streaming);
244 // arg2 = streaming (bool)
245 bool streaming = data.readInt32(); local
248 reply->writeInt32(submitRequest(metadata, streaming));
ProCamera.cpp 153 bool streaming)
159 streaming);
  /frameworks/av/camera/camera2/
ICameraDeviceUser.cpp 78 virtual int submitRequest(sp<CaptureRequest> request, bool streaming)
91 // arg1 = streaming (bool)
92 data.writeInt32(streaming);
241 // arg1 = streaming (bool)
242 bool streaming = data.readInt32(); local
246 reply->writeInt32(submitRequest(request, streaming));
  /frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.h 67 bool streaming = false);
  /external/protobuf/
configure.ac 35 [include classes for streaming compressed data in and out @<:@default=check@:>@])],
  /external/chromium_org/media/audio/win/
audio_unified_win.cc 410 // Start input streaming data between the endpoint buffer and the audio
428 // Start output streaming data between the endpoint buffer and the audio
444 // Stop input audio streaming.
448 << "Failed to stop input streaming: " << std::hex << hr;
451 // Stop output audio streaming.
455 << "Failed to stop output streaming: " << std::hex << hr;
474 << "Failed to reset output streaming: " << std::hex << hr;
480 << "Failed to reset input streaming: " << std::hex << hr;
668 bool streaming = true; local
680 // Keep streaming audio until stop event is signaled
    [all...]
  /external/chromium_org/media/cast/audio_receiver/
audio_decoder.cc 53 audio_decoder_->SetPlayoutMode(webrtc::streaming);
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/media/
video_player.js 232 metadataCache.get(selectedEntry, 'streaming', function(streaming) {
233 if (streaming && !navigator.onLine) {
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
LwjglAudioRenderer.java 741 // source's data is streaming
742 boolean streaming = src.getAudioData() instanceof AudioStream;
745 assert (boundSource && streaming) || (!streaming);
751 if (streaming && wantPlaying){
770 }else if (!streaming){
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
CameraDeviceBinderTest.java 49 // Number of streaming callbacks need to check.
141 private int submitCameraRequest(CaptureRequest request, boolean streaming) throws Exception {
142 int requestId = mCameraUser.submitRequest(request, streaming);
253 int status = mCameraUser.submitRequest(request1, /* streaming */false);
259 status = mCameraUser.submitRequest(request2, /* streaming */false);
272 int requestId1 = submitCameraRequest(request, /* streaming */false);
273 int requestId2 = submitCameraRequest(request, /* streaming */false);
285 // Submit valid request once (non-streaming), and another time
286 // (streaming)
287 int requestId1 = submitCameraRequest(request, /* streaming */false)
    [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraService.h 302 bool streaming = false) = 0;

Completed in 774 milliseconds

1 2 3