SYMBOL INDEX (465 symbols across 34 files) FILE: core/aes.go type AESCipher (line 13) | type AESCipher struct method Encrypt (line 21) | func (a *AESCipher) Encrypt(plainText string) (string, error) { method Decrypt (line 44) | func (a *AESCipher) Decrypt(cipherText string) (string, error) { function NewAESCipher (line 17) | func NewAESCipher(key string) *AESCipher { FILE: core/app.go type App (line 17) | type App struct method Startup (line 129) | func (a *App) Startup(ctx context.Context) { method OnExit (line 134) | func (a *App) OnExit() { method installCert (line 143) | func (a *App) installCert() (string, error) { method OpenSystemProxy (line 156) | func (a *App) OpenSystemProxy() error { method UnsetSystemProxy (line 168) | func (a *App) UnsetSystemProxy() error { method isInstall (line 180) | func (a *App) isInstall() bool { method lock (line 184) | func (a *App) lock() error { method ResetApp (line 192) | func (a *App) ResetApp() error { function GetApp (line 43) | func GetApp(assets embed.FS, wjs string) *App { FILE: core/bind.go type Bind (line 7) | type Bind struct method Config (line 14) | func (b *Bind) Config() *ResponseData { method AppInfo (line 18) | func (b *Bind) AppInfo() *ResponseData { method ResetApp (line 22) | func (b *Bind) ResetApp() { function NewBind (line 10) | func NewBind() *Bind { FILE: core/config.go type MimeInfo (line 13) | type MimeInfo struct type Config (line 19) | type Config struct method setConfig (line 209) | func (c *Config) setConfig(config Config) { method getConfig (line 253) | func (c *Config) getConfig(key string) interface{} { method typeSuffix (line 302) | func (c *Config) typeSuffix(mime string) (string, string) { function initConfig (line 47) | func initConfig() *Config { function getDefaultMimeMap (line 119) | func getDefaultMimeMap() map[string]MimeInfo { function getDefaultDownloadDir (line 183) | func getDefaultDownloadDir() string { FILE: core/downloader.go constant MaxRetries (line 18) | MaxRetries = 3 constant RetryDelay (line 19) | RetryDelay = 3 * time.Second constant MinPartSize (line 20) | MinPartSize = 1 * 1024 * 1024 type ProgressCallback (line 23) | type ProgressCallback type ProgressChan (line 25) | type ProgressChan struct type DownloadTask (line 30) | type DownloadTask struct type FileDownloader (line 39) | type FileDownloader struct method buildClient (line 72) | func (fd *FileDownloader) buildClient() *http.Client { method setHeaders (line 109) | func (fd *FileDownloader) setHeaders(request *http.Request) { method init (line 126) | func (fd *FileDownloader) init() error { method createDownloadTasks (line 201) | func (fd *FileDownloader) createDownloadTasks() { method startDownload (line 241) | func (fd *FileDownloader) startDownload() error { method startDownloadTask (line 303) | func (fd *FileDownloader) startDownloadTask(wg *sync.WaitGroup, progre... method doDownloadTask (line 334) | func (fd *FileDownloader) doDownloadTask(progressChan chan ProgressCha... method verifyDownload (line 400) | func (fd *FileDownloader) verifyDownload() error { method Start (line 417) | func (fd *FileDownloader) Start() error { method Cancel (line 432) | func (fd *FileDownloader) Cancel() { function NewFileDownloader (line 56) | func NewFileDownloader(url, filename string, totalTasks int, headers map... FILE: core/http.go type respData (line 20) | type respData type ResponseData (line 22) | type ResponseData struct type HttpServer (line 28) | type HttpServer struct method run (line 37) | func (h *HttpServer) run() { method downCert (line 56) | func (h *HttpServer) downCert(w http.ResponseWriter, r *http.Request) { method preview (line 65) | func (h *HttpServer) preview(w http.ResponseWriter, r *http.Request) { method send (line 111) | func (h *HttpServer) send(t string, data interface{}) { method writeJson (line 123) | func (h *HttpServer) writeJson(w http.ResponseWriter, data *ResponseDa... method error (line 132) | func (h *HttpServer) error(w http.ResponseWriter, args ...interface{}) { method success (line 145) | func (h *HttpServer) success(w http.ResponseWriter, args ...interface{... method buildResp (line 159) | func (h *HttpServer) buildResp(code int, message string, data interfac... method openDirectoryDialog (line 167) | func (h *HttpServer) openDirectoryDialog(w http.ResponseWriter, r *htt... method openFileDialog (line 181) | func (h *HttpServer) openFileDialog(w http.ResponseWriter, r *http.Req... method openFolder (line 200) | func (h *HttpServer) openFolder(w http.ResponseWriter, r *http.Request) { method install (line 219) | func (h *HttpServer) install(w http.ResponseWriter, r *http.Request) { method setSystemPassword (line 240) | func (h *HttpServer) setSystemPassword(w http.ResponseWriter, r *http.... method openSystemProxy (line 254) | func (h *HttpServer) openSystemProxy(w http.ResponseWriter, r *http.Re... method unsetSystemProxy (line 267) | func (h *HttpServer) unsetSystemProxy(w http.ResponseWriter, r *http.R... method isProxy (line 280) | func (h *HttpServer) isProxy(w http.ResponseWriter, r *http.Request) { method appInfo (line 286) | func (h *HttpServer) appInfo(w http.ResponseWriter, r *http.Request) { method getConfig (line 290) | func (h *HttpServer) getConfig(w http.ResponseWriter, r *http.Request) { method setConfig (line 294) | func (h *HttpServer) setConfig(w http.ResponseWriter, r *http.Request) { method setType (line 304) | func (h *HttpServer) setType(w http.ResponseWriter, r *http.Request) { method clear (line 320) | func (h *HttpServer) clear(w http.ResponseWriter, r *http.Request) { method delete (line 325) | func (h *HttpServer) delete(w http.ResponseWriter, r *http.Request) { method download (line 338) | func (h *HttpServer) download(w http.ResponseWriter, r *http.Request) { method cancel (line 351) | func (h *HttpServer) cancel(w http.ResponseWriter, r *http.Request) { method wxFileDecode (line 369) | func (h *HttpServer) wxFileDecode(w http.ResponseWriter, r *http.Reque... method batchExport (line 389) | func (h *HttpServer) batchExport(w http.ResponseWriter, r *http.Reques... function initHttpServer (line 30) | func initHttpServer() *HttpServer { FILE: core/logger.go type Logger (line 12) | type Logger struct method Close (line 24) | func (l *Logger) Close() { method Err (line 28) | func (l *Logger) Err(err error) { method Esg (line 32) | func (l *Logger) Esg(err error, format string, v ...interface{}) { function initLogger (line 17) | func initLogger() *Logger { function NewLogger (line 37) | func NewLogger(logFile bool, logPath string) *Logger { FILE: core/middleware.go function Middleware (line 8) | func Middleware(next http.Handler) http.Handler { function HandleApi (line 17) | func HandleApi(w http.ResponseWriter, r *http.Request) bool { FILE: core/plugins/plugin.default.go type DefaultPlugin (line 14) | type DefaultPlugin struct method SetBridge (line 18) | func (p *DefaultPlugin) SetBridge(bridge *shared.Bridge) { method Domains (line 22) | func (p *DefaultPlugin) Domains() []string { method OnRequest (line 26) | func (p *DefaultPlugin) OnRequest(r *http.Request, ctx *goproxy.ProxyC... method OnResponse (line 30) | func (p *DefaultPlugin) OnResponse(resp *http.Response, ctx *goproxy.P... FILE: core/plugins/plugin.qq.com.go type QqPlugin (line 20) | type QqPlugin struct method SetBridge (line 24) | func (p *QqPlugin) SetBridge(bridge *shared.Bridge) { method Domains (line 28) | func (p *QqPlugin) Domains() []string { method OnRequest (line 32) | func (p *QqPlugin) OnRequest(r *http.Request, ctx *goproxy.ProxyCtx) (... method OnResponse (line 46) | func (p *QqPlugin) OnResponse(resp *http.Response, ctx *goproxy.ProxyC... method handleWechatRequest (line 122) | func (p *QqPlugin) handleWechatRequest(r *http.Request, ctx *goproxy.P... method handleMedia (line 133) | func (p *QqPlugin) handleMedia(body []byte) { method buildEmptyResponse (line 242) | func (p *QqPlugin) buildEmptyResponse(r *http.Request) *http.Response { method replaceWxJsContent (line 256) | func (p *QqPlugin) replaceWxJsContent(resp *http.Response, old, new st... method v (line 270) | func (p *QqPlugin) v() string { FILE: core/proxy.go type Proxy (line 18) | type Proxy struct method Startup (line 72) | func (p *Proxy) Startup() { method setCa (line 95) | func (p *Proxy) setCa() error { method setTransport (line 111) | func (p *Proxy) setTransport() { method matchPlugin (line 136) | func (p *Proxy) matchPlugin(host string) shared.Plugin { method httpRequestEvent (line 144) | func (p *Proxy) httpRequestEvent(r *http.Request, ctx *goproxy.ProxyCt... method httpResponseEvent (line 159) | func (p *Proxy) httpResponseEvent(resp *http.Response, ctx *goproxy.Pr... function init (line 26) | func init() { function initProxy (line 64) | func initProxy() *Proxy { FILE: core/resource.go type WxFileDecodeResult (line 19) | type WxFileDecodeResult struct type Resource (line 24) | type Resource struct method buildResType (line 39) | func (r *Resource) buildResType(mime map[string]MimeInfo) map[string]b... method mediaIsMarked (line 53) | func (r *Resource) mediaIsMarked(key string) bool { method markMedia (line 58) | func (r *Resource) markMedia(key string) { method getResType (line 62) | func (r *Resource) getResType(key string) (bool, bool) { method setResType (line 69) | func (r *Resource) setResType(n []string) { method clear (line 83) | func (r *Resource) clear() { method delete (line 87) | func (r *Resource) delete(sign string) { method cancel (line 91) | func (r *Resource) cancel(id string) error { method download (line 100) | func (r *Resource) download(mediaInfo shared.MediaInfo, decodeStr stri... method parseHeaders (line 183) | func (r *Resource) parseHeaders(mediaInfo shared.MediaInfo) (map[strin... method wxFileDecode (line 202) | func (r *Resource) wxFileDecode(mediaInfo shared.MediaInfo, fileName, ... method progressEventsEmit (line 227) | func (r *Resource) progressEventsEmit(mediaInfo shared.MediaInfo, args... method decodeWxFile (line 247) | func (r *Resource) decodeWxFile(fileName, decodeStr string) error { function initResource (line 31) | func initResource() *Resource { FILE: core/rule.go type Rule (line 10) | type Rule struct type RuleSet (line 18) | type RuleSet struct method Load (line 35) | func (r *RuleSet) Load(rs string) error { method shouldMitm (line 92) | func (r *RuleSet) shouldMitm(host string) bool { function initRule (line 23) | func initRule() *RuleSet { FILE: core/shared/base.go type MediaInfo (line 3) | type MediaInfo struct FILE: core/shared/const.go constant DownloadStatusReady (line 4) | DownloadStatusReady string = "ready" constant DownloadStatusRunning (line 5) | DownloadStatusRunning string = "running" constant DownloadStatusError (line 6) | DownloadStatusError string = "error" constant DownloadStatusDone (line 7) | DownloadStatusDone string = "done" constant DownloadStatusHandle (line 8) | DownloadStatusHandle string = "handle" FILE: core/shared/plugin.go type Bridge (line 8) | type Bridge struct type Plugin (line 18) | type Plugin interface FILE: core/shared/utils.go function Md5 (line 20) | func Md5(data string) string { function FormatSize (line 27) | func FormatSize(size float64) string { function GetTopLevelDomain (line 37) | func GetTopLevelDomain(rawURL string) string { function FileExist (line 49) | func FileExist(file string) bool { function CreateDirIfNotExist (line 57) | func CreateDirIfNotExist(dir string) error { function IsDevelopment (line 64) | func IsDevelopment() bool { function GetFileNameFromURL (line 68) | func GetFileNameFromURL(rawUrl string) string { function GetCurrentDateTimeFormatted (line 107) | func GetCurrentDateTimeFormatted() string { function GetUniqueFileName (line 118) | func GetUniqueFileName(filePath string) string { function OpenFolder (line 136) | func OpenFolder(filePath string) error { FILE: core/storage.go type Storage (line 9) | type Storage struct method Load (line 21) | func (l *Storage) Load() ([]byte, error) { method Store (line 36) | func (l *Storage) Store(data []byte) error { function NewStorage (line 14) | func NewStorage(filename string, def []byte) *Storage { FILE: core/system.go type SystemSetup (line 10) | type SystemSetup struct method initCert (line 29) | func (s *SystemSetup) initCert() ([]byte, error) { method SetPassword (line 45) | func (s *SystemSetup) SetPassword(password string, isCache bool) { method checkPasswordFile (line 60) | func (s *SystemSetup) checkPasswordFile() { function initSystem (line 17) | func initSystem() *SystemSetup { FILE: core/system_darwin.go method runCommand (line 12) | func (s *SystemSetup) runCommand(args []string) ([]byte, error) { method getNetworkServices (line 29) | func (s *SystemSetup) getNetworkServices() ([]string, error) { method setProxy (line 61) | func (s *SystemSetup) setProxy() error { method unsetProxy (line 90) | func (s *SystemSetup) unsetProxy() error { method installCert (line 119) | func (s *SystemSetup) installCert() (string, error) { FILE: core/system_linux.go method getLinuxDistro (line 13) | func (s *SystemSetup) getLinuxDistro() (string, error) { method runCommand (line 26) | func (s *SystemSetup) runCommand(args []string, sudo bool) ([]byte, erro... method setProxy (line 43) | func (s *SystemSetup) setProxy() error { method unsetProxy (line 70) | func (s *SystemSetup) unsetProxy() error { method installCert (line 79) | func (s *SystemSetup) installCert() (string, error) { FILE: core/system_windows.go method setProxy (line 14) | func (s *SystemSetup) setProxy() error { method unsetProxy (line 33) | func (s *SystemSetup) unsetProxy() error { method installCert (line 46) | func (s *SystemSetup) installCert() (string, error) { FILE: core/utils.go function DialogErr (line 7) | func DialogErr(message string) { FILE: frontend/components.d.ts type GlobalComponents (line 9) | interface GlobalComponents { FILE: frontend/src/api/app.ts method install (line 4) | install() { method setSystemPassword (line 10) | setSystemPassword(data: object) { method openSystemProxy (line 17) | openSystemProxy() { method unsetSystemProxy (line 23) | unsetSystemProxy() { method openDirectoryDialog (line 29) | openDirectoryDialog() { method openFileDialog (line 35) | openFileDialog() { method openFolder (line 41) | openFolder(data: object) { method isProxy (line 48) | isProxy() { method appInfo (line 54) | appInfo() { method getConfig (line 60) | getConfig() { method setConfig (line 66) | setConfig(data: object) { method setType (line 73) | setType(data: string[]) { method clear (line 82) | clear() { method delete (line 88) | delete(data: object) { method cancel (line 95) | cancel(data: object) { method download (line 102) | download(data: object) { method wxFileDecode (line 109) | wxFileDecode(data: object) { method batchExport (line 116) | batchExport(data: object) { FILE: frontend/src/api/request.ts type RequestOptions (line 4) | interface RequestOptions { FILE: frontend/src/assets/js/decrypt.js function locateFile (line 51) | function locateFile(path) { function getNativeTypeSize (line 164) | function getNativeTypeSize(type) { function warnOnce (line 186) | function warnOnce(text) { function convertJsFunctionToWasm (line 198) | function convertJsFunctionToWasm(func, sig) { function getEmptyTableSlot (line 286) | function getEmptyTableSlot() { function updateTableMap (line 303) | function updateTableMap(offset, count) { function addFunction (line 315) | function addFunction(func, sig) { function removeFunction (line 348) | function removeFunction(index) { function asciiToBinary (line 381) | function asciiToBinary(str) { function decode (line 391) | function decode(encoded) { function setValue (line 420) | function setValue(ptr, value, type, noSafe) { function getValue (line 438) | function getValue(ptr, type, noSafe) { function assert (line 473) | function assert(condition, text) { function getCFunc (line 480) | function getCFunc(ident) { function ccall (line 491) | function ccall(ident, returnType, argTypes, args, opts) { function cwrap (line 556) | function cwrap(ident, returnType, argTypes, opts) { function allocate (line 581) | function allocate(slab, allocator) { function UTF8ArrayToString (line 613) | function UTF8ArrayToString(heap, idx, maxBytesToRead) { function UTF8ToString (line 668) | function UTF8ToString(ptr, maxBytesToRead) { function stringToUTF8Array (line 686) | function stringToUTF8Array(str, heap, outIdx, maxBytesToWrite) { function stringToUTF8 (line 731) | function stringToUTF8(str, outPtr, maxBytesToWrite) { function lengthBytesUTF8 (line 736) | function lengthBytesUTF8(str) { function AsciiToString (line 760) | function AsciiToString(ptr) { function stringToAscii (line 772) | function stringToAscii(str, outPtr) { function UTF16ToString (line 781) | function UTF16ToString(ptr, maxBytesToRead) { function stringToUTF16 (line 821) | function stringToUTF16(str, outPtr, maxBytesToWrite) { function lengthBytesUTF16 (line 843) | function lengthBytesUTF16(str) { function UTF32ToString (line 847) | function UTF32ToString(ptr, maxBytesToRead) { function stringToUTF32 (line 880) | function stringToUTF32(str, outPtr, maxBytesToWrite) { function lengthBytesUTF32 (line 907) | function lengthBytesUTF32(str) { function allocateUTF8 (line 922) | function allocateUTF8(str) { function allocateUTF8OnStack (line 930) | function allocateUTF8OnStack(str) { function writeStringToMemory (line 943) | function writeStringToMemory(string, buffer, dontAddNull) { function writeArrayToMemory (line 958) | function writeArrayToMemory(array, buffer) { function writeAsciiToMemory (line 963) | function writeAsciiToMemory(str, buffer, dontAddNull) { function alignUp (line 974) | function alignUp(x, multiple) { function updateGlobalBufferAndViews (line 1001) | function updateGlobalBufferAndViews(buf) { function keepRuntimeAlive (line 1041) | function keepRuntimeAlive() { function preRun (line 1045) | function preRun() { function initRuntime (line 1057) | function initRuntime() { function exitRuntime (line 1064) | function exitRuntime() { function postRun (line 1068) | function postRun() { function addOnPreRun (line 1080) | function addOnPreRun(cb) { function addOnInit (line 1084) | function addOnInit(cb) { function addOnExit (line 1088) | function addOnExit(cb) { function addOnPostRun (line 1091) | function addOnPostRun(cb) { function getUniqueRunDependency (line 1127) | function getUniqueRunDependency(id) { function addRunDependency (line 1131) | function addRunDependency(id) { function removeRunDependency (line 1140) | function removeRunDependency(id) { function abort (line 1164) | function abort(what) { function isDataURI (line 1205) | function isDataURI(filename) { function isFileURI (line 1211) | function isFileURI(filename) { function getBinary (line 1217) | function getBinary(file) { function getBinaryPromise (line 1233) | function getBinaryPromise() { function createWasm (line 1260) | function createWasm() { function __asyncjs__wasm_ffmpeg_fopen_sync (line 1365) | function __asyncjs__wasm_ffmpeg_fopen_sync(filename,filelen,acc){ return... function __asyncjs__wasm_ffmpeg_fread_sync (line 1366) | function __asyncjs__wasm_ffmpeg_fread_sync(fd,buf,size,ffindex){ return ... function callRuntimeCallbacks (line 1372) | function callRuntimeCallbacks(callbacks) { function withStackSave (line 1392) | function withStackSave(f) { function demangle (line 1398) | function demangle(func) { function demangleAll (line 1402) | function demangleAll(text) { function getWasmTableEntry (line 1413) | function getWasmTableEntry(funcPtr) { function handleException (line 1422) | function handleException(e) { function jsStackTrace (line 1434) | function jsStackTrace() { function setWasmTableEntry (line 1451) | function setWasmTableEntry(idx, func) { function stackTrace (line 1456) | function stackTrace() { function ___cxa_allocate_exception (line 1462) | function ___cxa_allocate_exception(size) { function _atexit (line 1467) | function _atexit(func, arg) { function ___cxa_atexit (line 1469) | function ___cxa_atexit(a0,a1 function ExceptionInfo (line 1474) | function ExceptionInfo(excPtr) { function ___cxa_throw (line 1541) | function ___cxa_throw(ptr, type, destructor) { function _gmtime_r (line 1550) | function _gmtime_r(time, tmPtr) { function ___gmtime_r (line 1569) | function ___gmtime_r(a0,a1 function _tzset_impl (line 1574) | function _tzset_impl() { function _tzset (line 1612) | function _tzset() { function _localtime_r (line 1618) | function _localtime_r(time, tmPtr) { function ___localtime_r (line 1645) | function ___localtime_r(a0,a1 function ___syscall__newselect (line 1668) | function ___syscall__newselect(nfds, readfds, writefds, exceptfds, timeo... function setErrNo (line 1671) | function setErrNo(value) { function ___syscall_fcntl64 (line 1675) | function ___syscall_fcntl64(fd, cmd, varargs) {SYSCALLS.varargs = varargs; function ___syscall_ioctl (line 1680) | function ___syscall_ioctl(fd, op, varargs) {SYSCALLS.varargs = varargs; function ___syscall_mkdir (line 1685) | function ___syscall_mkdir(path, mode) { function ___syscall_open (line 1690) | function ___syscall_open(path, flags, varargs) {SYSCALLS.varargs = varargs; function ___syscall_rmdir (line 1694) | function ___syscall_rmdir(path) { function ___syscall_unlink (line 1697) | function ___syscall_unlink(path) { function runDestructors (line 1702) | function runDestructors(destructors) { function simpleReadValueFromPointer (line 1710) | function simpleReadValueFromPointer(pointer) { function makeLegalFunctionName (line 1723) | function makeLegalFunctionName(name) { function createNamedFunction (line 1735) | function createNamedFunction(name, body) { function extendError (line 1746) | function extendError(baseErrorType, errorName) { function throwInternalError (line 1770) | function throwInternalError(message) { function whenDependentTypesAreResolved (line 1773) | function whenDependentTypesAreResolved(myTypes, dependentTypes, getTypeC... function __embind_finalize_value_object (line 1812) | function __embind_finalize_value_object(structType) { function __embind_register_bigint (line 1878) | function __embind_register_bigint(primitiveType, name, size, minRange, m... function getShiftFromSize (line 1880) | function getShiftFromSize(size) { function embind_init_charCodes (line 1892) | function embind_init_charCodes() { function readLatin1String (line 1900) | function readLatin1String(ptr) { function throwBindingError (line 1910) | function throwBindingError(message) { function registerType (line 1914) | function registerType(rawType, registeredInstance, options) { function __embind_register_bool (line 1944) | function __embind_register_bool(rawType, name, size, trueValue, falseVal... function ClassHandle_isAliasOf (line 1977) | function ClassHandle_isAliasOf(other) { function shallowCopyInternalPointer (line 2003) | function shallowCopyInternalPointer(o) { function throwInstanceAlreadyDeleted (line 2015) | function throwInstanceAlreadyDeleted(obj) { function detachFinalizer (line 2024) | function detachFinalizer(handle) {} function runDestructor (line 2026) | function runDestructor($$) { function releaseClassHandle (line 2033) | function releaseClassHandle($$) { function attachFinalizer (line 2040) | function attachFinalizer(handle) { function ClassHandle_clone (line 2068) | function ClassHandle_clone() { function ClassHandle_delete (line 2089) | function ClassHandle_delete() { function ClassHandle_isDeleted (line 2107) | function ClassHandle_isDeleted() { function flushPendingDeletes (line 2115) | function flushPendingDeletes() { function ClassHandle_deleteLater (line 2122) | function ClassHandle_deleteLater() { function init_ClassHandle (line 2136) | function init_ClassHandle() { function ClassHandle (line 2143) | function ClassHandle() { function ensureOverloadTable (line 2148) | function ensureOverloadTable(proto, methodName, humanName) { function exposePublicSymbol (line 2165) | function exposePublicSymbol(name, value, numArguments) { function RegisteredClass (line 2189) | function RegisteredClass( function upcastPointer (line 2210) | function upcastPointer(ptr, ptrClass, desiredClass) { function constNoSmartPtrRawPointerToWireType (line 2220) | function constNoSmartPtrRawPointerToWireType(destructors, handle) { function genericPointerToWireType (line 2239) | function genericPointerToWireType(destructors, handle) { function nonConstNoSmartPtrRawPointerToWireType (line 2315) | function nonConstNoSmartPtrRawPointerToWireType(destructors, handle) { function RegisteredPointer_getPointee (line 2337) | function RegisteredPointer_getPointee(ptr) { function RegisteredPointer_destructor (line 2344) | function RegisteredPointer_destructor(ptr) { function RegisteredPointer_deleteObject (line 2350) | function RegisteredPointer_deleteObject(handle) { function downcastPointer (line 2356) | function downcastPointer(ptr, ptrClass, desiredClass) { function getInheritedInstanceCount (line 2371) | function getInheritedInstanceCount() { function getLiveInheritedInstances (line 2375) | function getLiveInheritedInstances() { function setDelayFunction (line 2385) | function setDelayFunction(fn) { function init_embind (line 2391) | function init_embind() { function getBasestPointer (line 2399) | function getBasestPointer(class_, ptr) { function getInheritedInstance (line 2409) | function getInheritedInstance(class_, ptr) { function makeClassHandle (line 2414) | function makeClassHandle(prototype, record) { function RegisteredPointer_fromWireType (line 2430) | function RegisteredPointer_fromWireType(ptr) { function init_RegisteredPointer (line 2505) | function init_RegisteredPointer() { function RegisteredPointer (line 2521) | function RegisteredPointer( function replacePublicSymbol (line 2568) | function replacePublicSymbol(name, value, numArguments) { function dynCallLegacy (line 2582) | function dynCallLegacy(sig, ptr, args) { function dynCall (line 2586) | function dynCall(sig, ptr, args) { function getDynCaller (line 2589) | function getDynCaller(sig, ptr) { function embind__requireFunction (line 2599) | function embind__requireFunction(signature, rawFunction) { function getTypeName (line 2615) | function getTypeName(type) { function throwUnboundTypeError (line 2621) | function throwUnboundTypeError(message, types) { function __embind_register_class (line 2642) | function __embind_register_class( function heap32VectorToArray (line 2751) | function heap32VectorToArray(count, firstElement) { function __embind_register_class_constructor (line 2759) | function __embind_register_class_constructor( function new_ (line 2797) | function new_(constructor, argumentList) { function runAndAbortIfError (line 2820) | function runAndAbortIfError(func) { function callUserCallback (line 2828) | function callUserCallback(func, synchronous) { function runtimeKeepalivePush (line 2844) | function runtimeKeepalivePush() { function runtimeKeepalivePop (line 2848) | function runtimeKeepalivePop() { function craftInvokerFunction (line 3023) | function craftInvokerFunction(humanName, argTypes, classType, cppInvoker... function __embind_register_class_function (line 3131) | function __embind_register_class_function( function __emval_decref (line 3197) | function __emval_decref(handle) { function count_emval_handles (line 3204) | function count_emval_handles() { function get_first_emval (line 3214) | function get_first_emval() { function init_emval (line 3222) | function init_emval() { function __embind_register_emval (line 3247) | function __embind_register_emval(rawType, name) { function _embind_repr (line 3268) | function _embind_repr(v) { function floatReadValueFromPointer (line 3280) | function floatReadValueFromPointer(name, shift) { function __embind_register_float (line 3292) | function __embind_register_float(rawType, name, size) { function __embind_register_function (line 3311) | function __embind_register_function(name, argCount, rawArgTypesAddr, sig... function integerReadValueFromPointer (line 3328) | function integerReadValueFromPointer(name, shift, signed) { function __embind_register_integer (line 3344) | function __embind_register_integer(primitiveType, name, size, minRange, ... function __embind_register_memory_view (line 3385) | function __embind_register_memory_view(rawType, dataTypeIndex, name) { function __embind_register_std_string (line 3418) | function __embind_register_std_string(rawType, name) { function __embind_register_std_wstring (line 3510) | function __embind_register_std_wstring(rawType, charSize, name) { function __embind_register_value_object (line 3578) | function __embind_register_value_object( function __embind_register_value_object_field (line 3594) | function __embind_register_value_object_field( function __embind_register_void (line 3617) | function __embind_register_void(rawType, name) { function _abort (line 3633) | function _abort() { function _clock (line 3637) | function _clock() { function _clock_gettime (line 3651) | function _clock_gettime(clk_id, tp) { function readAsmConstArgs (line 3668) | function readAsmConstArgs(sigPtr, buf) { function _emscripten_asm_const_int (line 3685) | function _emscripten_asm_const_int(code, sigPtr, argbuf) { function emscripten_realloc_buffer (line 3696) | function emscripten_realloc_buffer(size) { function _emscripten_resize_heap (line 3707) | function _emscripten_resize_heap(requestedSize) { function getExecutableName (line 3752) | function getExecutableName() { function getEnvStrings (line 3755) | function getEnvStrings() { function _environ_get (line 3785) | function _environ_get(__environ, environ_buf) { function _environ_sizes_get (line 3796) | function _environ_sizes_get(penviron_count, penviron_buf_size) { function _exit (line 3807) | function _exit(status) { function _fd_close (line 3813) | function _fd_close(fd) { function _fd_fdstat_get (line 3817) | function _fd_fdstat_get(fd, pbuf) { function _fd_read (line 3827) | function _fd_read(fd, iov, iovcnt, pnum) { function _fd_seek (line 3834) | function _fd_seek(fd, offset_low, offset_high, whence, newOffset) { function flush_NO_FILESYSTEM (line 3837) | function flush_NO_FILESYSTEM() { function _fd_write (line 3844) | function _fd_write(fd, iov, iovcnt, pnum) { function _gettimeofday (line 3861) | function _gettimeofday(ptr) { function _mktime (line 3870) | function _mktime(tmPtr) { function _setTempRet0 (line 3912) | function _setTempRet0(val) { function __isLeapYear (line 3916) | function __isLeapYear(year) { function __arraySum (line 3920) | function __arraySum(array, index) { function __addDays (line 3931) | function __addDays(date, days) { function _strftime (line 3957) | function _strftime(s, maxsize, format, tm) { function _strftime_l (line 4275) | function _strftime_l(s, maxsize, format, tm) { function _time (line 4279) | function _time(ptr) { function intArrayFromString (line 4301) | function intArrayFromString(stringy, dontAddNull, length) { function intArrayToString (line 4309) | function intArrayToString(array) { function ExitStatus (line 4636) | function ExitStatus(status) { function run (line 4651) | function run(args) { function exit (line 4697) | function exit(status, implicit) { function procExit (line 4708) | function procExit(code) { function wasm_isaac_generate (line 4731) | function wasm_isaac_generate(t, e) { function get_decryptor_array (line 4737) | function get_decryptor_array(seed) { FILE: frontend/src/types/app.d.ts type App (line 2) | interface App { type MimeMap (line 9) | interface MimeMap { type Config (line 14) | interface Config { type MediaInfo (line 37) | interface MediaInfo { type DownloadProgress (line 54) | interface DownloadProgress { type Message (line 61) | interface Message { type Handle (line 66) | interface Handle { type Res (line 71) | interface Res { FILE: frontend/src/types/global.d.ts type Window (line 1) | interface Window { FILE: frontend/wailsjs/go/core/Bind.js function AppInfo (line 5) | function AppInfo() { function Config (line 9) | function Config() { function ResetApp (line 13) | function ResetApp() { FILE: frontend/wailsjs/go/models.ts class ResponseData (line 3) | class ResponseData { method createFrom (line 8) | static createFrom(source: any = {}) { method constructor (line 12) | constructor(source: any = {}) { FILE: frontend/wailsjs/runtime/runtime.d.ts type Position (line 11) | interface Position { type Size (line 16) | interface Size { type Screen (line 21) | interface Screen { type EnvironmentInfo (line 29) | interface EnvironmentInfo { FILE: frontend/wailsjs/runtime/runtime.js function LogPrint (line 11) | function LogPrint(message) { function LogTrace (line 15) | function LogTrace(message) { function LogDebug (line 19) | function LogDebug(message) { function LogInfo (line 23) | function LogInfo(message) { function LogWarning (line 27) | function LogWarning(message) { function LogError (line 31) | function LogError(message) { function LogFatal (line 35) | function LogFatal(message) { function EventsOnMultiple (line 39) | function EventsOnMultiple(eventName, callback, maxCallbacks) { function EventsOn (line 43) | function EventsOn(eventName, callback) { function EventsOff (line 47) | function EventsOff(eventName, ...additionalEventNames) { function EventsOnce (line 51) | function EventsOnce(eventName, callback) { function EventsEmit (line 55) | function EventsEmit(eventName) { function WindowReload (line 60) | function WindowReload() { function WindowReloadApp (line 64) | function WindowReloadApp() { function WindowSetAlwaysOnTop (line 68) | function WindowSetAlwaysOnTop(b) { function WindowSetSystemDefaultTheme (line 72) | function WindowSetSystemDefaultTheme() { function WindowSetLightTheme (line 76) | function WindowSetLightTheme() { function WindowSetDarkTheme (line 80) | function WindowSetDarkTheme() { function WindowCenter (line 84) | function WindowCenter() { function WindowSetTitle (line 88) | function WindowSetTitle(title) { function WindowFullscreen (line 92) | function WindowFullscreen() { function WindowUnfullscreen (line 96) | function WindowUnfullscreen() { function WindowIsFullscreen (line 100) | function WindowIsFullscreen() { function WindowGetSize (line 104) | function WindowGetSize() { function WindowSetSize (line 108) | function WindowSetSize(width, height) { function WindowSetMaxSize (line 112) | function WindowSetMaxSize(width, height) { function WindowSetMinSize (line 116) | function WindowSetMinSize(width, height) { function WindowSetPosition (line 120) | function WindowSetPosition(x, y) { function WindowGetPosition (line 124) | function WindowGetPosition() { function WindowHide (line 128) | function WindowHide() { function WindowShow (line 132) | function WindowShow() { function WindowMaximise (line 136) | function WindowMaximise() { function WindowToggleMaximise (line 140) | function WindowToggleMaximise() { function WindowUnmaximise (line 144) | function WindowUnmaximise() { function WindowIsMaximised (line 148) | function WindowIsMaximised() { function WindowMinimise (line 152) | function WindowMinimise() { function WindowUnminimise (line 156) | function WindowUnminimise() { function WindowSetBackgroundColour (line 160) | function WindowSetBackgroundColour(R, G, B, A) { function ScreenGetAll (line 164) | function ScreenGetAll() { function WindowIsMinimised (line 168) | function WindowIsMinimised() { function WindowIsNormal (line 172) | function WindowIsNormal() { function BrowserOpenURL (line 176) | function BrowserOpenURL(url) { function Environment (line 180) | function Environment() { function Quit (line 184) | function Quit() { function Hide (line 188) | function Hide() { function Show (line 192) | function Show() { function ClipboardGetText (line 196) | function ClipboardGetText() { function ClipboardSetText (line 200) | function ClipboardSetText(text) { function OnFileDrop (line 221) | function OnFileDrop(callback, useDropTarget) { function OnFileDropOff (line 228) | function OnFileDropOff() { function CanResolveFilePaths (line 232) | function CanResolveFilePaths() { function ResolveFilePaths (line 236) | function ResolveFilePaths(files) { FILE: main.go function main (line 29) | func main() {