OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:streaming
(Results
1 - 25
of
52
) sorted by null
1
2
3
/external/v8/src/wasm/
streaming-decoder.cc
5
#include "src/wasm/
streaming
-decoder.h"
46
size_t StreamingDecoder::DecodingState::ReadBytes(StreamingDecoder*
streaming
,
104
size_t ReadBytes(StreamingDecoder*
streaming
,
107
std::unique_ptr<DecodingState> Next(StreamingDecoder*
streaming
) override;
110
StreamingDecoder*
streaming
) = 0;
127
std::unique_ptr<DecodingState> Next(StreamingDecoder*
streaming
) override;
147
std::unique_ptr<DecodingState> Next(StreamingDecoder*
streaming
) override;
163
StreamingDecoder*
streaming
) override;
182
std::unique_ptr<DecodingState> Next(StreamingDecoder*
streaming
) override;
195
StreamingDecoder*
streaming
) override
[
all
...]
streaming-decoder.h
152
virtual size_t ReadBytes(StreamingDecoder*
streaming
,
155
// Returns the next state of the
streaming
decoding.
157
StreamingDecoder*
streaming
) = 0;
168
// A flag to indicate if finishing the
streaming
decoder is allowed without
/cts/tests/framework/base/windowmanager/src/android/server/wm/
AmProfileTests.java
51
* using
streaming
output mode? no.
102
final boolean
streaming
) throws Exception {
108
getStartCmd(PROFILEABLE_APP_ACTIVITY, startActivityFirst, sampling,
streaming
));
122
verifyOutputFileFormat(
streaming
);
126
final boolean activityAlreadyStarted, final boolean sampling, final boolean
streaming
) {
137
if (
streaming
) {
138
builder.append(" --
streaming
");
151
private void verifyOutputFileFormat(final boolean
streaming
) throws Exception {
157
final String expectedFirstWord =
streaming
? FIRST_WORD_STREAMING : FIRST_WORD_NO_STREAMING;
/external/grpc-grpc/src/csharp/Grpc.Core/
CallInvoker.cs
45
/// Invokes a server
streaming
call asynchronously.
46
/// In server
streaming
scenario, client sends on request and server responds with a stream of responses.
53
/// Invokes a client
streaming
call asynchronously.
54
/// In client
streaming
scenario, client sends a stream of requests and server responds with a single response.
61
/// Invokes a duplex
streaming
call asynchronously.
62
/// In duplex
streaming
scenario, client sends a stream of requests and server responds with a stream of responses.
DefaultCallInvoker.cs
60
/// Invokes a server
streaming
call asynchronously.
61
/// In server
streaming
scenario, client sends on request and server responds with a stream of responses.
70
/// Invokes a client
streaming
call asynchronously.
71
/// In client
streaming
scenario, client sends a stream of requests and server responds with a single response.
80
/// Invokes a duplex
streaming
call asynchronously.
81
/// In duplex
streaming
scenario, client sends a stream of requests and server responds with a stream of responses.
Calls.cs
66
/// Invokes a server
streaming
call asynchronously.
67
/// In server
streaming
scenario, client sends on request and server responds with a stream of responses.
85
/// Invokes a client
streaming
call asynchronously.
86
/// In client
streaming
scenario, client sends a stream of requests and server responds with a single response.
103
/// Invokes a duplex
streaming
call asynchronously.
104
/// In duplex
streaming
scenario, client sends a stream of requests and server responds with a stream of responses.
ServerMethods.cs
33
/// Server-side handler for client
streaming
call.
42
/// Server-side handler for server
streaming
call.
51
/// Server-side handler for bidi
streaming
call.
AsyncDuplexStreamingCall.cs
25
/// Return type for bidirectional
streaming
calls.
63
/// Async stream to read
streaming
responses.
74
/// Async stream to send
streaming
requests.
ServerServiceDefinition.cs
93
/// Adds a definitions for a client
streaming
method.
111
/// Adds a definitions for a server
streaming
method.
129
/// Adds a definitions for a bidirectional
streaming
method.
AsyncServerStreamingCall.cs
25
/// Return type for server
streaming
calls.
58
/// Async stream to read
streaming
responses.
AsyncClientStreamingCall.cs
26
/// Return type for client
streaming
calls.
86
/// Async stream to send
streaming
requests.
/frameworks/av/camera/aidl/android/hardware/camera2/
ICameraDeviceUser.aidl
33
SubmitInfo submitRequest(in CaptureRequest request, boolean
streaming
);
34
SubmitInfo submitRequestList(in CaptureRequest[] requestList, boolean
streaming
);
/external/grpc-grpc/src/csharp/Grpc.Core/Interceptors/
InterceptingCallInvoker.cs
66
/// Intercepts an asynchronous server
streaming
call with the registered interceptor.
77
/// Intercepts an asynchronous client
streaming
call with the registered interceptor.
87
/// Intercepts an asynchronous duplex
streaming
call with the registered interceptor.
Interceptor.cs
83
/// Represents a continuation for intercepting asynchronous server-
streaming
invocations.
100
/// representing an asynchronous invocation of a server-
streaming
RPC.
109
/// Represents a continuation for intercepting asynchronous client-
streaming
invocations.
125
/// representing an asynchronous invocation of a client-
streaming
RPC.
148
/// representing an asynchronous invocation of a duplex-
streaming
RPC.
212
/// Intercepts an asynchronous invocation of a
streaming
remote call.
227
/// representing an asynchronous server-
streaming
invocation.
240
/// Intercepts an asynchronous invocation of a client
streaming
call.
254
/// representing an asynchronous client-
streaming
invocation.
267
/// Intercepts an asynchronous invocation of a duplex
streaming
call
[
all
...]
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/
HalfcloseTest.cs
58
/// For client
streaming
and duplex
streaming
calls, if server does a full close
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
AsyncCall.cs
46
// Completion of a
streaming
response call if not null.
53
// Set after status is received. Used for both unary and
streaming
response calls.
259
/// Starts a
streaming
request -
streaming
response call.
293
/// Sends a
streaming
request. Only one pending send action is allowed at any given time.
301
/// Receives a
streaming
response. Only one pending read action is allowed at any given time.
309
/// Sends halfclose, indicating client is done with
streaming
requests.
341
/// Get the task that completes once if
streaming
response call finishes with ok status and throws RpcException with given status otherwise.
529
/// Handles receive status completion for calls with
streaming
response.
592
/// Handles receive status completion for calls with
streaming
response
[
all
...]
AsyncCallBase.cs
54
protected TaskCompletionSource<TRead> streamingReadTcs; // Completion of a pending
streaming
read if not null.
55
protected TaskCompletionSource<object> streamingWriteTcs; // Completion of a pending
streaming
write or send close from client if not null.
64
protected long streamingWritesCounter; // Number of
streaming
send operations started so far.
150
GrpcPreconditions.CheckState(streamingReadTcs != null, "Call does not support
streaming
reads.");
317
/// Handles
streaming
read completion.
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
BenchmarkServiceGrpc.cs
21
// of unary/
streaming
requests/responses.
93
/// Should be called
streaming
ping-pong
106
/// Single-sided unbounded
streaming
from client to server
118
/// Single-sided unbounded
streaming
from server to client
131
/// Two-sided unbounded
streaming
between server to client
218
/// Should be called
streaming
ping-pong
231
/// Should be called
streaming
ping-pong
241
/// Single-sided unbounded
streaming
from client to server
253
/// Single-sided unbounded
streaming
from client to server
263
/// Single-sided unbounded
streaming
from server to clien
[
all
...]
/external/grpc-grpc/examples/node/static_codegen/route_guide/
route_guide_grpc_pb.js
97
// A server-to-client
streaming
RPC.
114
// A client-to-server
streaming
RPC.
129
// A Bidirectional
streaming
RPC.
/frameworks/av/services/camera/libcameraservice/api2/
CameraDeviceClient.h
77
bool
streaming
= false,
83
bool
streaming
= false,
304
//
Streaming
request ID
/frameworks/av/services/camera/libcameraservice/hidl/
HidlCameraDeviceUser.cpp
162
bool
streaming
,
178
mDeviceRemote->submitRequestList(requests,
streaming
, &submitInfo);
HidlCameraDeviceUser.h
77
bool
streaming
, submitRequestList_cb _hidl_cb) override;
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/
RouteGuideGrpc.cs
93
/// A server-to-client
streaming
RPC.
110
/// A client-to-server
streaming
RPC.
124
/// A Bidirectional
streaming
RPC.
228
/// A server-to-client
streaming
RPC.
245
/// A server-to-client
streaming
RPC.
260
/// A client-to-server
streaming
RPC.
274
/// A client-to-server
streaming
RPC.
286
/// A Bidirectional
streaming
RPC.
300
/// A Bidirectional
streaming
RPC.
/external/grpc-grpc/doc/
compression.md
34
+ For
streaming
RPCs, the {Client,Server}Writer instance. In this case,
66
preventing BEAST/CRIME attacks. This applies to both the unary and
streaming
/external/grpc-grpc/src/csharp/Grpc.Core/Utils/
AsyncStreamExtensions.cs
26
/// Extension methods that simplify work with gRPC
streaming
calls.
Completed in 1093 milliseconds
1
2
3