Searched refs:blobUrl (Results 1 – 3 of 3) sorted by relevance
/development/tools/winscope/src/traces/ |
D | TraceBase.ts | 18 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/ |
D | decode.js | 571 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/ |
D | SaveAsZip.js | 66 const blob = await fetch(file.blobUrl).then((r) => r.blob());
|