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

1 2 3

  /external/chromium_org/media/tools/player_x11/
data_source_logger.cc 18 bool streaming)
20 streaming_(streaming) {
49 bool streaming = data_source_->IsStreaming(); local
50 VLOG(1) << "IsStreaming() -> " << (streaming ? "true" : "false");
51 return streaming;
  /external/chromium_org/media/filters/
in_memory_url_protocol.cc 12 bool streaming)
16 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 37 int submitRequest(in CaptureRequest request, boolean streaming,
40 int submitRequestList(in List<CaptureRequest> requestList, boolean streaming,
  /frameworks/av/include/camera/camera2/
ICameraDeviceUser.h 53 * For streaming requests, output lastFrameNumber is the last frame number
55 * For non-streaming requests, output lastFrameNumber is the expected last
59 bool streaming = false,
64 * For streaming requests, output lastFrameNumber is the last frame number
66 * For non-streaming requests, output lastFrameNumber is the expected last
70 bool streaming = false,
  /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');
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.tycho.p2.maven.repository/0.20.0/
org.eclipse.tycho.p2.maven.repository-0.20.0.jar 
  /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 45 private boolean streaming = true; field in class:PlainSocketImpl
180 if (streaming && usingSocks()) {
196 protected void create(boolean streaming) throws IOException {
197 this.streaming = streaming;
198 this.fd = IoBridge.socket(streaming);
502 if (streaming) {
509 // Unlike writes to a streaming socket, writes to a datagram
  /frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.h 67 bool streaming = false,
72 bool streaming = false,
CameraDeviceClient.cpp 95 bool streaming,
100 return submitRequestList(requestList, streaming, lastFrameNumber);
104 bool streaming, int64_t* lastFrameNumber) {
188 if (streaming) {
191 ALOGE("%s: Camera %d: Got error %d after trying to set streaming "
234 ALOGE("%s: Camera%d: Did not find request id %d in list of streaming "
242 ALOGV("%s: Camera %d: Successfully cleared streaming request",
556 ALOGE("%s: Camera %d: Try to waitUntilIdle when there are active streaming requests",
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/interface/
audio_coding_module_typedefs.h 36 // -streaming : In the case of one-way communication such as passive
37 // conference participant, a webinar, or a streaming application,
46 streaming = 2, enumerator in enum:webrtc::AudioPlayoutMode
  /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 49 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/base/core/java/android/hardware/camera2/legacy/
CameraDeviceUserShim.java 373 public int submitRequest(CaptureRequest request, boolean streaming,
389 return mLegacyDevice.submitRequest(request, streaming, lastFrameNumber);
393 public int submitRequestList(List<CaptureRequest> request, boolean streaming,
409 return mLegacyDevice.submitRequestList(request, streaming, lastFrameNumber);
  /external/protobuf/
configure.ac 35 [include classes for streaming compressed data in and out @<:@default=check@:>@])],
  /external/nanohttpd/
README.md 33 * File server supports partial content (streaming).
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
acm_receiver_unittest.cc 251 receiver_->SetPlayoutMode(streaming);
252 EXPECT_EQ(streaming, receiver_->PlayoutMode());
acm_receiver_unittest_oldapi.cc 255 receiver_->SetPlayoutMode(streaming);
256 EXPECT_EQ(streaming, receiver_->PlayoutMode());

Completed in 738 milliseconds

1 2 3