Home
last modified time | relevance | path

Searched refs:sendChunk (Results 1 – 3 of 3) sorted by relevance

/external/pigweed/pw_web_ui/src/transport/
Dweb_serial_transport.ts35 sendChunk: (chunk: Uint8Array) => Promise<void>; property
70 async sendChunk(chunk: Uint8Array): Promise<void> { method in WebSerialTransport
72 return this.activePortConnectionConnection.sendChunk(chunk);
141 async function sendChunk(chunk: Uint8Array) {
148 const connection: PortConnection = {sendChunk, chunks, errors};
Dweb_serial_transport_test.ts74 const sendPromise = transport.sendChunk(data);
87 await transport.sendChunk(data);
Ddevice_transport.ts20 sendChunk(chunk: Uint8Array): Promise<void>; method