Searched defs:sink (Results 1 - 25 of 154) sorted by last modified time

1234567

/external/wpa_supplicant_8/hostapd/src/drivers/
H A Dndis_events.c25 IWbemObjectSink sink; member in struct:ndis_events_data
441 IWbemServices_CancelAsyncCall(events->pSvc, &events->sink);
442 IWbemObjectSink_Release(&events->sink);
711 wpa_printf(MSG_ERROR, "Could not allocate sink for events.");
781 pSink = &events->sink;
/external/wpa_supplicant_8/src/drivers/
H A Dndis_events.c25 IWbemObjectSink sink; member in struct:ndis_events_data
441 IWbemServices_CancelAsyncCall(events->pSvc, &events->sink);
442 IWbemObjectSink_Release(&events->sink);
711 wpa_printf(MSG_ERROR, "Could not allocate sink for events.");
781 pSink = &events->sink;
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Dndis_events.c25 IWbemObjectSink sink; member in struct:ndis_events_data
441 IWbemServices_CancelAsyncCall(events->pSvc, &events->sink);
442 IWbemObjectSink_Release(&events->sink);
711 wpa_printf(MSG_ERROR, "Could not allocate sink for events.");
781 pSink = &events->sink;
/external/valgrind/main/coregrind/
H A Dm_libcprint.c58 /* Do the low-level send of a message to the logging sink. */
60 void send_bytes_to_logging_sink ( OutputSink* sink, const HChar* msg, Int nbytes ) argument
62 if (sink->is_socket) {
63 Int rc = VG_(write_socket)( sink->fd, msg, nbytes );
66 sink->is_socket = False;
67 sink->fd = 2;
68 VG_(write)( sink->fd, msg, nbytes );
71 /* sink->fd could have been set to -1 in the various
75 if (sink->fd >= 0)
76 VG_(write)( sink
95 OutputSink* sink; member in struct:__anon32549
125 vprintf_WRK( OutputSink* sink, const HChar *format, va_list vargs ) argument
394 OutputSink* sink; member in struct:__anon32551
[all...]
/external/valgrind/main/exp-sgcheck/tests/
H A Dbad_percentify.c49 /* Do the low-level send of a message to the logging sink. */
51 void send_bytes_to_logging_sink ( OutputSink* sink, HChar* msg, Int nbytes ) argument
64 OutputSink* sink; member in struct:__anon32815
69 // full, we write its contents to the logging sink.
75 send_bytes_to_logging_sink( b->sink, b->buf, b->buf_used );
88 if (b->sink->fd >= 0 || b->sink->fd == -2) {
96 static UInt vprintf_WRK ( OutputSink* sink, argument
100 = { "", 0, sink };
105 send_bytes_to_logging_sink( myprintf_buf.sink,
[all...]
/external/skia/samplecode/
H A DSampleApp.cpp102 static void post_event_to_sink(SkEvent* evt, SkEventSink* sink) { argument
103 evt->setTargetID(sink->getSinkID())->post();
/external/skia/src/animator/
H A DSkDisplayPost.h43 SkString sink; member in class:SkPost
/external/skia/src/views/
H A DSkEventSink.cpp55 SkEventSink* sink = globals.fSinkHead; local
59 SkEventSink* next = sink->fNextSink;
60 if (sink == this) {
68 prev = sink;
69 sink = next;
164 void SkEventSink::copyListeners(const SkEventSink& sink) argument
166 SkListenersTagList* sinkList = (SkListenersTagList*)sink.findTagList(kListeners_SkTagList);
228 SkEventSink* sink = SkEventSink::FindSink(evt.getTargetID()); local
229 if (sink) {
230 return sink
243 SkEventSink* sink = globals.fSinkHead; local
[all...]
/external/skia/include/animator/
H A DSkAnimator.h210 Use this to access a movie's event sink, to send events to movies.
454 /** The event sink events generated by the animation are posted to.
455 Screenplay also posts an inval event to this event sink after processing an
457 @param target the event sink id
463 void setHostEventSink(SkEventSink* sink) { argument
464 this->setHostEventSinkID(sink ? sink->getSinkID() : 0);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/qemu/audio/
H A Dpaaudio.c69 char *sink; member in struct:__anon29243
342 conf.sink,
519 conf.sink,
579 .valp = &conf.sink,
580 .descr = "sink device name"
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DRequest.java161 public abstract void writeTo(BufferedSink sink) throws IOException; argument
193 @Override public void writeTo(BufferedSink sink) throws IOException {
194 sink.write(content);
213 @Override public void writeTo(BufferedSink sink) throws IOException {
222 sink.write(buffer, 0, c);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpConnection.java48 * <li>Open a sink to write the request body. Either {@link
78 private final BufferedSink sink; field in class:HttpConnection
89 this.sink = Okio.buffer(Okio.sink(socket.getOutputStream()));
130 sink.flush();
161 sink.writeUtf8(requestLine).writeUtf8("\r\n");
163 sink.writeUtf8(headers.name(i))
168 sink.writeUtf8("\r\n");
240 requestBody.writeToSocket(sink);
291 sink
440 read(OkBuffer sink, long byteCount) argument
488 read( OkBuffer sink, long byteCount) argument
555 read(OkBuffer sink, long byteCount) argument
[all...]
H A DSpdyTransport.java265 @Override public long read(OkBuffer sink, long byteCount) argument
271 long read = source.read(sink, byteCount);
281 Okio.copy(sink, sink.size() - read, read, cacheBody);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DHttp20Draft09.java63 @Override public FrameWriter newWriter(BufferedSink sink, boolean client) { argument
64 return new Writer(sink, client);
292 private final BufferedSink sink; field in class:Http20Draft09.Writer
298 Writer(BufferedSink sink, boolean client) { argument
299 this.sink = sink;
307 sink.flush();
317 sink.flush();
323 sink.write(CONNECTION_HEADER.toByteArray());
324 sink
511 read(OkBuffer sink, long byteCount) argument
[all...]
H A DSpdy3.java102 @Override public FrameWriter newWriter(BufferedSink sink, boolean client) { argument
103 return new Writer(sink, client);
294 private final BufferedSink sink; field in class:Spdy3.Writer
300 Writer(BufferedSink sink, boolean client) { argument
301 this.sink = sink;
326 sink.flush();
339 sink.writeInt(0x80000000 | (VERSION & 0x7fff) << 16 | type & 0xffff);
340 sink.writeInt((flags & 0xff) << 24 | length & 0xffffff);
341 sink
[all...]
H A DSpdyConnection.java154 frameWriter = variant.newWriter(builder.sink, client);
496 private BufferedSink sink; field in class:SpdyConnection.Builder
514 this.sink = Okio.buffer(Okio.sink(socket.getOutputStream()));
H A DSpdyStream.java66 final SpdyDataSink sink; field in class:SpdyStream
85 this.sink = new SpdyDataSink();
87 this.sink.finished = outFinished;
111 && (sink.finished || sink.closed)
192 this.sink.finished = true;
221 * Returns a sink that can be used to write data to the peer.
229 throw new IllegalStateException("reply before requesting the sink");
232 return sink;
264 if (source.finished && sink
362 read(OkBuffer sink, long byteCount) argument
[all...]
H A DVariant.java36 FrameWriter newWriter(BufferedSink sink, boolean client); argument
/external/okhttp/okio/src/main/java/okio/
H A DDeflaterSink.java24 * A sink that uses <a href="http://tools.ietf.org/html/rfc1951">DEFLATE</a> to
38 private final BufferedSink sink; field in class:DeflaterSink
42 public DeflaterSink(Sink sink, Deflater deflater) { argument
43 this.sink = Okio.buffer(sink);
56 // Deflate those bytes into sink.
72 OkBuffer buffer = sink.buffer();
87 sink.emitCompleteSegments();
96 sink.flush();
102 // Emit deflated data to the underlying sink
[all...]
H A DGzipSource.java49 * decompressed sink buffers.
62 @Override public long read(OkBuffer sink, long byteCount) throws IOException { argument
74 long offset = sink.size;
75 long result = inflaterSource.read(sink, byteCount);
77 updateCrc(sink, offset, result);
H A DInflaterSource.java56 OkBuffer sink, long byteCount) throws IOException {
64 // Decompress the inflater's compressed data into the sink.
66 Segment tail = sink.writableSegment(1);
70 sink.size += bytesInflated;
55 read( OkBuffer sink, long byteCount) argument
H A DOkBuffer.java103 @Override public int read(byte[] sink, int offset, int byteCount) {
104 return OkBuffer.this.read(sink, offset, byteCount);
122 * number of bytes that can be flushed immediately to an underlying sink
364 int read(byte[] sink, int offset, int byteCount) { argument
368 System.arraycopy(s.data, s.pos, sink, offset, toCopy);
561 // Occasionally we write only part of a source buffer to a sink buffer. For
562 // example, given a sink [51%, 91%], we may want to write the first 30% of
565 // yielding sink [51%, 91%, 30%] and source [62%, 82%].
607 @Override public long read(OkBuffer sink, long byteCount) { argument
610 sink
[all...]
H A DOkio.java32 public static BufferedSink buffer(Sink sink) { argument
33 return new RealBufferedSink(sink);
36 /** Copies bytes from {@code source} to {@code sink}. */
37 public static void copy(OkBuffer source, long offset, long byteCount, OutputStream sink) argument
52 sink.write(s.data, pos, toWrite);
58 /** Returns a sink that writes to {@code out}. */
59 public static Sink sink(final OutputStream out) { method in class:Okio
98 return "sink(" + out + ")";
108 @Override public long read(OkBuffer sink, long byteCount) throws IOException {
111 Segment tail = sink
[all...]

Completed in 1075 milliseconds

1234567