Lines Matching refs:Uint8Array
33 reqData?: Uint8Array;
34 resp: Deferred<Uint8Array>;
50 async parse(data: Uint8Array): Promise<void> {
62 rawQuery(rawQueryArgs: Uint8Array): Promise<Uint8Array> {
66 rawComputeMetric(rawComputeMetricArgs: Uint8Array): Promise<Uint8Array> {
74 disableAndReadMetatrace(): Promise<Uint8Array> {
78 enqueueRequest(methodName: string, data?: Uint8Array): Promise<Uint8Array> {
79 const resp = defer<Uint8Array>();
107 body: req.reqData || new Uint8Array(),
127 req.resp.resolve(new Uint8Array(arrBuf));
151 const buf = new Uint8Array(await resp.arrayBuffer());