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

1 2 3 4 5 6 7 8

  /external/llvm/lib/Fuzzer/test/
LeakTimeoutTest.cpp 8 static volatile int *Sink;
12 Sink = new int;
13 Sink = new int;
14 while (Sink) *Sink = 0; // Infinite loop.
TimeoutTest.cpp 10 static volatile int Sink;
14 Sink = 1;
16 Sink = 2;
18 Sink = 2;
19 while (Sink)
LeakTest.cpp 8 static volatile void *Sink;
12 Sink = new int;
13 Sink = nullptr;
SwitchTest.cpp 11 static volatile int Sink;
19 case 1: Sink = __LINE__; break;
20 case 101: Sink = __LINE__; break;
21 case 1001: Sink = __LINE__; break;
22 case 10001: Sink = __LINE__; break;
23 case 100001: Sink = __LINE__; break;
24 case 1000001: Sink = __LINE__; break;
25 case 10000001: Sink = __LINE__; break;
36 case 42: Sink = __LINE__; break;
37 case 402: Sink = __LINE__; break
    [all...]
NullDerefTest.cpp 10 static volatile int Sink;
15 Sink = 1;
17 Sink = 2;
SignedIntOverflowTest.cpp 12 static volatile int Sink;
18 Sink = 1;
20 Sink = 2;
SimpleTest.cpp 11 static volatile int Sink;
16 Sink = 1;
18 Sink = 2;
CustomMutatorTest.cpp 13 static volatile int Sink;
18 Sink = 1;
20 Sink = 2;
  /external/webrtc/talk/media/base/
audiorenderer.h 38 class Sink {
51 virtual ~Sink() {}
54 // Sets a sink to the AudioRenderer. There can be only one sink connected
56 virtual void SetSink(Sink* sink) {}
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheRequest.java 19 import okio.Sink;
22 Sink body() throws IOException;
HttpStream.java 23 import okio.Sink;
34 Sink createRequestBody(Request request, long contentLength) throws IOException;
RetryableSink.java 22 import okio.Sink;
32 public final class RetryableSink implements Sink {
74 public void writeToSocket(Sink socketOut) throws IOException {
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/http/
CacheRequest.java 20 import com.android.okhttp.okio.Sink;
26 Sink body() throws IOException;
HttpStream.java 24 import com.android.okhttp.okio.Sink;
38 Sink createRequestBody(Request request, long contentLength) throws IOException;
RetryableSink.java 23 import com.android.okhttp.okio.Sink;
34 public final class RetryableSink implements Sink {
76 public void writeToSocket(Sink socketOut) throws IOException {
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSink.java 20 /** A {@link Sink} which forwards calls to another. Useful for subclassing. */
21 public abstract class ForwardingSink implements Sink {
22 private final Sink delegate;
24 public ForwardingSink(Sink delegate) {
29 /** {@link Sink} to which this instance is delegating. */
30 public final Sink delegate() {
Sink.java 28 * <p>Most application code shouldn't operate on a sink directly, but rather
30 * {@link Okio#buffer(Sink)} to wrap any sink with a buffer.
43 * <p>Sink is also easier to layer: there is no {@linkplain
48 * Use {@link Okio#sink} to adapt an {@code OutputStream} to a sink. Use {@link
49 * BufferedSink#outputStream} to adapt a sink to an {@code OutputStream}.
51 public interface Sink extends Closeable, Flushable {
58 /** Returns the timeout for this sink. */
63 * resources held by this sink. It is an error to write a closed sink. It i
    [all...]
  /external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
ForwardingSink.java 21 /** A {@link Sink} which forwards calls to another. Useful for subclassing.
23 public abstract class ForwardingSink implements Sink {
24 private final Sink delegate;
26 public ForwardingSink(Sink delegate) {
31 /** {@link Sink} to which this instance is delegating. */
32 public final Sink delegate() {
Sink.java 29 * <p>Most application code shouldn't operate on a sink directly, but rather
31 * {@link Okio#buffer(Sink)} to wrap any sink with a buffer.
44 * <p>Sink is also easier to layer: there is no {@linkplain
49 * Use {@link Okio#sink} to adapt an {@code OutputStream} to a sink. Use {@link
50 * BufferedSink#outputStream} to adapt a sink to an {@code OutputStream}.
53 public interface Sink extends Closeable, Flushable {
60 /** Returns the timeout for this sink. */
65 * resources held by this sink. It is an error to write a closed sink. It i
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 44 Sink sink = new Sink(4); // byte order insignificant here local
46 sink.putByte((byte) 1);
47 sink.putBytes(new byte[] { 2, 3, 4, 5, 6 });
48 sink.putByte((byte) 7);
49 sink.putBytes(new byte[] {});
50 sink.putBytes(new byte[] { 8 });
51 sink.hash();
52 sink.assertInvariants(8)
57 Sink sink = new Sink(4); local
65 Sink sink = new Sink(4); local
73 Sink sink = new Sink(8); local
81 Sink sink = new Sink(4); local
104 Sink sink = new Sink(4); local
112 Sink sink = new Sink(8); local
120 Sink sink = new Sink(4); local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
FileSystem.java 22 import okio.Sink;
47 @Override public Sink sink(File file) throws FileNotFoundException {
49 return Okio.sink(file);
53 return Okio.sink(file);
57 @Override public Sink appendingSink(File file) throws FileNotFoundException {
112 Sink sink(File file) throws FileNotFoundException; method in interface:FileSystem
118 Sink appendingSink(File file) throws FileNotFoundException;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
FaultHidingSink.java 6 import okio.Sink;
8 /** A sink that never throws IOExceptions, even if the underlying sink does. */
12 public FaultHidingSink(Sink delegate) {
  /external/okhttp/repackaged/okhttp/src/main/java/com/android/okhttp/internal/
FaultHidingSink.java 7 import com.android.okhttp.okio.Sink;
9 /** A sink that never throws IOExceptions, even if the underlying sink does. */
13 public FaultHidingSink(Sink delegate) {
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
FaultyFileSystem.java 26 import okio.Sink;
49 @Override public Sink sink(File file) throws FileNotFoundException { method in class:FaultyFileSystem
50 return new FaultySink(delegate.sink(file), file);
53 @Override public Sink appendingSink(File file) throws FileNotFoundException {
80 public FaultySink(Sink delegate, File file) {
  /external/skia/modules/skottie/src/
SkottieTool.cpp 35 class Sink {
37 virtual ~Sink() = default;
38 Sink(const Sink&) = delete;
39 Sink& operator=(const Sink&) = delete;
55 Sink(const char* ext) : fExtension(ext) {}
63 class PNGSink final : public Sink {
98 using INHERITED = Sink;
101 class SKPSink final : public Sink {
177 std::unique_ptr<Sink> sink; local
    [all...]

Completed in 446 milliseconds

1 2 3 4 5 6 7 8