Home
last modified time | relevance | path

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

/development/tools/winscope/src/traces/
DTraceBase.ts18 blobUrl: string,
43 get blobUrl() {
49 return this.files[0].blobUrl;
56 const blob = await fetch(file.blobUrl).then((r) => r.blob());
/development/tools/winscope/src/
Ddecode.js571 const blobUrl = URL.createObjectURL(new Blob([buffer], {type: params.mime}));
577 blobUrl,
585 const blobUrl = URL.createObjectURL(new Blob([data], {type: params.mime}));
586 return dataFile(fileName, timeline, blobUrl, blobUrl, params.type);
589 function dataFile(filename, timeline, data, blobUrl, type, tagGenerationTrace = null) { argument
596 blobUrl: blobUrl,
601 URL.revokeObjectURL(this.blobUrl);
/development/tools/winscope/src/mixins/
DSaveAsZip.js66 const blob = await fetch(file.blobUrl).then((r) => r.blob());