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 | 476 const blobUrl = URL.createObjectURL(new Blob([buffer], {type: params.mime})); 477 return dataFile(fileName, data.map((x) => x.timestamp), data, blobUrl, params.type); 482 const blobUrl = URL.createObjectURL(new Blob([data], {type: params.mime})); 483 return dataFile(fileName, timeline, blobUrl, blobUrl, params.type); 486 function dataFile(filename, timeline, data, blobUrl, type) { argument 493 blobUrl: blobUrl, 497 URL.revokeObjectURL(this.blobUrl);
|
/development/tools/winscope/src/mixins/ |
D | SaveAsZip.js | 42 const blob = await fetch(file.blobUrl).then((r) => r.blob());
|