Home
last modified time | relevance | path

Searched refs:writeCallback (Results 1 – 7 of 7) sorted by relevance

/third_party/parse5/packages/parse5-parser-stream/lib/
Dindex.ts41 private writeCallback: undefined | (() => void) = undefined; property in ParserStream
66 this.parser.tokenizer.resume(this.writeCallback);
91 this.writeCallback = callback;
92 this.parser.tokenizer.write(chunk, this.lastChunkWritten, this.writeCallback);
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_wire/client/
DClientDoers.cpp155 request.writeCallback(DAWN_BUFFER_MAP_ASYNC_STATUS_CONTEXT_LOST, nullptr, 0, in DoBufferMapWriteAsyncCallback()
159 request.writeCallback(static_cast<DawnBufferMapAsyncStatus>(status), mappedData, in DoBufferMapWriteAsyncCallback()
DBuffer.cpp28 it.second.writeCallback(status, nullptr, 0, it.second.userdata); in ClearMapRequests()
DBuffer.h39 DawnBufferMapWriteCallback writeCallback = nullptr; member
DApiProcs.cpp98 request.writeCallback = callback; in ClientBufferMapWriteAsync()
231 request.writeCallback = [](DawnBufferMapAsyncStatus status, void* data, uint64_t dataLength, in ClientDeviceCreateBufferMappedAsync()
/third_party/parse5/packages/parse5/lib/tokenizer/
Dindex.ts336 public resume(writeCallback?: () => void): void {
349 writeCallback?.();
353 public write(chunk: string, isLastChunk: boolean, writeCallback?: () => void): void {
359 writeCallback?.();
/third_party/node/lib/internal/http2/
Dcore.js2085 const writeCallback = (err) => { function
2109 req = writevGeneric(this, data, writeCallback);
2111 req = writeGeneric(this, data, encoding, writeCallback);