this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Regenerate ShazamKit (and friends) and UTI frameworks

The previously generated stubs were including static/local symbols that
we don't need (since we only care about the external interface).

+1831 -3828
+16 -3
src/frameworks/ShazamKit/CMakeLists.txt
··· 20 20 21 21 SOURCES 22 22 src/SHCustomCatalog.m 23 + src/SHAudioConverter.m 23 24 src/SHSessionDriverSignatureSlot.m 24 25 src/SHStreamingSessionDriver.m 25 26 src/SHMatch.m 26 27 src/SHShazamKey.m 28 + src/SHCustomCatalogMatcherResultBuilder.m 27 29 src/SHCustomCatalogMemoryStorage.m 28 30 src/SHMediaLibraryTrackBuilder.m 29 31 src/SHMediaLibrary.m 30 32 src/SHMediaLibraryTrack.m 31 33 src/SigCrop.m 34 + src/SHContinuityTracker.m 32 35 src/SHCustomCatalogMatcher.m 33 36 src/SHReferenceSignature.m 34 37 src/SHMutableSignature.m 35 38 src/MRE.m 39 + src/SignatureAlignmentTracker.m 36 40 src/SHEventSignaller.m 41 + src/SHManagedSessionDriverDaemonDelegate.m 37 42 src/SHAudioUtilities.m 38 43 src/SHMediaItem.m 39 - src/SHMediaLibraryContext.m 40 44 src/SHShazamKitUIServiceInterfaces.m 41 45 src/SHCatalog.m 42 46 src/SHSyncedLyrics.m 43 47 src/SHAttribution.m 44 48 src/SHSignatureDataRepresentationValidator.m 49 + src/SHMediaItemPresentationSettings.m 45 50 src/SHLyricLine.m 46 51 src/SHMediaLibraryTrackUpdate.m 47 52 src/SHShazamKitServiceConnection.m ··· 50 55 src/SHMediaItemPropertyUtilities.m 51 56 src/SHSignatureBuffer.m 52 57 src/SHError.m 58 + src/SHShazamKitServiceConnectionClient.m 53 59 src/SHMediaTimelineCustomCatalogMatcher.m 54 60 src/SHShazamKitServiceInterfaces.m 55 61 src/SigSonify.m 56 62 src/SHMediaLibraryItemMetadata.m 63 + src/SHCustomCatalogTracker.m 57 64 src/SHMediaItemSerialization.m 58 65 src/SHMediaLibraryGroup.m 66 + src/SHManagedSessionDriver.m 59 67 src/SHCustomCatalogContainer.m 60 68 src/SHSignature.m 61 69 src/SHManagedSession.m ··· 63 71 src/SHMediaTimeline.m 64 72 src/SHTrackMO.m 65 73 src/SHMediaLibraryLabel.m 74 + src/SHSignatureChunker.m 66 75 src/SHRotatingInstallationID.m 67 - src/SHManagedShazamCatalog.m 68 76 src/SHSignatureGenerator.m 69 77 src/SHSignatureMetrics.m 78 + src/SHMediaLibraryRequest.m 70 79 src/SHMediaLibrarySnapshot.m 71 80 src/SHSession.m 72 81 src/SHRange.m 82 + src/SignatureAlignmentTrackerResult.m 73 83 src/SHGroupMO.m 84 + src/SHCatalogConfiguration.m 85 + src/SHContinuityTrackerResult.m 74 86 src/SHShazamKitServiceConnectionProvider.m 75 87 src/MRESignature.m 76 88 src/SHMetadataMO.m 89 + src/SHCustomCatalogConfiguration.m 77 90 src/SHMatcherResponse.m 78 91 src/SHMediaLibraryInfo.m 79 92 src/SHShazamCatalog.m ··· 89 102 system 90 103 objc 91 104 Foundation 92 - ) 105 + )
-1
src/frameworks/ShazamKit/include/ShazamKit/NSError+SHError.h
··· 18 18 */ 19 19 20 20 #include <Foundation/Foundation.h> 21 - #import <ShazamKit/SHError.h> 22 21 23 22 @interface NSError (SHError) 24 23
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCatalogConfiguration.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHCatalogConfiguration : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHContinuityTracker.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHContinuityTracker : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHContinuityTrackerResult.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHContinuityTrackerResult : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCustomCatalogConfiguration.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHCustomCatalogConfiguration : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCustomCatalogMatcherResultBuilder.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHCustomCatalogMatcherResultBuilder : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCustomCatalogTracker.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHCustomCatalogTracker : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHManagedSessionDriver.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHManagedSessionDriver : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHManagedSessionDriverDaemonDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHManagedSessionDriverDaemonDelegate : NSObject 23 + 24 + @end
+1 -1
src/frameworks/ShazamKit/include/ShazamKit/SHManagedShazamCatalog.h src/frameworks/ShazamKit/include/ShazamKit/SHAudioConverter.h
··· 19 19 20 20 #include <Foundation/Foundation.h> 21 21 22 - @interface SHManagedShazamCatalog : NSObject 22 + @interface SHAudioConverter : NSObject 23 23 24 24 @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaItemPresentationSettings.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHMediaItemPresentationSettings : NSObject 23 + 24 + @end
+1 -1
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryContext.h src/frameworks/ShazamKit/include/ShazamKit/SHSignatureChunker.h
··· 19 19 20 20 #include <Foundation/Foundation.h> 21 21 22 - @interface SHMediaLibraryContext : NSObject 22 + @interface SHSignatureChunker : NSObject 23 23 24 24 @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryRequest.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHMediaLibraryRequest : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKitServiceConnectionClient.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHShazamKitServiceConnectionClient : NSObject 23 + 24 + @end
+69 -584
src/frameworks/ShazamKit/include/ShazamKit/ShazamKit.h
··· 27 27 #import <ShazamKit/MRESignature.h> 28 28 #import <ShazamKit/NSError+SHError.h> 29 29 #import <ShazamKit/SHAttribution.h> 30 + #import <ShazamKit/SHAudioConverter.h> 30 31 #import <ShazamKit/SHAudioUtilities.h> 31 32 #import <ShazamKit/SHCatalog.h> 33 + #import <ShazamKit/SHCatalogConfiguration.h> 34 + #import <ShazamKit/SHContinuityTracker.h> 35 + #import <ShazamKit/SHContinuityTrackerResult.h> 32 36 #import <ShazamKit/SHCustomCatalog.h> 37 + #import <ShazamKit/SHCustomCatalogConfiguration.h> 33 38 #import <ShazamKit/SHCustomCatalogContainer.h> 34 39 #import <ShazamKit/SHCustomCatalogMatcher.h> 40 + #import <ShazamKit/SHCustomCatalogMatcherResultBuilder.h> 35 41 #import <ShazamKit/SHCustomCatalogMemoryStorage.h> 36 42 #import <ShazamKit/SHCustomCatalogStorage.h> 43 + #import <ShazamKit/SHCustomCatalogTracker.h> 37 44 #import <ShazamKit/SHError.h> 38 45 #import <ShazamKit/SHEventSignaller.h> 39 46 #import <ShazamKit/SHEventSignalling.h> ··· 43 50 #import <ShazamKit/SHJSONLDataDetokenizerDelegate.h> 44 51 #import <ShazamKit/SHLyricLine.h> 45 52 #import <ShazamKit/SHManagedSession.h> 46 - #import <ShazamKit/SHManagedShazamCatalog.h> 53 + #import <ShazamKit/SHManagedSessionDriver.h> 54 + #import <ShazamKit/SHManagedSessionDriverDaemonDelegate.h> 47 55 #import <ShazamKit/SHMatch.h> 48 56 #import <ShazamKit/SHMatchedMediaItem.h> 49 57 #import <ShazamKit/SHMatcher.h> ··· 52 60 #import <ShazamKit/SHMatcherResponse.h> 53 61 #import <ShazamKit/SHMediaItem.h> 54 62 #import <ShazamKit/SHMediaItemPresentation.h> 63 + #import <ShazamKit/SHMediaItemPresentationSettings.h> 55 64 #import <ShazamKit/SHMediaItemPropertyUtilities.h> 56 65 #import <ShazamKit/SHMediaItemProvider.h> 57 66 #import <ShazamKit/SHMediaItemSerialization.h> 58 67 #import <ShazamKit/SHMediaLibrary.h> 59 68 #import <ShazamKit/SHMediaLibrary.h> 60 69 #import <ShazamKit/SHMediaLibraryChange.h> 61 - #import <ShazamKit/SHMediaLibraryContext.h> 62 70 #import <ShazamKit/SHMediaLibraryGroup.h> 63 71 #import <ShazamKit/SHMediaLibraryInfo.h> 64 72 #import <ShazamKit/SHMediaLibraryItem.h> ··· 66 74 #import <ShazamKit/SHMediaLibraryLabel.h> 67 75 #import <ShazamKit/SHMediaLibraryQuery.h> 68 76 #import <ShazamKit/SHMediaLibraryQueryParameters.h> 77 + #import <ShazamKit/SHMediaLibraryRequest.h> 69 78 #import <ShazamKit/SHMediaLibrarySnapshot.h> 70 79 #import <ShazamKit/SHMediaLibrarySync.h> 71 80 #import <ShazamKit/SHMediaLibrarySyncDelegate.h> ··· 89 98 #import <ShazamKit/SHShazamKitClient.h> 90 99 #import <ShazamKit/SHShazamKitService.h> 91 100 #import <ShazamKit/SHShazamKitServiceConnection.h> 101 + #import <ShazamKit/SHShazamKitServiceConnectionClient.h> 92 102 #import <ShazamKit/SHShazamKitServiceConnectionProvider.h> 93 103 #import <ShazamKit/SHShazamKitServiceConnectionProvider.h> 94 104 #import <ShazamKit/SHShazamKitServiceInterfaces.h> ··· 96 106 #import <ShazamKit/SHShazamKitUIServiceInterfaces.h> 97 107 #import <ShazamKit/SHSignature.h> 98 108 #import <ShazamKit/SHSignatureBuffer.h> 109 + #import <ShazamKit/SHSignatureChunker.h> 99 110 #import <ShazamKit/SHSignatureDataRepresentationValidator.h> 100 111 #import <ShazamKit/SHSignatureGenerator.h> 101 112 #import <ShazamKit/SHSignatureMetrics.h> ··· 105 116 #import <ShazamKit/SigCrop.h> 106 117 #import <ShazamKit/SigSonify.h> 107 118 #import <ShazamKit/SigX.h> 119 + #import <ShazamKit/SignatureAlignmentTracker.h> 120 + #import <ShazamKit/SignatureAlignmentTrackerResult.h> 108 121 #import <ShazamKit/UTType+SHShazamAdditions.h> 109 122 110 123 111 - void *_ZN6shazam10fit_pointsERKNS_16CPUOnePtDatabaseERKNSt3__16vectorI7peak_tfNS3_9allocatorIS5_EEEERK9SkewRangeyfRfRNS3_6chrono8durationIdNS3_5ratioILl1ELl125EEEEERNS4_INS_7tfmatchENS6_ISL_EEEE(void); 112 - void *_ZN6shazam7regressIKNS_7tfmatchENS_8extractXIS2_EENS_8extractYIS2_EEEENSt3__18optionalINS_12regress_lineEEERKN3gsl4spanIT_Lln1EEET0_T1_(void); 113 - void *_ZN3gsl4spanIKN6shazam7tfmatchELln1EEC1INSt3__16vectorIS2_NS6_9allocatorIS2_EEEEvEERKT_(void); 114 - void *_ZN3gsl4spanIKN6shazam7tfmatchELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS3_T_(void); 115 - void *_Z11crc32_checkjPKcm(void); 116 - void *_Z8checksumPKvm(void); 117 - void *_ZN6shazam24get_spect_peak_log_scaleEv(void); 118 - void *_ZN6shazam25get_spect_peak_log_offsetEv(void); 119 - void *_Z11InterpolateR15spectral_peak_tjPKf(void); 120 - void *_ZN15spectral_peak_tC1ENSt3__16chrono8durationIjNS0_5ratioILl1ELl125EEEEEjPKf(void); 121 - void *_ZN6shazam23ShazamKitHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void); 122 - void *_ZN6shazam11score_matchERKNSt3__16vectorINS_7tfmatchENS0_9allocatorIS2_EEEE(void); 123 - void *_ZNK7OSTimer3nowEv(void); 124 - void *_ZNK7OSTimer8durationENSt3__16chrono10time_pointINS1_12steady_clockENS1_8durationIxNS0_5ratioILl1ELl1000000000EEEEEEES8_(void); 125 - void *_ZN6shazam12get_os_timerEv(void); 126 - void *_ZN7OSTimerD1Ev(void); 127 - void *_ZN7OSTimerD0Ev(void); 128 - void *_ZN6shazam23spectral_peak_compact_t10set_deltaTENSt3__16chrono8durationIjNS1_5ratioILl1ELl125EEEEES6_(void); 129 - void *_ZN6shazam23spectral_peak_compact_t13convert_arrayEPK15spectral_peak_tm(void); 130 - void *_ZNSt3__16vectorIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE7reserveEm(void); 131 - void *_ZNSt3__114__split_bufferIN6shazam23spectral_peak_compact_tERNS_9allocatorIS2_EEEC2EmmS5_(void); 132 - void *_ZNSt3__16vectorIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(void); 133 - void *_ZNKSt3__113__vector_baseIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE20__throw_length_errorEv(void); 134 - void *_ZN6shazam14signature_infoC2EPK15legacy_sig_info(void); 135 - void *_ZN6shazam14signature_infoC1EPK15legacy_sig_info(void); 136 - void *_ZN6shazam14signature_infoC2EPK16LegacyFatSigInfo(void); 137 - void *_ZN6shazam14signature_infoC1EPK16LegacyFatSigInfo(void); 138 - void *_ZN6shazam14signature_infoC2EPK11SumoSigInfo(void); 139 - void *_ZN6shazam14signature_infoC1EPK11SumoSigInfo(void); 140 - void *_ZN15resample_streamC2Ej(void); 141 - void *_ZN15resample_stream14push_3_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void); 142 - void *_ZN15resample_stream19push_44100_to_16000EPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void); 143 - void *_ZN15resample_stream14push_2_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void); 144 - void *_ZN15resample_stream14push_1_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void); 145 - void *_ZN15resample_streamC1Ej(void); 146 - void *_ZN15resample_stream5resetEv(void); 147 - void *_ZN15resample_stream11stream_flowEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void); 148 - void *_ZN15resample_stream17sample_rate_checkEj(void); 149 - void *_ZN15resample_stream21push_441_to_320_tightEfRNSt3__16vectorIfNS0_9allocatorIfEEEE(void); 150 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE6insertIPKfEENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS8_E9referenceEEE5valueENS_11__wrap_iterIPfEEE4typeENSC_IS6_EES8_S8_(void); 151 - void *_ZNK15resample_stream24get_samples_for_fft_stepEv(void); 152 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE26__swap_out_circular_bufferERNS_14__split_bufferIfRS2_EEPf(void); 153 - void *_ZN6shazam11CPUSearcherC2ERK5Timermmb(void); 154 - void *_ZN6shazam13virtual_arrayIcE6resizeEm(void); 155 - void *_ZN6shazam11CPUSearcherC1ERK5Timermmb(void); 156 - void *_ZN6shazam11CPUSearcher6searchERKNS_12CPUDatabasesERKNSt3__16vectorINS_15basic_signatureILNS_17signature_densityE24EEENS4_9allocatorIS8_EEEEmmRK19QueryConfigProviderRKNS4_8functionIFvRK14SearchResponseEEE(void); 157 - void *_Z5visitIRN6shazam11CPUSearcherEJRNS0_12SongDataBaseERNS0_16CPUOnePtDatabaseERNS0_15CPULMFPDataBaseERKNS0_15basic_signatureILNS0_17signature_densityE24EEERK11QueryConfigRmRKNSt3__16chrono10time_pointINSJ_12steady_clockENSJ_8durationIxNSI_5ratioILl1ELl1000000000EEEEEEERKNSI_8functionIFvRK14SearchResponseEEEEEDa8AlgoTypeOT_DpOT0_(void); 158 - void *_ZNSt3__110shared_ptrINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEEED2Ev(void); 159 - void *_ZNSt3__110shared_ptrIN6shazam16CPUOnePtDatabaseEED2Ev(void); 160 - void *_ZNSt3__110shared_ptrIN6shazam12SongDataBaseEED2Ev(void); 161 - void *_ZN6shazam11CPUSearcherclIL8AlgoType1EEEvRKNS_12SongDataBaseERKNS_16CPUOnePtDatabaseERKNS_15CPULMFPDataBaseERKNS_15basic_signatureILNS_17signature_densityE24EEERK11QueryConfigmNSt3__16chrono10time_pointINSL_12steady_clockENSL_8durationIxNSK_5ratioILl1ELl1000000000EEEEEEERKNSK_8functionIFvRK14SearchResponseEEE(void); 162 - void *_ZN6shazam10make_queryIL8AlgoType1EEENS_5QueryIXT_ENSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENS3_9allocatorIS6_EEEEEERKNS_6linkerIXT_EEERKNS_15basic_signatureILNS_17signature_densityE24EEERK11QueryConfigm(void); 163 - void *_ZN6shazam11CPUSearcher6searchIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEEEEvRKNS_12SongDataBaseERKNS_16CPUOnePtDatabaseERKNS_15CPULMFPDataBaseERKNS_5QueryIXT_ENSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENSG_9allocatorISJ_EEEEEERK11QueryConfigmNSG_6chrono10time_pointINST_12steady_clockENST_8durationIxNSG_5ratioILl1ELl1000000000EEEEEEERKNSG_8functionIFvRK14SearchResponseEEE(void); 164 - void *_ZN6shazam10matrix_forIL8AlgoType1EEENS_12query_matrixINS_4algoIXT_EE11matrix_typeEEENSt3__16chrono8durationIfNS7_5ratioILl1ELl1EEEEERK11QueryConfig(void); 165 - void *_ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE7reserveEm(void); 166 - void *_ZN6shazam6kvsortINSt3__16vectorINS_4lmfpILNS_7fp_typeE0EEENS1_9allocatorIS5_EEEEEEvRT_SA_(void); 167 - void *_ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEEC2Em(void); 168 - void *_ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE11__vallocateEm(void); 169 - void *_ZN6shazam5QueryIL8AlgoType1ENSt3__16vectorINS_4lmfpILNS_7fp_typeE0EEENS2_9allocatorIS6_EEEEEC2ERKNS_15basic_signatureILNS_17signature_densityE24EEERK9SkewRangeOS9_(void); 170 - void *_ZN6shazam19search_fingerprintsIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEEEEN3gsl4spanIT0_Lln1EEENS6_IKNS_9fp_suffixIXT_EEELln1EEERKNSt3__16vectorIjNSD_9allocatorIjEEEENS6_IKNS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEESJ_ffS8_(void); 171 - void *_Z25recast_varray_as_gsl_spanI11xpair_groupIJ12xpair_fieldsEEcEN3gsl4spanIT_Lln1EEERN6shazam13virtual_arrayIT0_EE(void); 172 - void *_ZN6shazam9xpairsortI11xpair_groupIJ12xpair_fieldsEEEEvRN3gsl4spanIT_Lln1EEES8_(void); 173 - void *_ZN6shazam10bin_tracksI11xpair_groupIJ12xpair_fieldsEEEEvRKN3gsl4spanIKjLln1EEERNS5_IT_Lln1EEERNSt3__16vectorINS_10SongOffsetENSD_9allocatorISF_EEEE(void); 174 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE6resizeEm(void); 175 - void *_ZNK6shazam10QueryRangeILNS_7fp_typeE0EE25ConstructFingerprintRangeERKNS_4lmfpILS1_0EEE(void); 176 - void *_ZN6shazam25binary_fingerprint_searchIL8AlgoType1EEElN3gsl4spanIKNS_9fp_suffixIXT_EEELln1EEEllmRS6_(void); 177 - void *_ZNK3gsl4spanI11xpair_groupIJ12xpair_fieldsEELln1EE12make_subspanEllNS4_16subspan_selectorILln1EEE(void); 178 - void *_ZN3gsl4spanIKN6shazam4lmfpILNS1_7fp_typeE0EEELln1EEC1INSt3__16vectorIS4_NS8_9allocatorIS4_EEEEvEERKT_(void); 179 - void *_ZN3gsl4spanIKN6shazam4lmfpILNS1_7fp_typeE0EEELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS5_T_(void); 180 - void *_ZN3gsl4spanIKjLln1EEC1INSt3__16vectorIjNS4_9allocatorIjEEEEvEERKT_(void); 181 - void *_ZN3gsl4spanIKjLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS1_T_(void); 182 - void *_ZNSt3__16vectorIN6shazam10SongOffsetENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJmmEEEvDpOT_(void); 183 - void *_ZNKSt3__113__vector_baseIN6shazam10SongOffsetENS_9allocatorIS2_EEE20__throw_length_errorEv(void); 184 - void *_ZNSt3__114__split_bufferIN6shazam10SongOffsetERNS_9allocatorIS2_EEEC2EmmS5_(void); 185 - void *_ZN6shazam10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNS6_9allocatorIS8_EEEES8_RNS7_INS_11regresspairENS9_ISD_EEEERKN3gsl4spanIT0_Lln1EEE(void); 186 - void *_Z14fdelta_compareI11xpair_groupIJ12xpair_fieldsEEEbRKT_S5_(void); 187 - void *_ZNSt3__16__sortIRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEvT0_SF_T_(void); 188 - void *_ZNSt3__17__sort3IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_T_(void); 189 - void *_ZNSt3__17__sort4IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_SF_T_(void); 190 - void *_ZNSt3__17__sort5IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_SF_SF_T_(void); 191 - void *_ZNSt3__118__insertion_sort_3IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEvT0_SF_T_(void); 192 - void *_ZNSt3__127__insertion_sort_incompleteIRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEbT0_SF_T_(void); 193 - void *_ZZN6shazam10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNS6_9allocatorIS8_EEEES8_RNS7_INS_11regresspairENS9_ISD_EEEERKN3gsl4spanIT0_Lln1EEEENKUlT_E_clINSI_IS4_Lln1EEEEEDaSN_(void); 194 - void *_ZN6shazam11shearfactorIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELPv0EEEvRKN3gsl4spanIT0_Lln1EEERfSC_(void); 195 - void *_ZN6shazam22xpairs_to_regresspairsI11xpair_groupIJ12xpair_fieldsEEEEvN3gsl4spanIT_Lln1EEEfRNSt3__16vectorINS_11regresspairENS8_9allocatorISA_EEEE(void); 196 - void *_ZN6shazam5focusILl2ENS_11regresspairEPDoFfRKS1_EZZNS_10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNSC_9allocatorISE_EEEESE_RNSD_IS1_NSF_IS1_EEEERKN3gsl4spanIT0_Lln1EEEENKUlT_E_clINSN_ISA_Lln1EEEEEDaSS_EUlSS_E_EEvSP_xT1_T2_(void); 197 - void *_ZN6shazam13regresspair_yERKNS_11regresspairE(void); 198 - void *_ZNSt3__16vectorIN6shazam11regresspairENS_9allocatorIS2_EEE6resizeEm(void); 199 - void *_ZNSt3__16vectorIN6shazam11regresspairENS_9allocatorIS2_EEE8__appendEm(void); 200 - void *_ZNKSt3__113__vector_baseIN6shazam11regresspairENS_9allocatorIS2_EEE20__throw_length_errorEv(void); 201 - void *_Z13insertionsortIN6shazam11regresspairEmNSt3__14lessIS1_EEEvPT_T0_S7_T1_(void); 202 - void *_ZNSt3__16__sortIRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEvT0_S7_T_(void); 203 - void *_ZNSt3__17__sort3IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_T_(void); 204 - void *_ZNSt3__17__sort4IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_S7_T_(void); 205 - void *_ZNSt3__17__sort5IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_S7_S7_T_(void); 206 - void *_ZNSt3__118__insertion_sort_3IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEvT0_S7_T_(void); 207 - void *_ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEbT0_S7_T_(void); 208 - void *_ZN6shazam7regressINS_11regresspairENS_8extractXIS1_EENS_8extractYIS1_EEEENSt3__18optionalINS_12regress_lineEEERKN3gsl4spanIT_Lln1EEET0_T1_(void); 209 - void *_ZNK3gsl4spanIN6shazam11regresspairELln1EE12make_subspanEllNS3_16subspan_selectorILln1EEE(void); 210 - void *_ZN3gsl4spanIN6shazam11regresspairELln1EEC1INSt3__16vectorIS2_NS5_9allocatorIS2_EEEEvEERT_(void); 211 - void *_ZN3gsl4spanIN6shazam11regresspairELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS2_T_(void); 212 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_(void); 213 - void *_ZNKSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEE20__throw_length_errorEv(void); 214 - void *_ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEEC2EmmS4_(void); 215 - void *_ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEED2Ev(void); 216 - void *_ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEE17__destruct_at_endEPS1_(void); 217 - void *_ZN6shazam14thresholdScoreIL8AlgoType1EEEfffhh(void); 218 - void *_ZN6shazam14peaksToTFPeaksINSt3__16vectorINS2_I15spectral_peak_tNS1_9allocatorIS3_EEEENS4_IS6_EEEEEENS2_I7peak_tfNS4_IS9_EEEERKT_RK14one_pt_options(void); 219 - void *_ZNSt3__16__sortIRNS_7greaterIvEEP6ResultEEvT0_S6_T_(void); 220 - void *_ZNSt3__17__sort3IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_T_(void); 221 - void *_ZNSt3__17__sort4IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_S6_T_(void); 222 - void *_ZNSt3__17__sort5IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_S6_S6_T_(void); 223 - void *_ZNSt3__118__insertion_sort_3IRNS_7greaterIvEEP6ResultEEvT0_S6_T_(void); 224 - void *_ZNSt3__127__insertion_sort_incompleteIRNS_7greaterIvEEP6ResultEEbT0_S6_T_(void); 225 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE8__appendEm(void); 226 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE17__destruct_at_endEPS1_(void); 227 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEEC2ERKS4_(void); 228 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE11__vallocateEm(void); 229 - void *_ZN2tl6detail21expected_storage_baseINSt3__16vectorI6ResultNS2_9allocatorIS4_EEEENS2_12system_errorELb0ELb0EED2Ev(void); 230 - void *_ZNSt3__125__throw_bad_function_callEv(void); 231 - void *_ZN6shazam13virtual_arrayIcE7reserveEm(void); 232 - void *_ZNK10SearchPlan11assertValidEv(void); 233 - void *_ZN10SearchPlanC1E8AlgoType9DBDensity(void); 234 - void *_ZN6shazam17FatHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void); 235 - void *_ZN6shazam15iterate_headersINS_25fp_data_header_extern_newEEEvN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void); 236 - void *_ZNSt3__117bad_function_callD1Ev(void); 237 - void *_ZNSt3__117bad_function_callD0Ev(void); 238 - void *_ZN6shazam17reinterpret_saferIPKNS_25fp_data_header_extern_newELi0EEET_RKN3gsl4spanIKcLln1EEE(void); 239 - void *_ZN6shazam4algoIL8AlgoType1EE10matrix_forE12QueryDensity(void); 240 - void *_ZN6shazam4algoIL8AlgoType1EE10matrix_forE9DBDensity(void); 241 - void *_ZNSt3__120__throw_out_of_rangeEPKc(void); 242 - void *_ZN6shazam24StaticCPUSearcherFactoryC1ENS_12CPUDatabasesEmRK5Timer(void); 243 - void *_ZNK6shazam24StaticCPUSearcherFactory13make_searcherEv(void); 244 - void *_ZNSt3__111make_uniqueIN6shazam17StaticCPUSearcherEJRKNS1_12CPUDatabasesERK5TimerRKmSA_EEENS_11__unique_ifIT_E15__unique_singleEDpOT0_(void); 245 - void *_ZN6shazam24StaticCPUSearcherFactoryD1Ev(void); 246 - void *_ZN6shazam24StaticCPUSearcherFactoryD0Ev(void); 247 - void *_ZN6shazam2io4packERKNS_17basic_signature_tE(void); 248 - void *_ZN6shazam2io18addShazamKitHeaderERNSt3__16vectorIcNS1_9allocatorIcEEEE(void); 249 - void *_ZN6shazam2io4packERNSt3__16vectorIcNS1_9allocatorIcEEEERKNS_17basic_signature_tE(void); 250 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEE7reserveEm(void); 251 - void *_ZN6shazam2io15write_unalignedINS_23spectral_peak_compact_tEEEvRNSt3__16vectorIcNS3_9allocatorIcEEEERKNS4_IT_NS5_IS9_EEEE(void); 252 - void *_ZNSt3__112__rotate_gcdINS_16reverse_iteratorINS_11__wrap_iterIPcEEEEEET_S6_S6_S6_(void); 253 - void *_ZNSt3__113__vector_baseIN6shazam2io12_GLOBAL__N_115compacted_peaksENS_9allocatorIS4_EEED2Ev(void); 254 - void *_ZNKSt3__113__vector_baseIN6shazam2io12_GLOBAL__N_115compacted_peaksENS_9allocatorIS4_EEE20__throw_length_errorEv(void); 255 - void *_ZNK11SumoSigInfo19get_raw_sample_rateEv(void); 256 - void *_ZNK11SumoSigInfo25get_sample_length_samplesEv(void); 257 - void *_ZNK11SumoSigInfo19get_stream_positionEv(void); 258 - void *_ZN6shazam4MMapD2Ev(void); 259 - void *_ZN6shazam4MMapD1Ev(void); 260 - void *_ZN6shazam7windows14blackmanHarrisEm(void); 261 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEEC2EmRKf(void); 262 - void *_ZN6shazam8targetFPERKNS_14link_matrix_2dEm(void); 263 - void *_ZN6shazam14reframe_matrixERKNS_14link_matrix_2dEjNSt3__16chrono8durationIjNS3_5ratioILl1ELl125EEEEE(void); 264 - void *_ZN6shazam16intensify_matrixENS_14link_matrix_2dENSt3__16chrono8durationIfNS1_5ratioILl1ELl1EEEEE(void); 265 - void *_ZN12FreqLogTable2atEt(void); 266 - void *_ZN6shazam18signature_categoryEv(void); 267 - void *_ZN12_GLOBAL__N_123signature_category_implD1Ev(void); 268 - void *_ZN6shazam15make_error_codeENS_9sig_errorE(void); 269 - void *_ZN12_GLOBAL__N_123signature_category_implD0Ev(void); 270 - void *_ZNK12_GLOBAL__N_123signature_category_impl4nameEv(void); 271 - void *_ZNK12_GLOBAL__N_123signature_category_impl7messageEi(void); 272 - void *_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1IDnEEPKc(void); 273 - void *_ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE20__throw_length_errorEv(void); 274 - void *_ZN7SHZ_FFTC2Em(void); 275 - void *_ZN7SHZ_FFTC1Em(void); 276 - void *_ZN7SHZ_FFT11complexformEPKfPfPNSt3__17complexIfEE(void); 277 - void *_ZN10sig_streamC2Ev(void); 278 - void *_ZN10sig_stream5resetEv(void); 279 - void *_ZN10sig_streamC1Ev(void); 280 - void *_ZNK10sig_stream3nowEv(void); 281 - void *_ZN10sig_stream10checkpointEv(void); 282 - void *_ZN10sig_stream6rewindEv(void); 283 - void *_ZNK17AlignedRingBufferIfE2atEi(void); 284 - void *_ZN10sig_stream14push_frame_maxEPKfi(void); 285 - void *_ZNK10sig_stream32get_writable_fft_frame_magnitudeEv(void); 286 - void *_ZNK10sig_stream30get_writable_fft_frame_complexEv(void); 287 - void *_ZN10sig_stream10find_peaksEPKfRm(void); 288 - void *_ZN10sig_stream11stream_flowERNSt3__15dequeI15spectral_peak_tNS0_9allocatorIS2_EEEE(void); 289 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE12emplace_backIJRKNS_6chrono8durationIxNS_5ratioILl1ELl125EEEEERKjRPKfEEERS1_DpOT_(void); 290 - void *_ZN17AlignedRingBufferIfEC2Eii(void); 291 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEEC2Em(void); 292 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE11__vallocateEm(void); 293 - void *_ZNKSt3__113__vector_baseIfNS_9allocatorIfEEE20__throw_length_errorEv(void); 294 - void *_ZN17AlignedRingBufferINSt3__17complexIfEEEC2Eii(void); 295 - void *_ZNSt3__16vectorINS_7complexIfEENS_9allocatorIS2_EEEC2Em(void); 296 - void *_ZNSt3__16vectorINS_7complexIfEENS_9allocatorIS2_EEE11__vallocateEm(void); 297 - void *_ZNKSt3__113__vector_baseINS_7complexIfEENS_9allocatorIS2_EEE20__throw_length_errorEv(void); 298 - void *_ZNK17AlignedRingBufferIfE9get_frameEi(void); 299 - void *_ZNK17AlignedRingBufferINSt3__17complexIfEEE9get_frameEi(void); 300 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE19__add_back_capacityEv(void); 301 - void *_Z16flatten_and_sortRKNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEE(void); 302 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6insertINS_11__wrap_iterIPKS1_EEEENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS1_NS_15iterator_traitsISB_E9referenceEEE5valueENS6_IPS1_EEE4typeES9_SB_SB_(void); 303 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS1_RS3_EEPS1_(void); 304 - void *_Z11unobfuscatePymyS_(void); 305 - void *_Z11UnobfuscatePcm(void); 306 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC2ERKNS_21packed_signature_viewE(void); 307 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE6resizeEm(void); 308 - void *_ZN6shazam19find_last_peak_tickERKNSt3__16vectorINS1_I15spectral_peak_tNS0_9allocatorIS2_EEEENS3_IS5_EEEE(void); 309 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC1ERKNS_21packed_signature_viewE(void); 310 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE24EEC2ERKNS_21packed_signature_viewE(void); 311 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE24EEC1ERKNS_21packed_signature_viewE(void); 312 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE16EEC2ERKNS_21packed_signature_viewE(void); 313 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE16EEC1ERKNS_21packed_signature_viewE(void); 314 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE8__appendEm(void); 315 - void *_ZNSt3__17__sort3IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_T_(void); 316 - void *_ZNSt3__17__sort4IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_S6_T_(void); 317 - void *_ZNSt3__17__sort5IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_S6_S6_T_(void); 318 - void *_ZNSt3__118__insertion_sort_3IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEvT0_S6_T_(void); 319 - void *_ZNSt3__127__insertion_sort_incompleteIRNS_6__lessI15spectral_peak_tS2_EEPS2_EEbT0_S6_T_(void); 320 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE8__appendEm(void); 321 - void *_ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEED2Ev(void); 322 - void *_ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEE17__destruct_at_endEPS5_(void); 323 - void *_ZNKSt3__113__vector_baseIN6shazam21signature_header_typeENS_9allocatorIS2_EEE20__throw_length_errorEv(void); 324 - void *_ZNSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEED2Ev(void); 325 - void *_ZNKSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEE20__throw_length_errorEv(void); 326 - void *_ZNSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEE5clearEv(void); 327 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE13__vdeallocateEv(void); 328 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev(void); 329 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev(void); 330 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv(void); 331 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE(void); 332 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv(void); 333 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv(void); 334 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_(void); 335 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info(void); 336 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv(void); 337 - void *_ZZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_(void); 338 - void *_ZN6shazam17reinterpret_saferIPK15legacy_sig_infoLi0EEET_RKN3gsl4spanIKcLln1EEE(void); 339 - void *_ZN6shazam17reinterpret_saferIPK16LegacyFatSigInfoLi0EEET_RKN3gsl4spanIKcLln1EEE(void); 340 - void *_ZN6shazam17reinterpret_saferIPK11SumoSigInfoLi0EEET_RKN3gsl4spanIKcLln1EEE(void); 341 - void *_ZN6shazam17reinterpret_saferIPKNS_23spectral_peak_compact_tELi0EEET_RKN3gsl4spanIKcLln1EEE(void); 342 - void *_ZN12_GLOBAL__N_112decode_peaksEPKN6shazam23spectral_peak_compact_tEmNS0_17signature_densityENSt3__16chrono8durationIhNS5_5ratioILl1ELl125EEEEE(void); 343 - void *_ZN6shazam17reinterpret_saferIPK15spectral_peak_tLi0EEET_RKN3gsl4spanIKcLln1EEE(void); 344 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6assignIPKS1_EENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS1_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(void); 345 - void *_ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE6resizeEm(void); 346 - void *_ZNSt3__16vectorIN6shazam21signature_header_typeENS_9allocatorIS2_EEE6resizeEm(void); 347 - void *_ZN3gsl9make_spanIKN6shazam23spectral_peak_compact_tEEENS_4spanIT_Lln1EEEPS5_NS6_10index_typeE(void); 348 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE11__vallocateEm(void); 349 - void *_ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE8__appendEm(void); 350 - void *_ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS5_RS6_EE(void); 351 - void *_ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEEC2EmmS8_(void); 352 - void *_ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEED2Ev(void); 353 - void *_ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEE17__destruct_at_endEPS6_(void); 354 - void *_ZNSt3__16vectorIN6shazam21signature_header_typeENS_9allocatorIS2_EEE8__appendEm(void); 355 - void *_ZN6shazam17reinterpret_saferIPKNS_24ancient_dead_sig_point_tELi0EEET_RKN3gsl4spanIKcLln1EEE(void); 356 - void *_ZNSt3__16vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE6assignIPKS2_EENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsISA_E9referenceEEE5valueEvE4typeESA_SA_(void); 357 - void *_ZNSt3__16vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE11__vallocateEm(void); 358 - void *_ZNKSt3__113__vector_baseIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE20__throw_length_errorEv(void); 359 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev(void); 360 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev(void); 361 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv(void); 362 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE(void); 363 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv(void); 364 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv(void); 365 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_(void); 366 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info(void); 367 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv(void); 368 - void *_ZZN6shazam15basic_signatureILNS_17signature_densityE24EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_(void); 369 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev(void); 370 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev(void); 371 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv(void); 372 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE(void); 373 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv(void); 374 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv(void); 375 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_(void); 376 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info(void); 377 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv(void); 378 - void *_ZZN6shazam15basic_signatureILNS_17signature_densityE16EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_(void); 379 - void *_ZN6shazam11match_peaksEN3gsl4spanIK7peak_tfLln1EEERKNSt3__16vectorIS2_NS5_9allocatorIS2_EEEEffiRNS6_INS_7tfmatchENS7_ISC_EEEE(void); 380 - void *_ZNSt3__16vectorIN6shazam7tfmatchENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJiRKjRKfRKiEEEvDpOT_(void); 381 - void *_ZNKSt3__113__vector_baseIN6shazam7tfmatchENS_9allocatorIS2_EEE20__throw_length_errorEv(void); 382 - void *_ZNSt3__114__split_bufferIN6shazam7tfmatchERNS_9allocatorIS2_EEEC2EmmS5_(void); 383 - void *_ZN6shazam13thresholdLerpERKNSt3__15arrayIfLm16EEEf(void); 384 - void *_ZN6shazam15make_error_codeENS_10sigx_errorE(void); 385 - void *_ZN6shazam21packed_signature_viewC2EN3gsl4spanIKcLln1EEE(void); 386 - void *_ZN6shazam21packed_signature_viewC1EN3gsl4spanIKcLln1EEE(void); 387 - void *_ZNK6shazam21packed_signature_view7headersERKNSt3__18functionIFvNS_16signature_headerEEEE(void); 388 - void *_ZN6shazam17reinterpret_saferIPKjLi0EEET_RKN3gsl4spanIKcLln1EEE(void); 389 - void *_ZN6shazam11get_siginfoERKNS_21packed_signature_viewE(void); 390 - void *_ZN12_GLOBAL__N_119type_from_magic_keyEN3gsl4spanIKcLln1EEE(void); 391 - void *_ZN6shazam4cropILNS_17signature_densityE2147483647EEENS_15basic_signatureIXT_EEERKS3_NSt3__16chrono8durationIjNS6_5ratioILl1ELl125EEEEESB_(void); 392 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS4_RS5_EE(void); 393 - void *_ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEEC2EmmS7_(void); 394 - void *_ZNSt12length_errorC1EPKc(void); 395 - void *_ZNSt3__113__lower_boundIRZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNS_6vectorIS6_NS_9allocatorIS6_EEEENS_6chrono8durationIjNS_5ratioILl1ELl125EEEEESI_EUlRS7_RKT0_E_NS4_7details13span_iteratorINS5_IKS3_Lln1EEELb0EEESI_EESK_SK_SK_RKT1_S6_(void); 396 - void *_ZNSt3__113__upper_boundIRZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNS_6vectorIS6_NS_9allocatorIS6_EEEENS_6chrono8durationIjNS_5ratioILl1ELl125EEEEESI_EUlRS7_RKT0_E0_NS4_7details13span_iteratorINS5_IKS3_Lln1EEELb0EEESI_EESK_SK_SK_RKT1_S6_(void); 397 - void *_ZN3gsl4spanIK15spectral_peak_tLln1EEC1INSt3__16vectorIS1_NS5_9allocatorIS1_EEEEvEERKT_(void); 398 - void *_ZN3gsl4spanIK15spectral_peak_tLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS2_T_(void); 399 - void *_ZN6shazam17StaticCPUSearcherC2ENS_12CPUDatabasesERK5Timermm(void); 400 - void *_ZN6shazam17StaticCPUSearcherC1ENS_12CPUDatabasesERK5Timermm(void); 401 - void *_ZN6shazam17StaticCPUSearcher6searchERKNSt3__16vectorINS_15basic_signatureILNS_17signature_densityE24EEENS1_9allocatorIS5_EEEEmmRK19QueryConfigProviderNS1_8functionIFvRK14SearchResponseEEE(void); 402 - void *_ZN6shazam17StaticCPUSearcherD1Ev(void); 403 - void *_ZN6shazam17StaticCPUSearcherD0Ev(void); 404 - void *_ZN6shazam17StaticCPUSearcherD2Ev(void); 405 - void *_ZN6shazam11CPUSearcherD2Ev(void); 406 - void *_ZNSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEED2Ev(void); 407 - void *_ZNSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEE5clearEv(void); 408 - void *_ZN6shazam13virtual_arrayIcED2Ev(void); 409 - void *_ZN6shazam19parse_ancient_peaksERKNSt3__16vectorINS_21signature_header_typeENS0_9allocatorIS2_EEEERKNS1_INS1_INS_24ancient_dead_sig_point_tENS3_IS8_EEEENS3_ISA_EEEENS_17signature_densityENS0_6chrono8durationIhNS0_5ratioILl1ELl125EEEEE(void); 410 - void *_ZNKSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEE20__throw_length_errorEv(void); 411 - void *_ZNKSt3__113__vector_baseI15spectral_peak_tNS_9allocatorIS1_EEE20__throw_length_errorEv(void); 412 - void *_ZN6shazam14density_filterI15spectral_peak_tE5flushEv(void); 413 - void *_ZN6shazam12cropped_infoERKNS_14signature_infoENSt3__16chrono8durationIjNS3_5ratioILl1ELl125EEEEES8_(void); 414 - void *_ZN6shazam18CPUDatabaseBuilderC2ESt16initializer_listI10SearchPlanE(void); 415 - void *_ZN6shazam18CPUDatabaseBuilderC1ESt16initializer_listI10SearchPlanE(void); 416 - void *_ZN6shazam18CPUDatabaseBuilder3addERKNS_15basic_signatureILNS_17signature_densityE16EEEyy(void); 417 - void *_ZN6shazam18CPUDatabaseBuilder13addSigSegmentERKNS_15basic_signatureILNS_17signature_densityE16EEEyNSt3__16chrono8durationIfNS6_5ratioILl1ELl1EEEEENS8_IxNS9_ILl1ELl1000EEEEE(void); 418 - void *_ZN6shazam18CPUDatabaseBuilder7addDataEyNSt3__16chrono8durationIfNS1_5ratioILl1ELl1EEEEENS3_IhNS4_ILl1ELl125EEEEEhNS3_IjS7_EERKNS1_6vectorI7peak_tfNS1_9allocatorISB_EEEENS3_IxNS4_ILl1ELl1000EEEEE(void); 419 - void *_ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE6resizeEm(void); 420 - void *_ZN6shazam18CPUDatabaseBuilder5buildEv(void); 421 - void *_ZN6shazam18CPUDatabaseBuilder5resetEv(void); 422 - void *_ZN6shazam6detail13writeLMFPDataIL8AlgoType1EEEvRKNSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENS3_9allocatorIS6_EEEERNS4_IcNS7_IcEEEERKNS3_6chrono8durationIyNS3_5ratioILl1ELl125EEEEE(void); 423 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEE8__appendEm(void); 424 - void *_ZNKSt3__113__vector_baseIcNS_9allocatorIcEEE20__throw_length_errorEv(void); 425 - void *_ZN6shazam10link_bandsIL8AlgoType1EEEDaRKNS_6linkerIXT_EEERKNSt3__16vectorINS8_I15spectral_peak_tNS7_9allocatorIS9_EEEENSA_ISC_EEEENS7_6chrono8durationIjNS7_5ratioILl1ELl125EEEEERK19link_matrix_optionsm(void); 426 - void *_ZN6shazam10matrix_forIL8AlgoType1ELPv0EEENS_14link_matrix_2dERK19link_matrix_optionsNSt3__16chrono8durationIjNS7_5ratioILl1ELl125EEEEE(void); 427 - void *_ZNKSt3__113__vector_baseIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE20__throw_length_errorEv(void); 428 - void *_ZN6shazam6kvsortIN3gsl4spanINS_4lmfpILNS_7fp_typeE0EEELln1EEEEEvRT_S8_(void); 429 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEEC2Em(void); 430 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEE11__vallocateEm(void); 431 - void *_ZNKSt3__113__vector_baseIjNS_9allocatorIjEEE20__throw_length_errorEv(void); 432 - void *_ZNSt3__115allocate_sharedIN6shazam12SongDataBaseENS_9allocatorIS2_EEJEvEENS_10shared_ptrIT_EERKT0_DpOT1_(void); 433 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEEC2IJEEES4_DpOT_(void); 434 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEED1Ev(void); 435 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEED0Ev(void); 436 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEE16__on_zero_sharedEv(void); 437 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEE21__on_zero_shared_weakEv(void); 438 - void *_ZNSt3__115allocate_sharedIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEJEvEENS_10shared_ptrIT_EERKT0_DpOT1_(void); 439 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEEC2IJEEES4_DpOT_(void); 440 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEED1Ev(void); 441 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEED0Ev(void); 442 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEE16__on_zero_sharedEv(void); 443 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEE21__on_zero_shared_weakEv(void); 444 - void *_ZNSt3__16vectorI10SearchPlanNS_9allocatorIS1_EEE11__vallocateEm(void); 445 - void *_ZNKSt3__113__vector_baseI10SearchPlanNS_9allocatorIS1_EEE20__throw_length_errorEv(void); 446 - void *_ZNSt3__16vectorINS0_IcNS_9allocatorIcEEEENS1_IS3_EEEC2Em(void); 447 - void *_ZNSt3__16vectorINS0_IcNS_9allocatorIcEEEENS1_IS3_EEE11__vallocateEm(void); 448 - void *_ZNKSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEE20__throw_length_errorEv(void); 449 - void *_ZN6shazam4cropILNS_17signature_densityE16EEENS_15basic_signatureIXT_EEERKS3_NSt3__16chrono8durationIjNS6_5ratioILl1ELl125EEEEESB_(void); 450 - void *_ZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNSt3__16vectorIS4_NS7_9allocatorIS4_EEEENS7_6chrono8durationIjNS7_5ratioILl1ELl125EEEEESH_(void); 451 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE11__vallocateEm(void); 452 - void *_ZNSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEED2Ev(void); 453 - void *_ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE7reserveEm(void); 454 - void *_ZNKSt3__113__vector_baseI7peak_tfNS_9allocatorIS1_EEE20__throw_length_errorEv(void); 455 - void *_ZNSt3__16__sortIRNS_6__lessI7peak_tfS2_EEPS2_EEvT0_S6_T_(void); 456 - void *_ZNSt3__17__sort3IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_T_(void); 457 - void *_ZNSt3__17__sort4IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_S6_T_(void); 458 - void *_ZNSt3__17__sort5IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_S6_S6_T_(void); 459 - void *_ZNSt3__118__insertion_sort_3IRNS_6__lessI7peak_tfS2_EEPS2_EEvT0_S6_T_(void); 460 - void *_ZNSt3__127__insertion_sort_incompleteIRNS_6__lessI7peak_tfS2_EEPS2_EEbT0_S6_T_(void); 461 - void *_ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE8__appendEm(void); 462 - void *_ZNKSt3__113__vector_baseIyNS_9allocatorIyEEE20__throw_length_errorEv(void); 463 - void *_ZNKSt3__113__vector_baseINS_6chrono8durationIfNS_5ratioILl1ELl1EEEEENS_9allocatorIS5_EEE20__throw_length_errorEv(void); 464 - void *_ZNKSt3__113__vector_baseIhNS_9allocatorIhEEE20__throw_length_errorEv(void); 465 - void *_ZNKSt3__113__vector_baseINS_6chrono8durationIxNS_5ratioILl1ELl1000EEEEENS_9allocatorIS5_EEE20__throw_length_errorEv(void); 466 - void *_ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEED1Ev(void); 467 - void *_ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEED0Ev(void); 468 - void *_ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEE16__on_zero_sharedEv(void); 469 - void *_ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEE21__on_zero_shared_weakEv(void); 470 - void *_ZNSt3__113__vector_baseIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEED2Ev(void); 471 - void *_ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE22__construct_one_at_endIJR10SearchPlanRNS0_IcNS3_IcEEEEEEEvDpOT_(void); 472 - void *_ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJR10SearchPlanRNS0_IcNS3_IcEEEEEEEvDpOT_(void); 473 - void *_ZN3gsl4spanIcLln1EEC1INSt3__16vectorIcNS3_9allocatorIcEEEEvEERT_(void); 474 - void *_ZN3gsl4spanIcLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPcT_(void); 475 - void *_ZN6shazam15CPULMFPDataBaseC2ERK10SearchPlanN3gsl4spanIcLln1EEE(void); 476 - void *_Z5visitIN6shazam15CPULMFPDataBase12prefix_stripEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_(void); 477 - void *_Z5visitIN6shazam15CPULMFPDataBase14landmarks_initEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_(void); 478 - void *_Z5visitIN6shazam15CPULMFPDataBase11ptable_initEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_(void); 479 - void *_ZNK6shazam15CPULMFPDataBase12prefix_stripclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE(void); 480 - void *_ZN6shazam15getLMFPSuffixesIL8AlgoType1EEENSt3__16vectorIcNS2_9allocatorIcEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE(void); 481 - void *_ZN6shazam10lmfpAsAlgoIL8AlgoType1EEEDaRN3gsl4spanIcLln1EEE(void); 482 - void *_ZNSt3__16vectorIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE6resizeEm(void); 483 - void *_ZNSt3__16vectorIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE8__appendEm(void); 484 - void *_ZNKSt3__113__vector_baseIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE20__throw_length_errorEv(void); 485 - void *_ZNK6shazam15CPULMFPDataBase14landmarks_initclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE(void); 486 - void *_ZN6shazam12getLandmarksIL8AlgoType1EEENSt3__16vectorIjNS2_9allocatorIjEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE(void); 487 - void *_ZNSt3__16vectorIjNS_9allocatorIjEEE6resizeEm(void); 488 - void *_ZNSt3__16vectorIjNS_9allocatorIjEEE8__appendEm(void); 489 - void *_ZNK6shazam15CPULMFPDataBase11ptable_initclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE(void); 490 - void *_ZN6shazam14genPrefixTableIL8AlgoType1EEENSt3__16vectorIjNS2_9allocatorIjEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE(void); 491 - void *_ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(void); 492 - void *_ZNKSt3__113__vector_baseIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE20__throw_length_errorEv(void); 493 - void *_ZNSt3__114__split_bufferIN6shazam15CPULMFPDataBaseERNS_9allocatorIS2_EEEC2EmmS5_(void); 494 - void *_ZNSt3__146__construct_backward_with_exception_guaranteesINS_9allocatorIN6shazam15CPULMFPDataBaseEEEPS3_EEvRT_T0_S8_RS8_(void); 495 - void *_ZNSt3__114__split_bufferIN6shazam15CPULMFPDataBaseERNS_9allocatorIS2_EEED2Ev(void); 496 - void *__chkstk_darwin(void); 497 - void *__chkstk_darwin_llvm_probe(void); 498 - void *_ZN18sig_extractor_pipeI15spectral_peak_tEC2E14signature_typei17signature_options(void); 499 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE15getStreamingSigEN6shazam17signature_densityE(void); 500 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE22set_max_rolling_bufferEf(void); 501 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE14getWindowedSigEN6shazam17signature_densityE(void); 502 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE17getProgressiveSigEN6shazam17signature_densityE(void); 503 - void *_ZN18sig_extractor_pipeI15spectral_peak_tEC1E14signature_typei17signature_options(void); 504 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE20stream_flow_internalEPKfi(void); 505 - void *_ZN3gsl9make_spanIKfEENS_4spanIT_Lln1EEEPS3_NS4_10index_typeE(void); 506 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE17flow_single_frameEPKf(void); 507 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE6resizeEm(void); 508 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE11stream_flowEPKsi(void); 509 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE11stream_flowEPKfi(void); 510 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE16get_sample_countEv(void); 511 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE19get_samples_secondsEv(void); 512 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE13get_signatureERNSt3__16vectorIcNS2_9allocatorIcEEEE(void); 513 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE5resetEv(void); 514 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE19get_spectral_outputEv(void); 515 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE9flush_fftEv(void); 516 - void *_ZN12_GLOBAL__N_17get_sigERKNSt3__15dequeI15spectral_peak_tNS0_9allocatorIS2_EEEERKN6shazam14signature_infoENS8_17signature_densityEbm(void); 517 - void *_Z12window_peaksI15spectral_peak_tENSt3__15dequeIT_NS1_9allocatorIS3_EEEERS6_f(void); 518 - void *_ZN18sig_extractor_pipeI15spectral_peak_tED1Ev(void); 519 - void *_ZN18sig_extractor_pipeI15spectral_peak_tED0Ev(void); 520 - void *_ZN10fft_streamC2Ev(void); 521 - void *_ZNSt3__112__deque_baseI15spectral_peak_tNS_9allocatorIS1_EEED2Ev(void); 522 - void *_ZNSt3__112__deque_baseI15spectral_peak_tNS_9allocatorIS1_EEE5clearEv(void); 523 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEED2Ev(void); 524 - void *_ZNK3gsl4spanIKfLln1EE12make_subspanEllNS2_16subspan_selectorILln1EEE(void); 525 - void *_Z17BandSpectralPeaksINSt3__116__deque_iteratorI15spectral_peak_tPKS2_RS3_PKS4_lLl512EEENS0_6vectorINS9_IS2_NS0_9allocatorIS2_EEEENSA_ISC_EEEEET0_T_SG_N6shazam17signature_densityEmb(void); 526 - void *_Z14addPeakToBandsI15spectral_peak_tNSt3__16vectorINS2_IS0_NS1_9allocatorIS0_EEEENS3_IS5_EEEEEvRKT_RT0_(void); 527 - void *_ZNSt3__115is_sorted_untilINS_16__deque_iteratorI15spectral_peak_tPKS2_RS3_PKS4_lLl512EEENS_6__lessIS2_S2_EEEET_SB_SB_T0_(void); 528 - void *_ZNSt3__16vectorImNS_9allocatorImEEEC2EmRKm(void); 529 - void *_ZNSt3__16vectorImNS_9allocatorImEEE11__vallocateEm(void); 530 - void *_ZNKSt3__113__vector_baseImNS_9allocatorImEEE20__throw_length_errorEv(void); 531 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEC2Em(void); 532 - void *_ZNSt3__16__sortIRNS_6__lessI15spectral_peak_tS2_EEPS2_EEvT0_S6_T_(void); 533 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEC2ERKS6_(void); 534 - void *_ZN18sig_extractor_pipeI15spectral_peak_tED2Ev(void); 535 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE26__maybe_remove_front_spareEb(void); 536 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE8__appendEm(void); 537 - void *_ZN3gsl12final_actionIZN18sig_extractor_pipeI15spectral_peak_tE17getProgressiveSigEN6shazam17signature_densityEEUlvE_ED2Ev(void); 538 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE5eraseENS_16__deque_iteratorIS1_PKS1_RS6_PKS7_lLl512EEESB_(void); 539 - void *_ZNKSt3__116__deque_iteratorI15spectral_peak_tPS1_RS1_PS2_lLl512EEplEl(void); 540 - void *_ZNSt3__113move_backwardI15spectral_peak_tPS1_RS1_PS2_lLl512ES1_S2_S3_S4_lLl512EEENS_16__deque_iteratorIT5_T6_T7_T8_T9_XT10_EEENS5_IT_T0_T1_T2_T3_XT4_EEESH_SB_(void); 541 - void *_ZNSt3__14moveI15spectral_peak_tPS1_RS1_PS2_lLl512ES1_S2_S3_S4_lLl512EEENS_16__deque_iteratorIT5_T6_T7_T8_T9_XT10_EEENS5_IT_T0_T1_T2_T3_XT4_EEESH_SB_(void); 542 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE25__maybe_remove_back_spareEb(void); 543 - void *_ZNSt3__113move_backwardIP15spectral_peak_tS1_S2_RS1_PS2_lLl512EEENS_16__deque_iteratorIT0_T1_T2_T3_T4_XT5_EEET_SC_SB_PNS_9enable_ifIXsr33__is_cpp17_random_access_iteratorISC_EE5valueEvE4typeE(void); 544 - void *_ZNSt3__14moveIP15spectral_peak_tS1_S2_RS1_PS2_lLl512EEENS_16__deque_iteratorIT0_T1_T2_T3_T4_XT5_EEET_SC_SB_PNS_9enable_ifIXsr33__is_cpp17_random_access_iteratorISC_EE5valueEvE4typeE(void); 545 - void *_ZN3gsl12final_actionIZN18sig_extractor_pipeI15spectral_peak_tE14getWindowedSigEN6shazam17signature_densityEEUlvE_ED2Ev(void); 546 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEEC2ERKS4_(void); 547 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE8__appendINS_16__deque_iteratorIS1_PKS1_RS7_PKS8_lLl512EEEEEvT_SD_PNS_9enable_ifIXsr27__is_cpp17_forward_iteratorISD_EE5valueEvE4typeE(void); 548 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE19__add_back_capacityEm(void); 549 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEE9push_backEOS2_(void); 550 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEE10push_frontEOS2_(void); 551 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tRNS_9allocatorIS2_EEE9push_backEOS2_(void); 552 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tRNS_9allocatorIS2_EEE10push_frontERKS2_(void); 553 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEEC2INS_16__deque_iteratorIS1_PS1_RS1_PS7_lLl512EEEEET_SB_PNS_9enable_ifIXsr25__is_cpp17_input_iteratorISB_EE5valueEvE4typeE(void); 554 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE8__appendINS_16__deque_iteratorIS1_PS1_RS1_PS7_lLl512EEEEEvT_SB_PNS_9enable_ifIXsr27__is_cpp17_forward_iteratorISB_EE5valueEvE4typeE(void); 555 - void *_ZN3gsl9make_spanIfEENS_4spanIT_Lln1EEEPS2_NS3_10index_typeE(void); 556 - void *_Z13get_peak_bandf(void); 557 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE7reserveEm(void); 558 - void *_Z13chooseAnchorsRKNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEEEjRKN6shazam10frame_infoERS4_(void); 559 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEEC2ERKS4_(void); 560 - void *_ZN6shazam18SumoHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void); 561 - void *_ZN10fft_stream5resetEv(void); 562 - void *_ZN10fft_stream10checkpointEv(void); 563 - void *_ZN10fft_stream6rewindEv(void); 564 - void *_ZN10fft_stream11stream_flowEPKfPfPNSt3__17complexIfEE(void); 565 - void *_ZNSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev(void); 566 - void *_ZThn16_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev(void); 567 - void *_ZTv0_n24_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev(void); 568 - void *_ZNSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev(void); 569 - void *_ZThn16_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev(void); 570 - void *_ZTv0_n24_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev(void); 571 - void *_ZN6shazam3ccp26validateFirstClusterCmdPktERKN3gsl4spanIKcLln1EEE(void); 572 - void *_ZN6shazam17reinterpret_saferIPK13ClusterCmdPktLi0EEET_RKN3gsl4spanIKcLln1EEE(void); 573 - void *_ZN6shazam3ccp25validateNextClusterCmdPktERKN3gsl4spanIKcLln1EEEPK13ClusterCmdPktmm(void); 574 - void *_ZN6shazam3ccp16validateChecksumEPK13ClusterCmdPktPKcS5_(void); 575 - void *_ZN6shazam21ClusterCmdPktIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void); 576 - void *_ZN3gsl9make_spanIcEENS_4spanIT_Lln1EEEPS2_NS3_10index_typeE(void); 577 - void *_ZN6shazam15iterate_headersINS_28fp_data_header_extern_legacyEEEvN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void); 578 - void *_ZNK3gsl4spanIKcLln1EE12make_subspanEllNS2_16subspan_selectorILln1EEE(void); 579 - void *_ZN6shazam17reinterpret_saferIPKNS_28fp_data_header_extern_legacyELi0EEET_RKN3gsl4spanIKcLln1EEE(void); 580 - void *_ZN16LegacyFatSigInfoC1Ej(void); 581 - void *_ZN16LegacyFatSigInfo23set_audio_sample_lengthEy(void); 582 - void *_ZNK16LegacyFatSigInfo25get_sample_length_samplesEv(void); 583 - void *_ZNK16LegacyFatSigInfo19get_raw_sample_rateEv(void); 584 - void *_ZN16LegacyFatSigInfo14set_stream_posENSt3__16chrono8durationIyNS0_5ratioILl1ELl125EEEEE(void); 585 - void *_ZNK16LegacyFatSigInfo14get_stream_posEv(void); 586 - void *_ZN11SHAZAM_SIGXC2E14signature_typej17signature_options(void); 587 - void *_ZN11SHAZAM_SIGXC1E14signature_typej17signature_options(void); 588 - void *_ZN11SHAZAM_SIGXD1Ev(void); 589 - void *_ZN11SHAZAM_SIGX4flowEPKsi(void); 590 - void *_ZN11SHAZAM_SIGX4flowEPsii(void); 591 - void *_ZN6shazam5audio7downMixIsEEvPT_mm(void); 592 - void *_ZN11SHAZAM_SIGX4flowEPKfi(void); 593 - void *_ZN11SHAZAM_SIGX4flowEPfii(void); 594 - void *_ZN6shazam5audio7downMixIfEEvPT_mm(void); 595 - void *_ZN11SHAZAM_SIGX13get_signatureERNSt3__16vectorIcNS0_9allocatorIcEEEE(void); 596 - void *_ZN11SHAZAM_SIGX22set_max_rolling_bufferEf(void); 597 - void *_ZN11SHAZAM_SIGX5resetEv(void); 598 - void *_ZNSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEE5clearEv(void); 599 - void *_ZN6shazam15ShazamKitHeader8validateEN3gsl4spanIKcLln1EEE(void); 600 - void *_ZN6shazam17reinterpret_saferIPKNS_15ShazamKitHeaderELi0EEET_RKN3gsl4spanIKcLln1EEE(void); 601 - void *_ZN6shazam15ShazamKitHeader3popEN3gsl4spanIKcLln1EEE(void); 602 - void *_ZN6shazam11unpack_timeERNS_2io6readerE(void); 603 - void *_ZN6shazam2io14read_unalignedItLi0EEET_RNS0_6readerE(void); 604 - void *_ZN6shazam28inflate_basic_sumo_peak_dataEN3gsl4spanIKcLln1EEENS_17signature_densityENSt3__16chrono8durationIhNS5_5ratioILl1ELl125EEEEE(void); 605 - void *_ZNSt3__16vectorIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE7reserveEm(void); 606 - void *_ZN6shazam14density_filterI15spectral_peak_tElsERKS1_(void); 607 - void *_ZNSt12out_of_rangeC1EPKc(void); 608 - void *_ZNSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEED2Ev(void); 609 - void *_ZNSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE5clearEv(void); 610 - void *_ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEEC2EmmS7_(void); 611 - void *_ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEED2Ev(void); 612 - void *_ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEE17__destruct_at_endEPS4_(void); 613 - void *_ZNKSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE20__throw_length_errorEv(void); 614 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6resizeEm(void); 615 - void *_ZN6shazam9get_grainERKNSt3__16vectorIfNS0_9allocatorIfEEEES6_f(void); 616 - void *_ZN6shazam15blips_and_blopsERKNSt3__16vectorI15spectral_peak_tNS0_9allocatorIS2_EEEEi(void); 617 - void *_ZN6shazam16sonify_signatureERKNS_17basic_signature_tEj(void); 618 - void *_ZNSt3__16vectorIsNS_9allocatorIsEEEC2Em(void); 619 - void *_ZNSt3__16vectorIsNS_9allocatorIsEEE11__vallocateEm(void); 620 - void *_ZNKSt3__113__vector_baseIsNS_9allocatorIsEEE20__throw_length_errorEv(void); 621 - void *__clang_call_terminate(void); 622 - void *_ZN3gsl9make_spanIKcEENS_4spanIT_Lln1EEEPS3_NS4_10index_typeE(void); 623 - void *_ZN6shazam11make_vectorINS_15basic_signatureILNS_17signature_densityE24EEEJRKN3gsl4spanIKcLln1EEEEEEDaDpOT0_(void); 624 - void *_ZN24ConstQueryConfigProviderD1Ev(void); 625 - void *_ZNSt3__110unique_ptrIN6shazam4MMapENS_14default_deleteIS2_EEE5resetEPS2_(void); 626 - void *_ZN3gsl7details9terminateEv(void); 627 - void *_ZNSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEED2Ev(void); 628 - void *_ZNSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEE5clearEv(void); 629 - void *_ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE7reserveEm(void); 630 - void *_ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS4_RS6_EE(void); 631 - void *_ZNSt3__114__split_bufferIN6shazam15basic_signatureILNS1_17signature_densityE24EEERNS_9allocatorIS4_EEEC2EmmS7_(void); 632 - void *_ZNSt3__120__throw_length_errorEPKc(void); 633 - void *_ZNSt3__114__split_bufferIN6shazam15basic_signatureILNS1_17signature_densityE24EEERNS_9allocatorIS4_EEED2Ev(void); 634 - void *_ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE22__construct_one_at_endIJRKN3gsl4spanIKcLln1EEEEEEvDpOT_(void); 635 - void *_ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE24__emplace_back_slow_pathIJRKN3gsl4spanIKcLln1EEEEEEvDpOT_(void); 636 - void *_ZNKSt3__113__vector_baseIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE20__throw_length_errorEv(void); 637 - void *_ZNK24ConstQueryConfigProvider9getConfigEm(void); 638 - void *_ZN24ConstQueryConfigProviderD0Ev(void); 639 - void *_ZNKSt3__114default_deleteI11MREInstanceEclEPS1_(void); 640 - void *_ZNSt3__113__vector_baseIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEED2Ev(void); 641 - void *_ZN24FFT_implementation_appleC2Em(void); 642 - void *_ZN24FFT_implementation_appleC1Em(void); 643 - void *_ZN24FFT_implementation_appleD2Ev(void); 644 - void *_ZN24FFT_implementation_appleD1Ev(void); 645 - void *_ZN24FFT_implementation_appleD0Ev(void); 646 - void *_ZN24FFT_implementation_apple8magxformEPfS0_(void); 647 - void *_ZN24FFT_implementation_apple18toSHZFFT_MagnitudeEPf(void); 648 - void *_ZN24FFT_implementation_apple14magcomplexformEPfS0_PNSt3__17complexIfEE(void); 649 - void *_ZN24FFT_implementation_apple4fftrEPKfPNSt3__17complexIfEE(void); 650 - void *_ZN24FFT_implementation_apple5fftriERKN3gsl4spanINSt3__17complexIfEELln1EEENS1_IfLln1EEE(void); 124 + void *SHShazamKitClientInterface(void); 125 + void *SHShazamKitServiceInterface(void); 126 + void *SHShazamKitUIClientInterface(void); 127 + void *SHShazamKitUIServiceInterface(void); 651 128 652 129 653 - extern extern const void* ShazamKitVersionString; 654 - extern extern const void* ShazamKitVersionNumber; 655 - extern extern const void* SHSignatureMinimumSeconds; 656 - extern extern const void* SHCustomCatalogMinimumQuerySignatureDuration; 657 - extern extern const void* _ZL6_chanw; 658 - extern extern const void* _ZL19_penalty_weightings; 659 - extern extern const void* _ZTS7OSTimer; 660 - extern extern const void* _ZTS5Timer; 661 - extern extern const void* _ZN6shazamL21thresholdCurve_4bandsE; 662 - extern extern const void* _ZN6shazamL14thresholdCurveE; 663 - extern extern const void* _ZZN6shazam4algoIL8AlgoType1EE10matrix_forE12QueryDensityE5query; 664 - extern extern const void* _ZZN6shazam4algoIL8AlgoType1EE10matrix_forE9DBDensityE2db; 665 - extern extern const void* _ZTSN6shazam24StaticCPUSearcherFactoryE; 666 - extern extern const void* _ZTSN6shazam15SearcherFactoryE; 667 - extern extern const void* _ZN12_GLOBAL__N_16srkeysE; 668 - extern extern const void* _ZTSN12_GLOBAL__N_123signature_category_implE; 669 - extern extern const void* _ZL19HANNING_WINDOW_2048; 670 - extern extern const void* _ZTSNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEE; 671 - extern extern const void* _ZTSZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC1ERKNS_21packed_signature_viewEEUlNS_16signature_headerEE_; 672 - extern extern const void* _ZTSNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEE; 673 - extern extern const void* _ZTSZN6shazam15basic_signatureILNS_17signature_densityE24EEC1ERKNS_21packed_signature_viewEEUlNS_16signature_headerEE_; 674 - extern extern const void* _ZTSNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEE; 675 - extern extern const void* _ZTSZN6shazam15basic_signatureILNS_17signature_densityE16EEC1ERKNS_21packed_signature_viewEEUlNS_16signature_headerEE_; 676 - extern extern const void* decimation_3_1_tight_table; 677 - extern extern const void* decimation_2_1_loose_table; 678 - extern extern const void* decimation_2_1_tight_table; 679 - extern extern const void* polyphase_coeffs_441_320; 680 - extern extern const void* _ZTSNSt3__110__function6__baseIFvN6shazam16signature_headerEEEE; 681 - extern extern const void* _ZTSN6shazam17StaticCPUSearcherE; 682 - extern extern const void* _ZTS8Searcher; 683 - extern extern const void* _ZTSNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEEE; 684 - extern extern const void* _ZTSNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEEE; 685 - extern extern const void* _ZTSNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEEE; 686 - extern extern const void* _ZTS18sig_extractor_pipeI15spectral_peak_tE; 687 - extern extern const void* _ZTS14sigx_pipe_base; 688 - extern extern const void* _ZL15FREQ_BAND_EDGES; 689 - extern extern const void* _ZN12_GLOBAL__N_16srkeysE; 690 - extern extern const void* _ZTS24ConstQueryConfigProvider; 691 - extern extern const void* _ZTS19QueryConfigProvider; 692 - extern extern const void* _ZTSNSt3__110__function6__baseIFvRK14SearchResponseEEE; 693 - extern extern const void* _ZTS24FFT_implementation_apple; 694 - extern extern const void* _ZTS18FFT_implementation; 130 + extern void* const SHErrorDeviceToDeviceEncryptionKey; 131 + extern void* const SHErrorDiscardedAudioDurationKey; 132 + extern void* const SHErrorDomain; 133 + extern void* const SHEventSignalIdentifierMusicRecognitionHistoryActivated; 134 + extern void* const SHEventSignalIdentifierMusicRecognitionRecognitionActivated; 135 + extern void* const SHMaximumSignatureDuration; 136 + extern void* const SHMediaItemAlbumName; 137 + extern void* const SHMediaItemAppleMusicID; 138 + extern void* const SHMediaItemAppleMusicURL; 139 + extern void* const SHMediaItemArtist; 140 + extern void* const SHMediaItemArtworkURL; 141 + extern void* const SHMediaItemAudioStartDate; 142 + extern void* const SHMediaItemCreationDate; 143 + extern void* const SHMediaItemExplicitContent; 144 + extern void* const SHMediaItemFrequencySkew; 145 + extern void* const SHMediaItemFrequencySkewRanges; 146 + extern void* const SHMediaItemFrequencySkewRangesSwift; 147 + extern void* const SHMediaItemGenres; 148 + extern void* const SHMediaItemISRC; 149 + extern void* const SHMediaItemLyricsSnippet; 150 + extern void* const SHMediaItemMatchOffset; 151 + extern void* const SHMediaItemPresentationSettingOpenResultInBrowserOnFailure; 152 + extern void* const SHMediaItemQueryMatchOffsetRanges; 153 + extern void* const SHMediaItemReferenceMatchOffsetRanges; 154 + extern void* const SHMediaItemReleaseDate; 155 + extern void* const SHMediaItemShazamCount; 156 + extern void* const SHMediaItemShazamID; 157 + extern void* const SHMediaItemSpeedSkew; 158 + extern void* const SHMediaItemStaticLyricLines; 159 + extern void* const SHMediaItemSubtitle; 160 + extern void* const SHMediaItemSyncedLyricsSnippet; 161 + extern void* const SHMediaItemTimeRanges; 162 + extern void* const SHMediaItemTimeRangesSwift; 163 + extern void* const SHMediaItemTitle; 164 + extern void* const SHMediaItemVideoURL; 165 + extern void* const SHMediaItemWebURL; 166 + extern void* const SHMediaLibraryErrorDomain; 167 + extern void* const SHMediaLibrarySyncStartConditionInitialFetch; 168 + extern void* const SHMediaLibrarySyncStartConditionInitialUpload; 169 + extern void* const SHMediaLibrarySyncStartConditionMigration; 170 + extern void* const SHMediaLibrarySyncStartConditionRemotePush; 171 + extern void* const SHMediaLibrarySyncStartConditionUserAction; 172 + extern void* const SHNotificationKeySessionError; 173 + extern void* const SHNotificationKeySessionMatch; 174 + extern void* const SHNotificationKeySessionSignature; 175 + extern void* const SHNotificationNameSessionResult; 176 + extern void* const SHShazamKitServiceName; 177 + extern void* const SHShazamKitUIServiceName; 178 + extern void* const _ZTSNSt3__113basic_fstreamIcNS_11char_traitsIcEEEE; 179 + extern void* const _ZTSNSt3__117bad_function_callE; 695 180 696 181 #endif 697 182
+24
src/frameworks/ShazamKit/include/ShazamKit/SignatureAlignmentTracker.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SignatureAlignmentTracker : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SignatureAlignmentTrackerResult.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SignatureAlignmentTrackerResult : NSObject 23 + 24 + @end
+2 -1
src/frameworks/ShazamKit/include/ShazamKit/UTType+SHShazamAdditions.h
··· 18 18 */ 19 19 20 20 #include <Foundation/Foundation.h> 21 - #import <UniformTypeIdentifiers/UniformTypeIdentifiers.h> 21 + 22 + #import <UniformTypeIdentifiers/UTType.h> 22 23 23 24 @interface UTType (SHShazamAdditions) 24 25
+34
src/frameworks/ShazamKit/src/SHAudioConverter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHAudioConverter.h> 21 + 22 + @implementation SHAudioConverter 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SHCatalogConfiguration.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHCatalogConfiguration.h> 21 + 22 + @implementation SHCatalogConfiguration 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SHContinuityTracker.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHContinuityTracker.h> 21 + 22 + @implementation SHContinuityTracker 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SHContinuityTrackerResult.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHContinuityTrackerResult.h> 21 + 22 + @implementation SHContinuityTrackerResult 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SHCustomCatalogConfiguration.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHCustomCatalogConfiguration.h> 21 + 22 + @implementation SHCustomCatalogConfiguration 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SHCustomCatalogMatcherResultBuilder.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHCustomCatalogMatcherResultBuilder.h> 21 + 22 + @implementation SHCustomCatalogMatcherResultBuilder 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SHCustomCatalogTracker.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHCustomCatalogTracker.h> 21 + 22 + @implementation SHCustomCatalogTracker 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SHManagedSessionDriver.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHManagedSessionDriver.h> 21 + 22 + @implementation SHManagedSessionDriver 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SHManagedSessionDriverDaemonDelegate.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHManagedSessionDriverDaemonDelegate.h> 21 + 22 + @implementation SHManagedSessionDriverDaemonDelegate 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+2 -2
src/frameworks/ShazamKit/src/SHManagedShazamCatalog.m src/frameworks/ShazamKit/src/SHSignatureChunker.m
··· 17 17 along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 18 */ 19 19 20 - #import <ShazamKit/SHManagedShazamCatalog.h> 20 + #import <ShazamKit/SHSignatureChunker.h> 21 21 22 - @implementation SHManagedShazamCatalog 22 + @implementation SHSignatureChunker 23 23 24 24 - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 25 {
+34
src/frameworks/ShazamKit/src/SHMediaItemPresentationSettings.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHMediaItemPresentationSettings.h> 21 + 22 + @implementation SHMediaItemPresentationSettings 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+2 -2
src/frameworks/ShazamKit/src/SHMediaLibraryContext.m src/frameworks/ShazamKit/src/SHMediaLibraryRequest.m
··· 17 17 along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 18 */ 19 19 20 - #import <ShazamKit/SHMediaLibraryContext.h> 20 + #import <ShazamKit/SHMediaLibraryRequest.h> 21 21 22 - @implementation SHMediaLibraryContext 22 + @implementation SHMediaLibraryRequest 23 23 24 24 - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 25 {
+34
src/frameworks/ShazamKit/src/SHShazamKitServiceConnectionClient.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SHShazamKitServiceConnectionClient.h> 21 + 22 + @implementation SHShazamKitServiceConnectionClient 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+63 -2734
src/frameworks/ShazamKit/src/ShazamKit.m
··· 22 22 #include <stdlib.h> 23 23 #include <stdio.h> 24 24 25 + static int verbose = 0; 25 26 __attribute__((constructor)) 26 27 static void initme(void) { 27 28 verbose = getenv("STUB_VERBOSE") != NULL; 28 29 } 29 30 30 31 31 - extern const void* ShazamKitVersionString = (void*)0; 32 - extern const void* ShazamKitVersionNumber = (void*)0; 33 - extern const void* SHSignatureMinimumSeconds = (void*)0; 34 - extern const void* SHCustomCatalogMinimumQuerySignatureDuration = (void*)0; 35 - extern const void* _ZL6_chanw = (void*)0; 36 - extern const void* _ZL19_penalty_weightings = (void*)0; 37 - extern const void* _ZTS7OSTimer = (void*)0; 38 - extern const void* _ZTS5Timer = (void*)0; 39 - extern const void* _ZN6shazamL21thresholdCurve_4bandsE = (void*)0; 40 - extern const void* _ZN6shazamL14thresholdCurveE = (void*)0; 41 - extern const void* _ZZN6shazam4algoIL8AlgoType1EE10matrix_forE12QueryDensityE5query = (void*)0; 42 - extern const void* _ZZN6shazam4algoIL8AlgoType1EE10matrix_forE9DBDensityE2db = (void*)0; 43 - extern const void* _ZTSN6shazam24StaticCPUSearcherFactoryE = (void*)0; 44 - extern const void* _ZTSN6shazam15SearcherFactoryE = (void*)0; 45 - extern const void* _ZN12_GLOBAL__N_16srkeysE = (void*)0; 46 - extern const void* _ZTSN12_GLOBAL__N_123signature_category_implE = (void*)0; 47 - extern const void* _ZL19HANNING_WINDOW_2048 = (void*)0; 48 - extern const void* _ZTSNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEE = (void*)0; 49 - extern const void* _ZTSZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC1ERKNS_21packed_signature_viewEEUlNS_16signature_headerEE_ = (void*)0; 50 - extern const void* _ZTSNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEE = (void*)0; 51 - extern const void* _ZTSZN6shazam15basic_signatureILNS_17signature_densityE24EEC1ERKNS_21packed_signature_viewEEUlNS_16signature_headerEE_ = (void*)0; 52 - extern const void* _ZTSNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEE = (void*)0; 53 - extern const void* _ZTSZN6shazam15basic_signatureILNS_17signature_densityE16EEC1ERKNS_21packed_signature_viewEEUlNS_16signature_headerEE_ = (void*)0; 54 - extern const void* decimation_3_1_tight_table = (void*)0; 55 - extern const void* decimation_2_1_loose_table = (void*)0; 56 - extern const void* decimation_2_1_tight_table = (void*)0; 57 - extern const void* polyphase_coeffs_441_320 = (void*)0; 58 - extern const void* _ZTSNSt3__110__function6__baseIFvN6shazam16signature_headerEEEE = (void*)0; 59 - extern const void* _ZTSN6shazam17StaticCPUSearcherE = (void*)0; 60 - extern const void* _ZTS8Searcher = (void*)0; 61 - extern const void* _ZTSNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEEE = (void*)0; 62 - extern const void* _ZTSNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEEE = (void*)0; 63 - extern const void* _ZTSNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEEE = (void*)0; 64 - extern const void* _ZTS18sig_extractor_pipeI15spectral_peak_tE = (void*)0; 65 - extern const void* _ZTS14sigx_pipe_base = (void*)0; 66 - extern const void* _ZL15FREQ_BAND_EDGES = (void*)0; 67 - extern const void* _ZN12_GLOBAL__N_16srkeysE = (void*)0; 68 - extern const void* _ZTS24ConstQueryConfigProvider = (void*)0; 69 - extern const void* _ZTS19QueryConfigProvider = (void*)0; 70 - extern const void* _ZTSNSt3__110__function6__baseIFvRK14SearchResponseEEE = (void*)0; 71 - extern const void* _ZTS24FFT_implementation_apple = (void*)0; 72 - extern const void* _ZTS18FFT_implementation = (void*)0; 73 - 74 - void *_ZN6shazam10fit_pointsERKNS_16CPUOnePtDatabaseERKNSt3__16vectorI7peak_tfNS3_9allocatorIS5_EEEERK9SkewRangeyfRfRNS3_6chrono8durationIdNS3_5ratioILl1ELl125EEEEERNS4_INS_7tfmatchENS6_ISL_EEEE(void) { 75 - if (verbose) puts("STUB: _ZN6shazam10fit_pointsERKNS_16CPUOnePtDatabaseERKNSt3__16vectorI7peak_tfNS3_9allocatorIS5_EEEERK9SkewRangeyfRfRNS3_6chrono8durationIdNS3_5ratioILl1ELl125EEEEERNS4_INS_7tfmatchENS6_ISL_EEEE called"); 76 - return NULL; 77 - ) 78 - 79 - void *_ZN6shazam7regressIKNS_7tfmatchENS_8extractXIS2_EENS_8extractYIS2_EEEENSt3__18optionalINS_12regress_lineEEERKN3gsl4spanIT_Lln1EEET0_T1_(void) { 80 - if (verbose) puts("STUB: _ZN6shazam7regressIKNS_7tfmatchENS_8extractXIS2_EENS_8extractYIS2_EEEENSt3__18optionalINS_12regress_lineEEERKN3gsl4spanIT_Lln1EEET0_T1_ called"); 81 - return NULL; 82 - ) 83 - 84 - void *_ZN3gsl4spanIKN6shazam7tfmatchELln1EEC1INSt3__16vectorIS2_NS6_9allocatorIS2_EEEEvEERKT_(void) { 85 - if (verbose) puts("STUB: _ZN3gsl4spanIKN6shazam7tfmatchELln1EEC1INSt3__16vectorIS2_NS6_9allocatorIS2_EEEEvEERKT_ called"); 86 - return NULL; 87 - ) 88 - 89 - void *_ZN3gsl4spanIKN6shazam7tfmatchELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS3_T_(void) { 90 - if (verbose) puts("STUB: _ZN3gsl4spanIKN6shazam7tfmatchELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS3_T_ called"); 91 - return NULL; 92 - ) 93 - 94 - void *_Z11crc32_checkjPKcm(void) { 95 - if (verbose) puts("STUB: _Z11crc32_checkjPKcm called"); 96 - return NULL; 97 - ) 98 - 99 - void *_Z8checksumPKvm(void) { 100 - if (verbose) puts("STUB: _Z8checksumPKvm called"); 101 - return NULL; 102 - ) 103 - 104 - void *_ZN6shazam24get_spect_peak_log_scaleEv(void) { 105 - if (verbose) puts("STUB: _ZN6shazam24get_spect_peak_log_scaleEv called"); 106 - return NULL; 107 - ) 108 - 109 - void *_ZN6shazam25get_spect_peak_log_offsetEv(void) { 110 - if (verbose) puts("STUB: _ZN6shazam25get_spect_peak_log_offsetEv called"); 111 - return NULL; 112 - ) 113 - 114 - void *_Z11InterpolateR15spectral_peak_tjPKf(void) { 115 - if (verbose) puts("STUB: _Z11InterpolateR15spectral_peak_tjPKf called"); 116 - return NULL; 117 - ) 118 - 119 - void *_ZN15spectral_peak_tC1ENSt3__16chrono8durationIjNS0_5ratioILl1ELl125EEEEEjPKf(void) { 120 - if (verbose) puts("STUB: _ZN15spectral_peak_tC1ENSt3__16chrono8durationIjNS0_5ratioILl1ELl125EEEEEjPKf called"); 121 - return NULL; 122 - ) 123 - 124 - void *_ZN6shazam23ShazamKitHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void) { 125 - if (verbose) puts("STUB: _ZN6shazam23ShazamKitHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE called"); 126 - return NULL; 127 - ) 128 - 129 - void *_ZN6shazam11score_matchERKNSt3__16vectorINS_7tfmatchENS0_9allocatorIS2_EEEE(void) { 130 - if (verbose) puts("STUB: _ZN6shazam11score_matchERKNSt3__16vectorINS_7tfmatchENS0_9allocatorIS2_EEEE called"); 131 - return NULL; 132 - ) 133 - 134 - void *_ZNK7OSTimer3nowEv(void) { 135 - if (verbose) puts("STUB: _ZNK7OSTimer3nowEv called"); 136 - return NULL; 137 - ) 138 - 139 - void *_ZNK7OSTimer8durationENSt3__16chrono10time_pointINS1_12steady_clockENS1_8durationIxNS0_5ratioILl1ELl1000000000EEEEEEES8_(void) { 140 - if (verbose) puts("STUB: _ZNK7OSTimer8durationENSt3__16chrono10time_pointINS1_12steady_clockENS1_8durationIxNS0_5ratioILl1ELl1000000000EEEEEEES8_ called"); 141 - return NULL; 142 - ) 143 - 144 - void *_ZN6shazam12get_os_timerEv(void) { 145 - if (verbose) puts("STUB: _ZN6shazam12get_os_timerEv called"); 146 - return NULL; 147 - ) 148 - 149 - void *_ZN7OSTimerD1Ev(void) { 150 - if (verbose) puts("STUB: _ZN7OSTimerD1Ev called"); 151 - return NULL; 152 - ) 153 - 154 - void *_ZN7OSTimerD0Ev(void) { 155 - if (verbose) puts("STUB: _ZN7OSTimerD0Ev called"); 156 - return NULL; 157 - ) 158 - 159 - void *_ZN6shazam23spectral_peak_compact_t10set_deltaTENSt3__16chrono8durationIjNS1_5ratioILl1ELl125EEEEES6_(void) { 160 - if (verbose) puts("STUB: _ZN6shazam23spectral_peak_compact_t10set_deltaTENSt3__16chrono8durationIjNS1_5ratioILl1ELl125EEEEES6_ called"); 161 - return NULL; 162 - ) 163 - 164 - void *_ZN6shazam23spectral_peak_compact_t13convert_arrayEPK15spectral_peak_tm(void) { 165 - if (verbose) puts("STUB: _ZN6shazam23spectral_peak_compact_t13convert_arrayEPK15spectral_peak_tm called"); 166 - return NULL; 167 - ) 168 - 169 - void *_ZNSt3__16vectorIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE7reserveEm(void) { 170 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE7reserveEm called"); 171 - return NULL; 172 - ) 173 - 174 - void *_ZNSt3__114__split_bufferIN6shazam23spectral_peak_compact_tERNS_9allocatorIS2_EEEC2EmmS5_(void) { 175 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam23spectral_peak_compact_tERNS_9allocatorIS2_EEEC2EmmS5_ called"); 176 - return NULL; 177 - ) 178 - 179 - void *_ZNSt3__16vectorIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_(void) { 180 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE21__push_back_slow_pathIRKS2_EEvOT_ called"); 181 - return NULL; 182 - ) 183 - 184 - void *_ZNKSt3__113__vector_baseIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 185 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam23spectral_peak_compact_tENS_9allocatorIS2_EEE20__throw_length_errorEv called"); 186 - return NULL; 187 - ) 188 - 189 - void *_ZN6shazam14signature_infoC2EPK15legacy_sig_info(void) { 190 - if (verbose) puts("STUB: _ZN6shazam14signature_infoC2EPK15legacy_sig_info called"); 191 - return NULL; 192 - ) 193 - 194 - void *_ZN6shazam14signature_infoC1EPK15legacy_sig_info(void) { 195 - if (verbose) puts("STUB: _ZN6shazam14signature_infoC1EPK15legacy_sig_info called"); 196 - return NULL; 197 - ) 198 - 199 - void *_ZN6shazam14signature_infoC2EPK16LegacyFatSigInfo(void) { 200 - if (verbose) puts("STUB: _ZN6shazam14signature_infoC2EPK16LegacyFatSigInfo called"); 201 - return NULL; 202 - ) 203 - 204 - void *_ZN6shazam14signature_infoC1EPK16LegacyFatSigInfo(void) { 205 - if (verbose) puts("STUB: _ZN6shazam14signature_infoC1EPK16LegacyFatSigInfo called"); 206 - return NULL; 207 - ) 208 - 209 - void *_ZN6shazam14signature_infoC2EPK11SumoSigInfo(void) { 210 - if (verbose) puts("STUB: _ZN6shazam14signature_infoC2EPK11SumoSigInfo called"); 211 - return NULL; 212 - ) 213 - 214 - void *_ZN6shazam14signature_infoC1EPK11SumoSigInfo(void) { 215 - if (verbose) puts("STUB: _ZN6shazam14signature_infoC1EPK11SumoSigInfo called"); 216 - return NULL; 217 - ) 218 - 219 - void *_ZN15resample_streamC2Ej(void) { 220 - if (verbose) puts("STUB: _ZN15resample_streamC2Ej called"); 221 - return NULL; 222 - ) 223 - 224 - void *_ZN15resample_stream14push_3_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void) { 225 - if (verbose) puts("STUB: _ZN15resample_stream14push_3_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE called"); 226 - return NULL; 227 - ) 228 - 229 - void *_ZN15resample_stream19push_44100_to_16000EPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void) { 230 - if (verbose) puts("STUB: _ZN15resample_stream19push_44100_to_16000EPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE called"); 231 - return NULL; 232 - ) 233 - 234 - void *_ZN15resample_stream14push_2_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void) { 235 - if (verbose) puts("STUB: _ZN15resample_stream14push_2_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE called"); 236 - return NULL; 237 - ) 238 - 239 - void *_ZN15resample_stream14push_1_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void) { 240 - if (verbose) puts("STUB: _ZN15resample_stream14push_1_1_tightEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE called"); 241 - return NULL; 242 - ) 243 - 244 - void *_ZN15resample_streamC1Ej(void) { 245 - if (verbose) puts("STUB: _ZN15resample_streamC1Ej called"); 246 - return NULL; 247 - ) 248 - 249 - void *_ZN15resample_stream5resetEv(void) { 250 - if (verbose) puts("STUB: _ZN15resample_stream5resetEv called"); 251 - return NULL; 252 - ) 253 - 254 - void *_ZN15resample_stream11stream_flowEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE(void) { 255 - if (verbose) puts("STUB: _ZN15resample_stream11stream_flowEPKfiRNSt3__16vectorIfNS2_9allocatorIfEEEE called"); 256 - return NULL; 257 - ) 258 - 259 - void *_ZN15resample_stream17sample_rate_checkEj(void) { 260 - if (verbose) puts("STUB: _ZN15resample_stream17sample_rate_checkEj called"); 261 - return NULL; 262 - ) 263 - 264 - void *_ZN15resample_stream21push_441_to_320_tightEfRNSt3__16vectorIfNS0_9allocatorIfEEEE(void) { 265 - if (verbose) puts("STUB: _ZN15resample_stream21push_441_to_320_tightEfRNSt3__16vectorIfNS0_9allocatorIfEEEE called"); 266 - return NULL; 267 - ) 268 - 269 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE6insertIPKfEENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS8_E9referenceEEE5valueENS_11__wrap_iterIPfEEE4typeENSC_IS6_EES8_S8_(void) { 270 - if (verbose) puts("STUB: _ZNSt3__16vectorIfNS_9allocatorIfEEE6insertIPKfEENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIfNS_15iterator_traitsIS8_E9referenceEEE5valueENS_11__wrap_iterIPfEEE4typeENSC_IS6_EES8_S8_ called"); 271 - return NULL; 272 - ) 273 - 274 - void *_ZNK15resample_stream24get_samples_for_fft_stepEv(void) { 275 - if (verbose) puts("STUB: _ZNK15resample_stream24get_samples_for_fft_stepEv called"); 276 - return NULL; 277 - ) 278 - 279 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE26__swap_out_circular_bufferERNS_14__split_bufferIfRS2_EEPf(void) { 280 - if (verbose) puts("STUB: _ZNSt3__16vectorIfNS_9allocatorIfEEE26__swap_out_circular_bufferERNS_14__split_bufferIfRS2_EEPf called"); 281 - return NULL; 282 - ) 283 - 284 - void *_ZN6shazam11CPUSearcherC2ERK5Timermmb(void) { 285 - if (verbose) puts("STUB: _ZN6shazam11CPUSearcherC2ERK5Timermmb called"); 286 - return NULL; 287 - ) 288 - 289 - void *_ZN6shazam13virtual_arrayIcE6resizeEm(void) { 290 - if (verbose) puts("STUB: _ZN6shazam13virtual_arrayIcE6resizeEm called"); 291 - return NULL; 292 - ) 293 - 294 - void *_ZN6shazam11CPUSearcherC1ERK5Timermmb(void) { 295 - if (verbose) puts("STUB: _ZN6shazam11CPUSearcherC1ERK5Timermmb called"); 296 - return NULL; 297 - ) 298 - 299 - void *_ZN6shazam11CPUSearcher6searchERKNS_12CPUDatabasesERKNSt3__16vectorINS_15basic_signatureILNS_17signature_densityE24EEENS4_9allocatorIS8_EEEEmmRK19QueryConfigProviderRKNS4_8functionIFvRK14SearchResponseEEE(void) { 300 - if (verbose) puts("STUB: _ZN6shazam11CPUSearcher6searchERKNS_12CPUDatabasesERKNSt3__16vectorINS_15basic_signatureILNS_17signature_densityE24EEENS4_9allocatorIS8_EEEEmmRK19QueryConfigProviderRKNS4_8functionIFvRK14SearchResponseEEE called"); 301 - return NULL; 302 - ) 303 - 304 - void *_Z5visitIRN6shazam11CPUSearcherEJRNS0_12SongDataBaseERNS0_16CPUOnePtDatabaseERNS0_15CPULMFPDataBaseERKNS0_15basic_signatureILNS0_17signature_densityE24EEERK11QueryConfigRmRKNSt3__16chrono10time_pointINSJ_12steady_clockENSJ_8durationIxNSI_5ratioILl1ELl1000000000EEEEEEERKNSI_8functionIFvRK14SearchResponseEEEEEDa8AlgoTypeOT_DpOT0_(void) { 305 - if (verbose) puts("STUB: _Z5visitIRN6shazam11CPUSearcherEJRNS0_12SongDataBaseERNS0_16CPUOnePtDatabaseERNS0_15CPULMFPDataBaseERKNS0_15basic_signatureILNS0_17signature_densityE24EEERK11QueryConfigRmRKNSt3__16chrono10time_pointINSJ_12steady_clockENSJ_8durationIxNSI_5ratioILl1ELl1000000000EEEEEEERKNSI_8functionIFvRK14SearchResponseEEEEEDa8AlgoTypeOT_DpOT0_ called"); 306 - return NULL; 307 - ) 308 - 309 - void *_ZNSt3__110shared_ptrINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEEED2Ev(void) { 310 - if (verbose) puts("STUB: _ZNSt3__110shared_ptrINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEEED2Ev called"); 311 - return NULL; 312 - ) 313 - 314 - void *_ZNSt3__110shared_ptrIN6shazam16CPUOnePtDatabaseEED2Ev(void) { 315 - if (verbose) puts("STUB: _ZNSt3__110shared_ptrIN6shazam16CPUOnePtDatabaseEED2Ev called"); 316 - return NULL; 317 - ) 318 - 319 - void *_ZNSt3__110shared_ptrIN6shazam12SongDataBaseEED2Ev(void) { 320 - if (verbose) puts("STUB: _ZNSt3__110shared_ptrIN6shazam12SongDataBaseEED2Ev called"); 321 - return NULL; 322 - ) 323 - 324 - void *_ZN6shazam11CPUSearcherclIL8AlgoType1EEEvRKNS_12SongDataBaseERKNS_16CPUOnePtDatabaseERKNS_15CPULMFPDataBaseERKNS_15basic_signatureILNS_17signature_densityE24EEERK11QueryConfigmNSt3__16chrono10time_pointINSL_12steady_clockENSL_8durationIxNSK_5ratioILl1ELl1000000000EEEEEEERKNSK_8functionIFvRK14SearchResponseEEE(void) { 325 - if (verbose) puts("STUB: _ZN6shazam11CPUSearcherclIL8AlgoType1EEEvRKNS_12SongDataBaseERKNS_16CPUOnePtDatabaseERKNS_15CPULMFPDataBaseERKNS_15basic_signatureILNS_17signature_densityE24EEERK11QueryConfigmNSt3__16chrono10time_pointINSL_12steady_clockENSL_8durationIxNSK_5ratioILl1ELl1000000000EEEEEEERKNSK_8functionIFvRK14SearchResponseEEE called"); 326 - return NULL; 327 - ) 328 - 329 - void *_ZN6shazam10make_queryIL8AlgoType1EEENS_5QueryIXT_ENSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENS3_9allocatorIS6_EEEEEERKNS_6linkerIXT_EEERKNS_15basic_signatureILNS_17signature_densityE24EEERK11QueryConfigm(void) { 330 - if (verbose) puts("STUB: _ZN6shazam10make_queryIL8AlgoType1EEENS_5QueryIXT_ENSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENS3_9allocatorIS6_EEEEEERKNS_6linkerIXT_EEERKNS_15basic_signatureILNS_17signature_densityE24EEERK11QueryConfigm called"); 331 - return NULL; 332 - ) 333 - 334 - void *_ZN6shazam11CPUSearcher6searchIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEEEEvRKNS_12SongDataBaseERKNS_16CPUOnePtDatabaseERKNS_15CPULMFPDataBaseERKNS_5QueryIXT_ENSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENSG_9allocatorISJ_EEEEEERK11QueryConfigmNSG_6chrono10time_pointINST_12steady_clockENST_8durationIxNSG_5ratioILl1ELl1000000000EEEEEEERKNSG_8functionIFvRK14SearchResponseEEE(void) { 335 - if (verbose) puts("STUB: _ZN6shazam11CPUSearcher6searchIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEEEEvRKNS_12SongDataBaseERKNS_16CPUOnePtDatabaseERKNS_15CPULMFPDataBaseERKNS_5QueryIXT_ENSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENSG_9allocatorISJ_EEEEEERK11QueryConfigmNSG_6chrono10time_pointINST_12steady_clockENST_8durationIxNSG_5ratioILl1ELl1000000000EEEEEEERKNSG_8functionIFvRK14SearchResponseEEE called"); 336 - return NULL; 337 - ) 338 - 339 - void *_ZN6shazam10matrix_forIL8AlgoType1EEENS_12query_matrixINS_4algoIXT_EE11matrix_typeEEENSt3__16chrono8durationIfNS7_5ratioILl1ELl1EEEEERK11QueryConfig(void) { 340 - if (verbose) puts("STUB: _ZN6shazam10matrix_forIL8AlgoType1EEENS_12query_matrixINS_4algoIXT_EE11matrix_typeEEENSt3__16chrono8durationIfNS7_5ratioILl1ELl1EEEEERK11QueryConfig called"); 341 - return NULL; 342 - ) 343 - 344 - void *_ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE7reserveEm(void) { 345 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE7reserveEm called"); 346 - return NULL; 347 - ) 348 - 349 - void *_ZN6shazam6kvsortINSt3__16vectorINS_4lmfpILNS_7fp_typeE0EEENS1_9allocatorIS5_EEEEEEvRT_SA_(void) { 350 - if (verbose) puts("STUB: _ZN6shazam6kvsortINSt3__16vectorINS_4lmfpILNS_7fp_typeE0EEENS1_9allocatorIS5_EEEEEEvRT_SA_ called"); 351 - return NULL; 352 - ) 353 - 354 - void *_ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEEC2Em(void) { 355 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEEC2Em called"); 356 - return NULL; 357 - ) 358 - 359 - void *_ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE11__vallocateEm(void) { 360 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE11__vallocateEm called"); 361 - return NULL; 362 - ) 363 - 364 - void *_ZN6shazam5QueryIL8AlgoType1ENSt3__16vectorINS_4lmfpILNS_7fp_typeE0EEENS2_9allocatorIS6_EEEEEC2ERKNS_15basic_signatureILNS_17signature_densityE24EEERK9SkewRangeOS9_(void) { 365 - if (verbose) puts("STUB: _ZN6shazam5QueryIL8AlgoType1ENSt3__16vectorINS_4lmfpILNS_7fp_typeE0EEENS2_9allocatorIS6_EEEEEC2ERKNS_15basic_signatureILNS_17signature_densityE24EEERK9SkewRangeOS9_ called"); 366 - return NULL; 367 - ) 368 - 369 - void *_ZN6shazam19search_fingerprintsIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEEEEN3gsl4spanIT0_Lln1EEENS6_IKNS_9fp_suffixIXT_EEELln1EEERKNSt3__16vectorIjNSD_9allocatorIjEEEENS6_IKNS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEESJ_ffS8_(void) { 370 - if (verbose) puts("STUB: _ZN6shazam19search_fingerprintsIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEEEEN3gsl4spanIT0_Lln1EEENS6_IKNS_9fp_suffixIXT_EEELln1EEERKNSt3__16vectorIjNSD_9allocatorIjEEEENS6_IKNS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEESJ_ffS8_ called"); 371 - return NULL; 372 - ) 373 - 374 - void *_Z25recast_varray_as_gsl_spanI11xpair_groupIJ12xpair_fieldsEEcEN3gsl4spanIT_Lln1EEERN6shazam13virtual_arrayIT0_EE(void) { 375 - if (verbose) puts("STUB: _Z25recast_varray_as_gsl_spanI11xpair_groupIJ12xpair_fieldsEEcEN3gsl4spanIT_Lln1EEERN6shazam13virtual_arrayIT0_EE called"); 376 - return NULL; 377 - ) 378 - 379 - void *_ZN6shazam9xpairsortI11xpair_groupIJ12xpair_fieldsEEEEvRN3gsl4spanIT_Lln1EEES8_(void) { 380 - if (verbose) puts("STUB: _ZN6shazam9xpairsortI11xpair_groupIJ12xpair_fieldsEEEEvRN3gsl4spanIT_Lln1EEES8_ called"); 381 - return NULL; 382 - ) 383 - 384 - void *_ZN6shazam10bin_tracksI11xpair_groupIJ12xpair_fieldsEEEEvRKN3gsl4spanIKjLln1EEERNS5_IT_Lln1EEERNSt3__16vectorINS_10SongOffsetENSD_9allocatorISF_EEEE(void) { 385 - if (verbose) puts("STUB: _ZN6shazam10bin_tracksI11xpair_groupIJ12xpair_fieldsEEEEvRKN3gsl4spanIKjLln1EEERNS5_IT_Lln1EEERNSt3__16vectorINS_10SongOffsetENSD_9allocatorISF_EEEE called"); 386 - return NULL; 387 - ) 388 - 389 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE6resizeEm(void) { 390 - if (verbose) puts("STUB: _ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE6resizeEm called"); 391 - return NULL; 392 - ) 393 - 394 - void *_ZNK6shazam10QueryRangeILNS_7fp_typeE0EE25ConstructFingerprintRangeERKNS_4lmfpILS1_0EEE(void) { 395 - if (verbose) puts("STUB: _ZNK6shazam10QueryRangeILNS_7fp_typeE0EE25ConstructFingerprintRangeERKNS_4lmfpILS1_0EEE called"); 396 - return NULL; 397 - ) 398 - 399 - void *_ZN6shazam25binary_fingerprint_searchIL8AlgoType1EEElN3gsl4spanIKNS_9fp_suffixIXT_EEELln1EEEllmRS6_(void) { 400 - if (verbose) puts("STUB: _ZN6shazam25binary_fingerprint_searchIL8AlgoType1EEElN3gsl4spanIKNS_9fp_suffixIXT_EEELln1EEEllmRS6_ called"); 401 - return NULL; 402 - ) 403 - 404 - void *_ZNK3gsl4spanI11xpair_groupIJ12xpair_fieldsEELln1EE12make_subspanEllNS4_16subspan_selectorILln1EEE(void) { 405 - if (verbose) puts("STUB: _ZNK3gsl4spanI11xpair_groupIJ12xpair_fieldsEELln1EE12make_subspanEllNS4_16subspan_selectorILln1EEE called"); 406 - return NULL; 407 - ) 408 - 409 - void *_ZN3gsl4spanIKN6shazam4lmfpILNS1_7fp_typeE0EEELln1EEC1INSt3__16vectorIS4_NS8_9allocatorIS4_EEEEvEERKT_(void) { 410 - if (verbose) puts("STUB: _ZN3gsl4spanIKN6shazam4lmfpILNS1_7fp_typeE0EEELln1EEC1INSt3__16vectorIS4_NS8_9allocatorIS4_EEEEvEERKT_ called"); 411 - return NULL; 412 - ) 413 - 414 - void *_ZN3gsl4spanIKN6shazam4lmfpILNS1_7fp_typeE0EEELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS5_T_(void) { 415 - if (verbose) puts("STUB: _ZN3gsl4spanIKN6shazam4lmfpILNS1_7fp_typeE0EEELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS5_T_ called"); 416 - return NULL; 417 - ) 418 - 419 - void *_ZN3gsl4spanIKjLln1EEC1INSt3__16vectorIjNS4_9allocatorIjEEEEvEERKT_(void) { 420 - if (verbose) puts("STUB: _ZN3gsl4spanIKjLln1EEC1INSt3__16vectorIjNS4_9allocatorIjEEEEvEERKT_ called"); 421 - return NULL; 422 - ) 423 - 424 - void *_ZN3gsl4spanIKjLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS1_T_(void) { 425 - if (verbose) puts("STUB: _ZN3gsl4spanIKjLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS1_T_ called"); 426 - return NULL; 427 - ) 428 - 429 - void *_ZNSt3__16vectorIN6shazam10SongOffsetENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJmmEEEvDpOT_(void) { 430 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam10SongOffsetENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJmmEEEvDpOT_ called"); 431 - return NULL; 432 - ) 433 - 434 - void *_ZNKSt3__113__vector_baseIN6shazam10SongOffsetENS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 435 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam10SongOffsetENS_9allocatorIS2_EEE20__throw_length_errorEv called"); 436 - return NULL; 437 - ) 438 - 439 - void *_ZNSt3__114__split_bufferIN6shazam10SongOffsetERNS_9allocatorIS2_EEEC2EmmS5_(void) { 440 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam10SongOffsetERNS_9allocatorIS2_EEEC2EmmS5_ called"); 441 - return NULL; 442 - ) 443 - 444 - void *_ZN6shazam10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNS6_9allocatorIS8_EEEES8_RNS7_INS_11regresspairENS9_ISD_EEEERKN3gsl4spanIT0_Lln1EEE(void) { 445 - if (verbose) puts("STUB: _ZN6shazam10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNS6_9allocatorIS8_EEEES8_RNS7_INS_11regresspairENS9_ISD_EEEERKN3gsl4spanIT0_Lln1EEE called"); 446 - return NULL; 447 - ) 448 - 449 - void *_Z14fdelta_compareI11xpair_groupIJ12xpair_fieldsEEEbRKT_S5_(void) { 450 - if (verbose) puts("STUB: _Z14fdelta_compareI11xpair_groupIJ12xpair_fieldsEEEbRKT_S5_ called"); 451 - return NULL; 452 - ) 453 - 454 - void *_ZNSt3__16__sortIRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEvT0_SF_T_(void) { 455 - if (verbose) puts("STUB: _ZNSt3__16__sortIRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEvT0_SF_T_ called"); 456 - return NULL; 457 - ) 458 - 459 - void *_ZNSt3__17__sort3IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_T_(void) { 460 - if (verbose) puts("STUB: _ZNSt3__17__sort3IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_T_ called"); 461 - return NULL; 462 - ) 463 - 464 - void *_ZNSt3__17__sort4IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_SF_T_(void) { 465 - if (verbose) puts("STUB: _ZNSt3__17__sort4IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_SF_T_ called"); 466 - return NULL; 467 - ) 468 - 469 - void *_ZNSt3__17__sort5IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_SF_SF_T_(void) { 470 - if (verbose) puts("STUB: _ZNSt3__17__sort5IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEjT0_SF_SF_SF_SF_T_ called"); 471 - return NULL; 472 - ) 473 - 474 - void *_ZNSt3__118__insertion_sort_3IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEvT0_SF_T_(void) { 475 - if (verbose) puts("STUB: _ZNSt3__118__insertion_sort_3IRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEvT0_SF_T_ called"); 476 - return NULL; 477 - ) 478 - 479 - void *_ZNSt3__127__insertion_sort_incompleteIRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEbT0_SF_T_(void) { 480 - if (verbose) puts("STUB: _ZNSt3__127__insertion_sort_incompleteIRPDoFbRK11xpair_groupIJ12xpair_fieldsEES5_EN3gsl7details13span_iteratorINS9_4spanIS3_Lln1EEELb0EEEEEbT0_SF_T_ called"); 481 - return NULL; 482 - ) 483 - 484 - void *_ZZN6shazam10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNS6_9allocatorIS8_EEEES8_RNS7_INS_11regresspairENS9_ISD_EEEERKN3gsl4spanIT0_Lln1EEEENKUlT_E_clINSI_IS4_Lln1EEEEEDaSN_(void) { 485 - if (verbose) puts("STUB: _ZZN6shazam10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNS6_9allocatorIS8_EEEES8_RNS7_INS_11regresspairENS9_ISD_EEEERKN3gsl4spanIT0_Lln1EEEENKUlT_E_clINSI_IS4_Lln1EEEEEDaSN_ called"); 486 - return NULL; 487 - ) 488 - 489 - void *_ZN6shazam11shearfactorIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELPv0EEEvRKN3gsl4spanIT0_Lln1EEERfSC_(void) { 490 - if (verbose) puts("STUB: _ZN6shazam11shearfactorIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELPv0EEEvRKN3gsl4spanIT0_Lln1EEERfSC_ called"); 491 - return NULL; 492 - ) 493 - 494 - void *_ZN6shazam22xpairs_to_regresspairsI11xpair_groupIJ12xpair_fieldsEEEEvN3gsl4spanIT_Lln1EEEfRNSt3__16vectorINS_11regresspairENS8_9allocatorISA_EEEE(void) { 495 - if (verbose) puts("STUB: _ZN6shazam22xpairs_to_regresspairsI11xpair_groupIJ12xpair_fieldsEEEEvN3gsl4spanIT_Lln1EEEfRNSt3__16vectorINS_11regresspairENS8_9allocatorISA_EEEE called"); 496 - return NULL; 497 - ) 498 - 499 - void *_ZN6shazam5focusILl2ENS_11regresspairEPDoFfRKS1_EZZNS_10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNSC_9allocatorISE_EEEESE_RNSD_IS1_NSF_IS1_EEEERKN3gsl4spanIT0_Lln1EEEENKUlT_E_clINSN_ISA_Lln1EEEEEDaSS_EUlSS_E_EEvSP_xT1_T2_(void) { 500 - if (verbose) puts("STUB: _ZN6shazam5focusILl2ENS_11regresspairEPDoFfRKS1_EZZNS_10cull_phaseIL8AlgoType1E11xpair_groupIJ12xpair_fieldsEELm2ELPv0EEEvRNSt3__16vectorI6ResultNSC_9allocatorISE_EEEESE_RNSD_IS1_NSF_IS1_EEEERKN3gsl4spanIT0_Lln1EEEENKUlT_E_clINSN_ISA_Lln1EEEEEDaSS_EUlSS_E_EEvSP_xT1_T2_ called"); 501 - return NULL; 502 - ) 503 - 504 - void *_ZN6shazam13regresspair_yERKNS_11regresspairE(void) { 505 - if (verbose) puts("STUB: _ZN6shazam13regresspair_yERKNS_11regresspairE called"); 506 - return NULL; 507 - ) 508 - 509 - void *_ZNSt3__16vectorIN6shazam11regresspairENS_9allocatorIS2_EEE6resizeEm(void) { 510 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam11regresspairENS_9allocatorIS2_EEE6resizeEm called"); 511 - return NULL; 512 - ) 513 - 514 - void *_ZNSt3__16vectorIN6shazam11regresspairENS_9allocatorIS2_EEE8__appendEm(void) { 515 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam11regresspairENS_9allocatorIS2_EEE8__appendEm called"); 516 - return NULL; 517 - ) 518 - 519 - void *_ZNKSt3__113__vector_baseIN6shazam11regresspairENS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 520 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam11regresspairENS_9allocatorIS2_EEE20__throw_length_errorEv called"); 521 - return NULL; 522 - ) 523 - 524 - void *_Z13insertionsortIN6shazam11regresspairEmNSt3__14lessIS1_EEEvPT_T0_S7_T1_(void) { 525 - if (verbose) puts("STUB: _Z13insertionsortIN6shazam11regresspairEmNSt3__14lessIS1_EEEvPT_T0_S7_T1_ called"); 526 - return NULL; 527 - ) 528 - 529 - void *_ZNSt3__16__sortIRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEvT0_S7_T_(void) { 530 - if (verbose) puts("STUB: _ZNSt3__16__sortIRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEvT0_S7_T_ called"); 531 - return NULL; 532 - ) 533 - 534 - void *_ZNSt3__17__sort3IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_T_(void) { 535 - if (verbose) puts("STUB: _ZNSt3__17__sort3IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_T_ called"); 536 - return NULL; 537 - ) 538 - 539 - void *_ZNSt3__17__sort4IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_S7_T_(void) { 540 - if (verbose) puts("STUB: _ZNSt3__17__sort4IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_S7_T_ called"); 541 - return NULL; 542 - ) 543 - 544 - void *_ZNSt3__17__sort5IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_S7_S7_T_(void) { 545 - if (verbose) puts("STUB: _ZNSt3__17__sort5IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEjT0_S7_S7_S7_S7_T_ called"); 546 - return NULL; 547 - ) 548 - 549 - void *_ZNSt3__118__insertion_sort_3IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEvT0_S7_T_(void) { 550 - if (verbose) puts("STUB: _ZNSt3__118__insertion_sort_3IRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEvT0_S7_T_ called"); 551 - return NULL; 552 - ) 553 - 554 - void *_ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEbT0_S7_T_(void) { 555 - if (verbose) puts("STUB: _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessIN6shazam11regresspairES3_EEPS3_EEbT0_S7_T_ called"); 556 - return NULL; 557 - ) 558 - 559 - void *_ZN6shazam7regressINS_11regresspairENS_8extractXIS1_EENS_8extractYIS1_EEEENSt3__18optionalINS_12regress_lineEEERKN3gsl4spanIT_Lln1EEET0_T1_(void) { 560 - if (verbose) puts("STUB: _ZN6shazam7regressINS_11regresspairENS_8extractXIS1_EENS_8extractYIS1_EEEENSt3__18optionalINS_12regress_lineEEERKN3gsl4spanIT_Lln1EEET0_T1_ called"); 561 - return NULL; 562 - ) 563 - 564 - void *_ZNK3gsl4spanIN6shazam11regresspairELln1EE12make_subspanEllNS3_16subspan_selectorILln1EEE(void) { 565 - if (verbose) puts("STUB: _ZNK3gsl4spanIN6shazam11regresspairELln1EE12make_subspanEllNS3_16subspan_selectorILln1EEE called"); 566 - return NULL; 567 - ) 32 + extern void* const SHErrorDeviceToDeviceEncryptionKey = (void*)0; 33 + extern void* const SHErrorDiscardedAudioDurationKey = (void*)0; 34 + extern void* const SHErrorDomain = (void*)0; 35 + extern void* const SHEventSignalIdentifierMusicRecognitionHistoryActivated = (void*)0; 36 + extern void* const SHEventSignalIdentifierMusicRecognitionRecognitionActivated = (void*)0; 37 + extern void* const SHMaximumSignatureDuration = (void*)0; 38 + extern void* const SHMediaItemAlbumName = (void*)0; 39 + extern void* const SHMediaItemAppleMusicID = (void*)0; 40 + extern void* const SHMediaItemAppleMusicURL = (void*)0; 41 + extern void* const SHMediaItemArtist = (void*)0; 42 + extern void* const SHMediaItemArtworkURL = (void*)0; 43 + extern void* const SHMediaItemAudioStartDate = (void*)0; 44 + extern void* const SHMediaItemCreationDate = (void*)0; 45 + extern void* const SHMediaItemExplicitContent = (void*)0; 46 + extern void* const SHMediaItemFrequencySkew = (void*)0; 47 + extern void* const SHMediaItemFrequencySkewRanges = (void*)0; 48 + extern void* const SHMediaItemFrequencySkewRangesSwift = (void*)0; 49 + extern void* const SHMediaItemGenres = (void*)0; 50 + extern void* const SHMediaItemISRC = (void*)0; 51 + extern void* const SHMediaItemLyricsSnippet = (void*)0; 52 + extern void* const SHMediaItemMatchOffset = (void*)0; 53 + extern void* const SHMediaItemPresentationSettingOpenResultInBrowserOnFailure = (void*)0; 54 + extern void* const SHMediaItemQueryMatchOffsetRanges = (void*)0; 55 + extern void* const SHMediaItemReferenceMatchOffsetRanges = (void*)0; 56 + extern void* const SHMediaItemReleaseDate = (void*)0; 57 + extern void* const SHMediaItemShazamCount = (void*)0; 58 + extern void* const SHMediaItemShazamID = (void*)0; 59 + extern void* const SHMediaItemSpeedSkew = (void*)0; 60 + extern void* const SHMediaItemStaticLyricLines = (void*)0; 61 + extern void* const SHMediaItemSubtitle = (void*)0; 62 + extern void* const SHMediaItemSyncedLyricsSnippet = (void*)0; 63 + extern void* const SHMediaItemTimeRanges = (void*)0; 64 + extern void* const SHMediaItemTimeRangesSwift = (void*)0; 65 + extern void* const SHMediaItemTitle = (void*)0; 66 + extern void* const SHMediaItemVideoURL = (void*)0; 67 + extern void* const SHMediaItemWebURL = (void*)0; 68 + extern void* const SHMediaLibraryErrorDomain = (void*)0; 69 + extern void* const SHMediaLibrarySyncStartConditionInitialFetch = (void*)0; 70 + extern void* const SHMediaLibrarySyncStartConditionInitialUpload = (void*)0; 71 + extern void* const SHMediaLibrarySyncStartConditionMigration = (void*)0; 72 + extern void* const SHMediaLibrarySyncStartConditionRemotePush = (void*)0; 73 + extern void* const SHMediaLibrarySyncStartConditionUserAction = (void*)0; 74 + extern void* const SHNotificationKeySessionError = (void*)0; 75 + extern void* const SHNotificationKeySessionMatch = (void*)0; 76 + extern void* const SHNotificationKeySessionSignature = (void*)0; 77 + extern void* const SHNotificationNameSessionResult = (void*)0; 78 + extern void* const SHShazamKitServiceName = (void*)0; 79 + extern void* const SHShazamKitUIServiceName = (void*)0; 80 + extern void* const _ZTSNSt3__113basic_fstreamIcNS_11char_traitsIcEEEE = (void*)0; 81 + extern void* const _ZTSNSt3__117bad_function_callE = (void*)0; 568 82 569 - void *_ZN3gsl4spanIN6shazam11regresspairELln1EEC1INSt3__16vectorIS2_NS5_9allocatorIS2_EEEEvEERT_(void) { 570 - if (verbose) puts("STUB: _ZN3gsl4spanIN6shazam11regresspairELln1EEC1INSt3__16vectorIS2_NS5_9allocatorIS2_EEEEvEERT_ called"); 83 + void *SHShazamKitClientInterface(void) { 84 + if (verbose) puts("STUB: SHShazamKitClientInterface called"); 571 85 return NULL; 572 - ) 86 + } 573 87 574 - void *_ZN3gsl4spanIN6shazam11regresspairELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS2_T_(void) { 575 - if (verbose) puts("STUB: _ZN3gsl4spanIN6shazam11regresspairELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS2_T_ called"); 88 + void *SHShazamKitServiceInterface(void) { 89 + if (verbose) puts("STUB: SHShazamKitServiceInterface called"); 576 90 return NULL; 577 - ) 91 + } 578 92 579 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_(void) { 580 - if (verbose) puts("STUB: _ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE21__push_back_slow_pathIRKS1_EEvOT_ called"); 93 + void *SHShazamKitUIClientInterface(void) { 94 + if (verbose) puts("STUB: SHShazamKitUIClientInterface called"); 581 95 return NULL; 582 - ) 96 + } 583 97 584 - void *_ZNKSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEE20__throw_length_errorEv(void) { 585 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEE20__throw_length_errorEv called"); 98 + void *SHShazamKitUIServiceInterface(void) { 99 + if (verbose) puts("STUB: SHShazamKitUIServiceInterface called"); 586 100 return NULL; 587 - ) 588 - 589 - void *_ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEEC2EmmS4_(void) { 590 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEEC2EmmS4_ called"); 591 - return NULL; 592 - ) 593 - 594 - void *_ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEED2Ev(void) { 595 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEED2Ev called"); 596 - return NULL; 597 - ) 598 - 599 - void *_ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEE17__destruct_at_endEPS1_(void) { 600 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferI6ResultRNS_9allocatorIS1_EEE17__destruct_at_endEPS1_ called"); 601 - return NULL; 602 - ) 603 - 604 - void *_ZN6shazam14thresholdScoreIL8AlgoType1EEEfffhh(void) { 605 - if (verbose) puts("STUB: _ZN6shazam14thresholdScoreIL8AlgoType1EEEfffhh called"); 606 - return NULL; 607 - ) 608 - 609 - void *_ZN6shazam14peaksToTFPeaksINSt3__16vectorINS2_I15spectral_peak_tNS1_9allocatorIS3_EEEENS4_IS6_EEEEEENS2_I7peak_tfNS4_IS9_EEEERKT_RK14one_pt_options(void) { 610 - if (verbose) puts("STUB: _ZN6shazam14peaksToTFPeaksINSt3__16vectorINS2_I15spectral_peak_tNS1_9allocatorIS3_EEEENS4_IS6_EEEEEENS2_I7peak_tfNS4_IS9_EEEERKT_RK14one_pt_options called"); 611 - return NULL; 612 - ) 613 - 614 - void *_ZNSt3__16__sortIRNS_7greaterIvEEP6ResultEEvT0_S6_T_(void) { 615 - if (verbose) puts("STUB: _ZNSt3__16__sortIRNS_7greaterIvEEP6ResultEEvT0_S6_T_ called"); 616 - return NULL; 617 - ) 618 - 619 - void *_ZNSt3__17__sort3IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_T_(void) { 620 - if (verbose) puts("STUB: _ZNSt3__17__sort3IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_T_ called"); 621 - return NULL; 622 - ) 623 - 624 - void *_ZNSt3__17__sort4IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_S6_T_(void) { 625 - if (verbose) puts("STUB: _ZNSt3__17__sort4IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_S6_T_ called"); 626 - return NULL; 627 - ) 628 - 629 - void *_ZNSt3__17__sort5IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_S6_S6_T_(void) { 630 - if (verbose) puts("STUB: _ZNSt3__17__sort5IRNS_7greaterIvEEP6ResultEEjT0_S6_S6_S6_S6_T_ called"); 631 - return NULL; 632 - ) 633 - 634 - void *_ZNSt3__118__insertion_sort_3IRNS_7greaterIvEEP6ResultEEvT0_S6_T_(void) { 635 - if (verbose) puts("STUB: _ZNSt3__118__insertion_sort_3IRNS_7greaterIvEEP6ResultEEvT0_S6_T_ called"); 636 - return NULL; 637 - ) 638 - 639 - void *_ZNSt3__127__insertion_sort_incompleteIRNS_7greaterIvEEP6ResultEEbT0_S6_T_(void) { 640 - if (verbose) puts("STUB: _ZNSt3__127__insertion_sort_incompleteIRNS_7greaterIvEEP6ResultEEbT0_S6_T_ called"); 641 - return NULL; 642 - ) 643 - 644 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE8__appendEm(void) { 645 - if (verbose) puts("STUB: _ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE8__appendEm called"); 646 - return NULL; 647 - ) 648 - 649 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE17__destruct_at_endEPS1_(void) { 650 - if (verbose) puts("STUB: _ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE17__destruct_at_endEPS1_ called"); 651 - return NULL; 652 - ) 653 - 654 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEEC2ERKS4_(void) { 655 - if (verbose) puts("STUB: _ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEEC2ERKS4_ called"); 656 - return NULL; 657 - ) 658 - 659 - void *_ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE11__vallocateEm(void) { 660 - if (verbose) puts("STUB: _ZNSt3__16vectorI6ResultNS_9allocatorIS1_EEE11__vallocateEm called"); 661 - return NULL; 662 - ) 663 - 664 - void *_ZN2tl6detail21expected_storage_baseINSt3__16vectorI6ResultNS2_9allocatorIS4_EEEENS2_12system_errorELb0ELb0EED2Ev(void) { 665 - if (verbose) puts("STUB: _ZN2tl6detail21expected_storage_baseINSt3__16vectorI6ResultNS2_9allocatorIS4_EEEENS2_12system_errorELb0ELb0EED2Ev called"); 666 - return NULL; 667 - ) 668 - 669 - void *_ZNSt3__125__throw_bad_function_callEv(void) { 670 - if (verbose) puts("STUB: _ZNSt3__125__throw_bad_function_callEv called"); 671 - return NULL; 672 - ) 673 - 674 - void *_ZN6shazam13virtual_arrayIcE7reserveEm(void) { 675 - if (verbose) puts("STUB: _ZN6shazam13virtual_arrayIcE7reserveEm called"); 676 - return NULL; 677 - ) 678 - 679 - void *_ZNK10SearchPlan11assertValidEv(void) { 680 - if (verbose) puts("STUB: _ZNK10SearchPlan11assertValidEv called"); 681 - return NULL; 682 - ) 683 - 684 - void *_ZN10SearchPlanC1E8AlgoType9DBDensity(void) { 685 - if (verbose) puts("STUB: _ZN10SearchPlanC1E8AlgoType9DBDensity called"); 686 - return NULL; 687 - ) 688 - 689 - void *_ZN6shazam17FatHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void) { 690 - if (verbose) puts("STUB: _ZN6shazam17FatHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE called"); 691 - return NULL; 692 - ) 693 - 694 - void *_ZN6shazam15iterate_headersINS_25fp_data_header_extern_newEEEvN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void) { 695 - if (verbose) puts("STUB: _ZN6shazam15iterate_headersINS_25fp_data_header_extern_newEEEvN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE called"); 696 - return NULL; 697 - ) 698 - 699 - void *_ZNSt3__117bad_function_callD1Ev(void) { 700 - if (verbose) puts("STUB: _ZNSt3__117bad_function_callD1Ev called"); 701 - return NULL; 702 - ) 703 - 704 - void *_ZNSt3__117bad_function_callD0Ev(void) { 705 - if (verbose) puts("STUB: _ZNSt3__117bad_function_callD0Ev called"); 706 - return NULL; 707 - ) 708 - 709 - void *_ZN6shazam17reinterpret_saferIPKNS_25fp_data_header_extern_newELi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 710 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPKNS_25fp_data_header_extern_newELi0EEET_RKN3gsl4spanIKcLln1EEE called"); 711 - return NULL; 712 - ) 713 - 714 - void *_ZN6shazam4algoIL8AlgoType1EE10matrix_forE12QueryDensity(void) { 715 - if (verbose) puts("STUB: _ZN6shazam4algoIL8AlgoType1EE10matrix_forE12QueryDensity called"); 716 - return NULL; 717 - ) 718 - 719 - void *_ZN6shazam4algoIL8AlgoType1EE10matrix_forE9DBDensity(void) { 720 - if (verbose) puts("STUB: _ZN6shazam4algoIL8AlgoType1EE10matrix_forE9DBDensity called"); 721 - return NULL; 722 - ) 723 - 724 - void *_ZNSt3__120__throw_out_of_rangeEPKc(void) { 725 - if (verbose) puts("STUB: _ZNSt3__120__throw_out_of_rangeEPKc called"); 726 - return NULL; 727 - ) 728 - 729 - void *_ZN6shazam24StaticCPUSearcherFactoryC1ENS_12CPUDatabasesEmRK5Timer(void) { 730 - if (verbose) puts("STUB: _ZN6shazam24StaticCPUSearcherFactoryC1ENS_12CPUDatabasesEmRK5Timer called"); 731 - return NULL; 732 - ) 733 - 734 - void *_ZNK6shazam24StaticCPUSearcherFactory13make_searcherEv(void) { 735 - if (verbose) puts("STUB: _ZNK6shazam24StaticCPUSearcherFactory13make_searcherEv called"); 736 - return NULL; 737 - ) 738 - 739 - void *_ZNSt3__111make_uniqueIN6shazam17StaticCPUSearcherEJRKNS1_12CPUDatabasesERK5TimerRKmSA_EEENS_11__unique_ifIT_E15__unique_singleEDpOT0_(void) { 740 - if (verbose) puts("STUB: _ZNSt3__111make_uniqueIN6shazam17StaticCPUSearcherEJRKNS1_12CPUDatabasesERK5TimerRKmSA_EEENS_11__unique_ifIT_E15__unique_singleEDpOT0_ called"); 741 - return NULL; 742 - ) 743 - 744 - void *_ZN6shazam24StaticCPUSearcherFactoryD1Ev(void) { 745 - if (verbose) puts("STUB: _ZN6shazam24StaticCPUSearcherFactoryD1Ev called"); 746 - return NULL; 747 - ) 748 - 749 - void *_ZN6shazam24StaticCPUSearcherFactoryD0Ev(void) { 750 - if (verbose) puts("STUB: _ZN6shazam24StaticCPUSearcherFactoryD0Ev called"); 751 - return NULL; 752 - ) 753 - 754 - void *_ZN6shazam2io4packERKNS_17basic_signature_tE(void) { 755 - if (verbose) puts("STUB: _ZN6shazam2io4packERKNS_17basic_signature_tE called"); 756 - return NULL; 757 - ) 758 - 759 - void *_ZN6shazam2io18addShazamKitHeaderERNSt3__16vectorIcNS1_9allocatorIcEEEE(void) { 760 - if (verbose) puts("STUB: _ZN6shazam2io18addShazamKitHeaderERNSt3__16vectorIcNS1_9allocatorIcEEEE called"); 761 - return NULL; 762 - ) 763 - 764 - void *_ZN6shazam2io4packERNSt3__16vectorIcNS1_9allocatorIcEEEERKNS_17basic_signature_tE(void) { 765 - if (verbose) puts("STUB: _ZN6shazam2io4packERNSt3__16vectorIcNS1_9allocatorIcEEEERKNS_17basic_signature_tE called"); 766 - return NULL; 767 - ) 768 - 769 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEE7reserveEm(void) { 770 - if (verbose) puts("STUB: _ZNSt3__16vectorIcNS_9allocatorIcEEE7reserveEm called"); 771 - return NULL; 772 - ) 773 - 774 - void *_ZN6shazam2io15write_unalignedINS_23spectral_peak_compact_tEEEvRNSt3__16vectorIcNS3_9allocatorIcEEEERKNS4_IT_NS5_IS9_EEEE(void) { 775 - if (verbose) puts("STUB: _ZN6shazam2io15write_unalignedINS_23spectral_peak_compact_tEEEvRNSt3__16vectorIcNS3_9allocatorIcEEEERKNS4_IT_NS5_IS9_EEEE called"); 776 - return NULL; 777 - ) 778 - 779 - void *_ZNSt3__112__rotate_gcdINS_16reverse_iteratorINS_11__wrap_iterIPcEEEEEET_S6_S6_S6_(void) { 780 - if (verbose) puts("STUB: _ZNSt3__112__rotate_gcdINS_16reverse_iteratorINS_11__wrap_iterIPcEEEEEET_S6_S6_S6_ called"); 781 - return NULL; 782 - ) 783 - 784 - void *_ZNSt3__113__vector_baseIN6shazam2io12_GLOBAL__N_115compacted_peaksENS_9allocatorIS4_EEED2Ev(void) { 785 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseIN6shazam2io12_GLOBAL__N_115compacted_peaksENS_9allocatorIS4_EEED2Ev called"); 786 - return NULL; 787 - ) 788 - 789 - void *_ZNKSt3__113__vector_baseIN6shazam2io12_GLOBAL__N_115compacted_peaksENS_9allocatorIS4_EEE20__throw_length_errorEv(void) { 790 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam2io12_GLOBAL__N_115compacted_peaksENS_9allocatorIS4_EEE20__throw_length_errorEv called"); 791 - return NULL; 792 - ) 793 - 794 - void *_ZNK11SumoSigInfo19get_raw_sample_rateEv(void) { 795 - if (verbose) puts("STUB: _ZNK11SumoSigInfo19get_raw_sample_rateEv called"); 796 - return NULL; 797 - ) 798 - 799 - void *_ZNK11SumoSigInfo25get_sample_length_samplesEv(void) { 800 - if (verbose) puts("STUB: _ZNK11SumoSigInfo25get_sample_length_samplesEv called"); 801 - return NULL; 802 - ) 803 - 804 - void *_ZNK11SumoSigInfo19get_stream_positionEv(void) { 805 - if (verbose) puts("STUB: _ZNK11SumoSigInfo19get_stream_positionEv called"); 806 - return NULL; 807 - ) 808 - 809 - void *_ZN6shazam4MMapD2Ev(void) { 810 - if (verbose) puts("STUB: _ZN6shazam4MMapD2Ev called"); 811 - return NULL; 812 - ) 813 - 814 - void *_ZN6shazam4MMapD1Ev(void) { 815 - if (verbose) puts("STUB: _ZN6shazam4MMapD1Ev called"); 816 - return NULL; 817 - ) 818 - 819 - void *_ZN6shazam7windows14blackmanHarrisEm(void) { 820 - if (verbose) puts("STUB: _ZN6shazam7windows14blackmanHarrisEm called"); 821 - return NULL; 822 - ) 823 - 824 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEEC2EmRKf(void) { 825 - if (verbose) puts("STUB: _ZNSt3__16vectorIfNS_9allocatorIfEEEC2EmRKf called"); 826 - return NULL; 827 - ) 828 - 829 - void *_ZN6shazam8targetFPERKNS_14link_matrix_2dEm(void) { 830 - if (verbose) puts("STUB: _ZN6shazam8targetFPERKNS_14link_matrix_2dEm called"); 831 - return NULL; 832 - ) 833 - 834 - void *_ZN6shazam14reframe_matrixERKNS_14link_matrix_2dEjNSt3__16chrono8durationIjNS3_5ratioILl1ELl125EEEEE(void) { 835 - if (verbose) puts("STUB: _ZN6shazam14reframe_matrixERKNS_14link_matrix_2dEjNSt3__16chrono8durationIjNS3_5ratioILl1ELl125EEEEE called"); 836 - return NULL; 837 - ) 838 - 839 - void *_ZN6shazam16intensify_matrixENS_14link_matrix_2dENSt3__16chrono8durationIfNS1_5ratioILl1ELl1EEEEE(void) { 840 - if (verbose) puts("STUB: _ZN6shazam16intensify_matrixENS_14link_matrix_2dENSt3__16chrono8durationIfNS1_5ratioILl1ELl1EEEEE called"); 841 - return NULL; 842 - ) 843 - 844 - void *_ZN12FreqLogTable2atEt(void) { 845 - if (verbose) puts("STUB: _ZN12FreqLogTable2atEt called"); 846 - return NULL; 847 - ) 848 - 849 - void *_ZN6shazam18signature_categoryEv(void) { 850 - if (verbose) puts("STUB: _ZN6shazam18signature_categoryEv called"); 851 - return NULL; 852 - ) 853 - 854 - void *_ZN12_GLOBAL__N_123signature_category_implD1Ev(void) { 855 - if (verbose) puts("STUB: _ZN12_GLOBAL__N_123signature_category_implD1Ev called"); 856 - return NULL; 857 - ) 858 - 859 - void *_ZN6shazam15make_error_codeENS_9sig_errorE(void) { 860 - if (verbose) puts("STUB: _ZN6shazam15make_error_codeENS_9sig_errorE called"); 861 - return NULL; 862 - ) 863 - 864 - void *_ZN12_GLOBAL__N_123signature_category_implD0Ev(void) { 865 - if (verbose) puts("STUB: _ZN12_GLOBAL__N_123signature_category_implD0Ev called"); 866 - return NULL; 867 - ) 868 - 869 - void *_ZNK12_GLOBAL__N_123signature_category_impl4nameEv(void) { 870 - if (verbose) puts("STUB: _ZNK12_GLOBAL__N_123signature_category_impl4nameEv called"); 871 - return NULL; 872 - ) 873 - 874 - void *_ZNK12_GLOBAL__N_123signature_category_impl7messageEi(void) { 875 - if (verbose) puts("STUB: _ZNK12_GLOBAL__N_123signature_category_impl7messageEi called"); 876 - return NULL; 877 - ) 878 - 879 - void *_ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1IDnEEPKc(void) { 880 - if (verbose) puts("STUB: _ZNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC1IDnEEPKc called"); 881 - return NULL; 882 - ) 883 - 884 - void *_ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE20__throw_length_errorEv(void) { 885 - if (verbose) puts("STUB: _ZNKSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE20__throw_length_errorEv called"); 886 - return NULL; 887 - ) 888 - 889 - void *_ZN7SHZ_FFTC2Em(void) { 890 - if (verbose) puts("STUB: _ZN7SHZ_FFTC2Em called"); 891 - return NULL; 892 - ) 893 - 894 - void *_ZN7SHZ_FFTC1Em(void) { 895 - if (verbose) puts("STUB: _ZN7SHZ_FFTC1Em called"); 896 - return NULL; 897 - ) 898 - 899 - void *_ZN7SHZ_FFT11complexformEPKfPfPNSt3__17complexIfEE(void) { 900 - if (verbose) puts("STUB: _ZN7SHZ_FFT11complexformEPKfPfPNSt3__17complexIfEE called"); 901 - return NULL; 902 - ) 903 - 904 - void *_ZN10sig_streamC2Ev(void) { 905 - if (verbose) puts("STUB: _ZN10sig_streamC2Ev called"); 906 - return NULL; 907 - ) 908 - 909 - void *_ZN10sig_stream5resetEv(void) { 910 - if (verbose) puts("STUB: _ZN10sig_stream5resetEv called"); 911 - return NULL; 912 - ) 913 - 914 - void *_ZN10sig_streamC1Ev(void) { 915 - if (verbose) puts("STUB: _ZN10sig_streamC1Ev called"); 916 - return NULL; 917 - ) 918 - 919 - void *_ZNK10sig_stream3nowEv(void) { 920 - if (verbose) puts("STUB: _ZNK10sig_stream3nowEv called"); 921 - return NULL; 922 - ) 923 - 924 - void *_ZN10sig_stream10checkpointEv(void) { 925 - if (verbose) puts("STUB: _ZN10sig_stream10checkpointEv called"); 926 - return NULL; 927 - ) 928 - 929 - void *_ZN10sig_stream6rewindEv(void) { 930 - if (verbose) puts("STUB: _ZN10sig_stream6rewindEv called"); 931 - return NULL; 932 - ) 933 - 934 - void *_ZNK17AlignedRingBufferIfE2atEi(void) { 935 - if (verbose) puts("STUB: _ZNK17AlignedRingBufferIfE2atEi called"); 936 - return NULL; 937 - ) 938 - 939 - void *_ZN10sig_stream14push_frame_maxEPKfi(void) { 940 - if (verbose) puts("STUB: _ZN10sig_stream14push_frame_maxEPKfi called"); 941 - return NULL; 942 - ) 943 - 944 - void *_ZNK10sig_stream32get_writable_fft_frame_magnitudeEv(void) { 945 - if (verbose) puts("STUB: _ZNK10sig_stream32get_writable_fft_frame_magnitudeEv called"); 946 - return NULL; 947 - ) 948 - 949 - void *_ZNK10sig_stream30get_writable_fft_frame_complexEv(void) { 950 - if (verbose) puts("STUB: _ZNK10sig_stream30get_writable_fft_frame_complexEv called"); 951 - return NULL; 952 - ) 953 - 954 - void *_ZN10sig_stream10find_peaksEPKfRm(void) { 955 - if (verbose) puts("STUB: _ZN10sig_stream10find_peaksEPKfRm called"); 956 - return NULL; 957 - ) 958 - 959 - void *_ZN10sig_stream11stream_flowERNSt3__15dequeI15spectral_peak_tNS0_9allocatorIS2_EEEE(void) { 960 - if (verbose) puts("STUB: _ZN10sig_stream11stream_flowERNSt3__15dequeI15spectral_peak_tNS0_9allocatorIS2_EEEE called"); 961 - return NULL; 962 - ) 963 - 964 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE12emplace_backIJRKNS_6chrono8durationIxNS_5ratioILl1ELl125EEEEERKjRPKfEEERS1_DpOT_(void) { 965 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE12emplace_backIJRKNS_6chrono8durationIxNS_5ratioILl1ELl125EEEEERKjRPKfEEERS1_DpOT_ called"); 966 - return NULL; 967 - ) 968 - 969 - void *_ZN17AlignedRingBufferIfEC2Eii(void) { 970 - if (verbose) puts("STUB: _ZN17AlignedRingBufferIfEC2Eii called"); 971 - return NULL; 972 - ) 973 - 974 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEEC2Em(void) { 975 - if (verbose) puts("STUB: _ZNSt3__16vectorIfNS_9allocatorIfEEEC2Em called"); 976 - return NULL; 977 - ) 978 - 979 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE11__vallocateEm(void) { 980 - if (verbose) puts("STUB: _ZNSt3__16vectorIfNS_9allocatorIfEEE11__vallocateEm called"); 981 - return NULL; 982 - ) 983 - 984 - void *_ZNKSt3__113__vector_baseIfNS_9allocatorIfEEE20__throw_length_errorEv(void) { 985 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIfNS_9allocatorIfEEE20__throw_length_errorEv called"); 986 - return NULL; 987 - ) 988 - 989 - void *_ZN17AlignedRingBufferINSt3__17complexIfEEEC2Eii(void) { 990 - if (verbose) puts("STUB: _ZN17AlignedRingBufferINSt3__17complexIfEEEC2Eii called"); 991 - return NULL; 992 - ) 993 - 994 - void *_ZNSt3__16vectorINS_7complexIfEENS_9allocatorIS2_EEEC2Em(void) { 995 - if (verbose) puts("STUB: _ZNSt3__16vectorINS_7complexIfEENS_9allocatorIS2_EEEC2Em called"); 996 - return NULL; 997 - ) 998 - 999 - void *_ZNSt3__16vectorINS_7complexIfEENS_9allocatorIS2_EEE11__vallocateEm(void) { 1000 - if (verbose) puts("STUB: _ZNSt3__16vectorINS_7complexIfEENS_9allocatorIS2_EEE11__vallocateEm called"); 1001 - return NULL; 1002 - ) 1003 - 1004 - void *_ZNKSt3__113__vector_baseINS_7complexIfEENS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 1005 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseINS_7complexIfEENS_9allocatorIS2_EEE20__throw_length_errorEv called"); 1006 - return NULL; 1007 - ) 1008 - 1009 - void *_ZNK17AlignedRingBufferIfE9get_frameEi(void) { 1010 - if (verbose) puts("STUB: _ZNK17AlignedRingBufferIfE9get_frameEi called"); 1011 - return NULL; 1012 - ) 1013 - 1014 - void *_ZNK17AlignedRingBufferINSt3__17complexIfEEE9get_frameEi(void) { 1015 - if (verbose) puts("STUB: _ZNK17AlignedRingBufferINSt3__17complexIfEEE9get_frameEi called"); 1016 - return NULL; 1017 - ) 1018 - 1019 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE19__add_back_capacityEv(void) { 1020 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE19__add_back_capacityEv called"); 1021 - return NULL; 1022 - ) 1023 - 1024 - void *_Z16flatten_and_sortRKNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEE(void) { 1025 - if (verbose) puts("STUB: _Z16flatten_and_sortRKNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEE called"); 1026 - return NULL; 1027 - ) 1028 - 1029 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6insertINS_11__wrap_iterIPKS1_EEEENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS1_NS_15iterator_traitsISB_E9referenceEEE5valueENS6_IPS1_EEE4typeES9_SB_SB_(void) { 1030 - if (verbose) puts("STUB: _ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6insertINS_11__wrap_iterIPKS1_EEEENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS1_NS_15iterator_traitsISB_E9referenceEEE5valueENS6_IPS1_EEE4typeES9_SB_SB_ called"); 1031 - return NULL; 1032 - ) 1033 - 1034 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS1_RS3_EEPS1_(void) { 1035 - if (verbose) puts("STUB: _ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS1_RS3_EEPS1_ called"); 1036 - return NULL; 1037 - ) 1038 - 1039 - void *_Z11unobfuscatePymyS_(void) { 1040 - if (verbose) puts("STUB: _Z11unobfuscatePymyS_ called"); 1041 - return NULL; 1042 - ) 1043 - 1044 - void *_Z11UnobfuscatePcm(void) { 1045 - if (verbose) puts("STUB: _Z11UnobfuscatePcm called"); 1046 - return NULL; 1047 - ) 1048 - 1049 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC2ERKNS_21packed_signature_viewE(void) { 1050 - if (verbose) puts("STUB: _ZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC2ERKNS_21packed_signature_viewE called"); 1051 - return NULL; 1052 - ) 1053 - 1054 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE6resizeEm(void) { 1055 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE6resizeEm called"); 1056 - return NULL; 1057 - ) 1058 - 1059 - void *_ZN6shazam19find_last_peak_tickERKNSt3__16vectorINS1_I15spectral_peak_tNS0_9allocatorIS2_EEEENS3_IS5_EEEE(void) { 1060 - if (verbose) puts("STUB: _ZN6shazam19find_last_peak_tickERKNSt3__16vectorINS1_I15spectral_peak_tNS0_9allocatorIS2_EEEENS3_IS5_EEEE called"); 1061 - return NULL; 1062 - ) 1063 - 1064 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC1ERKNS_21packed_signature_viewE(void) { 1065 - if (verbose) puts("STUB: _ZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC1ERKNS_21packed_signature_viewE called"); 1066 - return NULL; 1067 - ) 1068 - 1069 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE24EEC2ERKNS_21packed_signature_viewE(void) { 1070 - if (verbose) puts("STUB: _ZN6shazam15basic_signatureILNS_17signature_densityE24EEC2ERKNS_21packed_signature_viewE called"); 1071 - return NULL; 1072 - ) 1073 - 1074 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE24EEC1ERKNS_21packed_signature_viewE(void) { 1075 - if (verbose) puts("STUB: _ZN6shazam15basic_signatureILNS_17signature_densityE24EEC1ERKNS_21packed_signature_viewE called"); 1076 - return NULL; 1077 - ) 1078 - 1079 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE16EEC2ERKNS_21packed_signature_viewE(void) { 1080 - if (verbose) puts("STUB: _ZN6shazam15basic_signatureILNS_17signature_densityE16EEC2ERKNS_21packed_signature_viewE called"); 1081 - return NULL; 1082 - ) 1083 - 1084 - void *_ZN6shazam15basic_signatureILNS_17signature_densityE16EEC1ERKNS_21packed_signature_viewE(void) { 1085 - if (verbose) puts("STUB: _ZN6shazam15basic_signatureILNS_17signature_densityE16EEC1ERKNS_21packed_signature_viewE called"); 1086 - return NULL; 1087 - ) 1088 - 1089 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE8__appendEm(void) { 1090 - if (verbose) puts("STUB: _ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE8__appendEm called"); 1091 - return NULL; 1092 - ) 1093 - 1094 - void *_ZNSt3__17__sort3IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_T_(void) { 1095 - if (verbose) puts("STUB: _ZNSt3__17__sort3IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_T_ called"); 1096 - return NULL; 1097 - ) 1098 - 1099 - void *_ZNSt3__17__sort4IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_S6_T_(void) { 1100 - if (verbose) puts("STUB: _ZNSt3__17__sort4IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_S6_T_ called"); 1101 - return NULL; 1102 - ) 1103 - 1104 - void *_ZNSt3__17__sort5IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_S6_S6_T_(void) { 1105 - if (verbose) puts("STUB: _ZNSt3__17__sort5IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEjT0_S6_S6_S6_S6_T_ called"); 1106 - return NULL; 1107 - ) 1108 - 1109 - void *_ZNSt3__118__insertion_sort_3IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEvT0_S6_T_(void) { 1110 - if (verbose) puts("STUB: _ZNSt3__118__insertion_sort_3IRNS_6__lessI15spectral_peak_tS2_EEPS2_EEvT0_S6_T_ called"); 1111 - return NULL; 1112 - ) 1113 - 1114 - void *_ZNSt3__127__insertion_sort_incompleteIRNS_6__lessI15spectral_peak_tS2_EEPS2_EEbT0_S6_T_(void) { 1115 - if (verbose) puts("STUB: _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessI15spectral_peak_tS2_EEPS2_EEbT0_S6_T_ called"); 1116 - return NULL; 1117 - ) 1118 - 1119 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE8__appendEm(void) { 1120 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE8__appendEm called"); 1121 - return NULL; 1122 - ) 1123 - 1124 - void *_ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEED2Ev(void) { 1125 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEED2Ev called"); 1126 - return NULL; 1127 - ) 1128 - 1129 - void *_ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEE17__destruct_at_endEPS5_(void) { 1130 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEE17__destruct_at_endEPS5_ called"); 1131 - return NULL; 1132 - ) 1133 - 1134 - void *_ZNKSt3__113__vector_baseIN6shazam21signature_header_typeENS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 1135 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam21signature_header_typeENS_9allocatorIS2_EEE20__throw_length_errorEv called"); 1136 - return NULL; 1137 - ) 1138 - 1139 - void *_ZNSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEED2Ev(void) { 1140 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEED2Ev called"); 1141 - return NULL; 1142 - ) 1143 - 1144 - void *_ZNKSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEE20__throw_length_errorEv(void) { 1145 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEE20__throw_length_errorEv called"); 1146 - return NULL; 1147 - ) 1148 - 1149 - void *_ZNSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEE5clearEv(void) { 1150 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEENS4_IS6_EEE5clearEv called"); 1151 - return NULL; 1152 - ) 1153 - 1154 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE13__vdeallocateEv(void) { 1155 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE13__vdeallocateEv called"); 1156 - return NULL; 1157 - ) 1158 - 1159 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev(void) { 1160 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev called"); 1161 - return NULL; 1162 - ) 1163 - 1164 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev(void) { 1165 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev called"); 1166 - return NULL; 1167 - ) 1168 - 1169 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv(void) { 1170 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv called"); 1171 - return NULL; 1172 - ) 1173 - 1174 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE(void) { 1175 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE called"); 1176 - return NULL; 1177 - ) 1178 - 1179 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv(void) { 1180 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv called"); 1181 - return NULL; 1182 - ) 1183 - 1184 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv(void) { 1185 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv called"); 1186 - return NULL; 1187 - ) 1188 - 1189 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_(void) { 1190 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_ called"); 1191 - return NULL; 1192 - ) 1193 - 1194 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info(void) { 1195 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info called"); 1196 - return NULL; 1197 - ) 1198 - 1199 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv(void) { 1200 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE2147483647EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv called"); 1201 - return NULL; 1202 - ) 1203 - 1204 - void *_ZZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_(void) { 1205 - if (verbose) puts("STUB: _ZZN6shazam15basic_signatureILNS_17signature_densityE2147483647EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_ called"); 1206 - return NULL; 1207 - ) 1208 - 1209 - void *_ZN6shazam17reinterpret_saferIPK15legacy_sig_infoLi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 1210 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPK15legacy_sig_infoLi0EEET_RKN3gsl4spanIKcLln1EEE called"); 1211 - return NULL; 1212 - ) 1213 - 1214 - void *_ZN6shazam17reinterpret_saferIPK16LegacyFatSigInfoLi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 1215 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPK16LegacyFatSigInfoLi0EEET_RKN3gsl4spanIKcLln1EEE called"); 1216 - return NULL; 1217 - ) 1218 - 1219 - void *_ZN6shazam17reinterpret_saferIPK11SumoSigInfoLi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 1220 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPK11SumoSigInfoLi0EEET_RKN3gsl4spanIKcLln1EEE called"); 1221 - return NULL; 1222 - ) 1223 - 1224 - void *_ZN6shazam17reinterpret_saferIPKNS_23spectral_peak_compact_tELi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 1225 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPKNS_23spectral_peak_compact_tELi0EEET_RKN3gsl4spanIKcLln1EEE called"); 1226 - return NULL; 1227 - ) 1228 - 1229 - void *_ZN12_GLOBAL__N_112decode_peaksEPKN6shazam23spectral_peak_compact_tEmNS0_17signature_densityENSt3__16chrono8durationIhNS5_5ratioILl1ELl125EEEEE(void) { 1230 - if (verbose) puts("STUB: _ZN12_GLOBAL__N_112decode_peaksEPKN6shazam23spectral_peak_compact_tEmNS0_17signature_densityENSt3__16chrono8durationIhNS5_5ratioILl1ELl125EEEEE called"); 1231 - return NULL; 1232 - ) 1233 - 1234 - void *_ZN6shazam17reinterpret_saferIPK15spectral_peak_tLi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 1235 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPK15spectral_peak_tLi0EEET_RKN3gsl4spanIKcLln1EEE called"); 1236 - return NULL; 1237 - ) 1238 - 1239 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6assignIPKS1_EENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS1_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_(void) { 1240 - if (verbose) puts("STUB: _ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6assignIPKS1_EENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS1_NS_15iterator_traitsIS9_E9referenceEEE5valueEvE4typeES9_S9_ called"); 1241 - return NULL; 1242 - ) 1243 - 1244 - void *_ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE6resizeEm(void) { 1245 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE6resizeEm called"); 1246 - return NULL; 1247 - ) 1248 - 1249 - void *_ZNSt3__16vectorIN6shazam21signature_header_typeENS_9allocatorIS2_EEE6resizeEm(void) { 1250 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam21signature_header_typeENS_9allocatorIS2_EEE6resizeEm called"); 1251 - return NULL; 1252 - ) 1253 - 1254 - void *_ZN3gsl9make_spanIKN6shazam23spectral_peak_compact_tEEENS_4spanIT_Lln1EEEPS5_NS6_10index_typeE(void) { 1255 - if (verbose) puts("STUB: _ZN3gsl9make_spanIKN6shazam23spectral_peak_compact_tEEENS_4spanIT_Lln1EEEPS5_NS6_10index_typeE called"); 1256 - return NULL; 1257 - ) 1258 - 1259 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE11__vallocateEm(void) { 1260 - if (verbose) puts("STUB: _ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE11__vallocateEm called"); 1261 - return NULL; 1262 - ) 1263 - 1264 - void *_ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE8__appendEm(void) { 1265 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE8__appendEm called"); 1266 - return NULL; 1267 - ) 1268 - 1269 - void *_ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS5_RS6_EE(void) { 1270 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_IN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEEENS3_IS5_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS5_RS6_EE called"); 1271 - return NULL; 1272 - ) 1273 - 1274 - void *_ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEEC2EmmS8_(void) { 1275 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEEC2EmmS8_ called"); 1276 - return NULL; 1277 - ) 1278 - 1279 - void *_ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEED2Ev(void) { 1280 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEED2Ev called"); 1281 - return NULL; 1282 - ) 1283 - 1284 - void *_ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEE17__destruct_at_endEPS6_(void) { 1285 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferINS_6vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS3_EEEERNS4_IS6_EEE17__destruct_at_endEPS6_ called"); 1286 - return NULL; 1287 - ) 1288 - 1289 - void *_ZNSt3__16vectorIN6shazam21signature_header_typeENS_9allocatorIS2_EEE8__appendEm(void) { 1290 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam21signature_header_typeENS_9allocatorIS2_EEE8__appendEm called"); 1291 - return NULL; 1292 - ) 1293 - 1294 - void *_ZN6shazam17reinterpret_saferIPKNS_24ancient_dead_sig_point_tELi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 1295 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPKNS_24ancient_dead_sig_point_tELi0EEET_RKN3gsl4spanIKcLln1EEE called"); 1296 - return NULL; 1297 - ) 1298 - 1299 - void *_ZNSt3__16vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE6assignIPKS2_EENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsISA_E9referenceEEE5valueEvE4typeESA_SA_(void) { 1300 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE6assignIPKS2_EENS_9enable_ifIXaasr27__is_cpp17_forward_iteratorIT_EE5valuesr16is_constructibleIS2_NS_15iterator_traitsISA_E9referenceEEE5valueEvE4typeESA_SA_ called"); 1301 - return NULL; 1302 - ) 1303 - 1304 - void *_ZNSt3__16vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE11__vallocateEm(void) { 1305 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE11__vallocateEm called"); 1306 - return NULL; 1307 - ) 1308 - 1309 - void *_ZNKSt3__113__vector_baseIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 1310 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam24ancient_dead_sig_point_tENS_9allocatorIS2_EEE20__throw_length_errorEv called"); 1311 - return NULL; 1312 - ) 1313 - 1314 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev(void) { 1315 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev called"); 1316 - return NULL; 1317 - ) 1318 - 1319 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev(void) { 1320 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev called"); 1321 - return NULL; 1322 - ) 1323 - 1324 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv(void) { 1325 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv called"); 1326 - return NULL; 1327 - ) 1328 - 1329 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE(void) { 1330 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE called"); 1331 - return NULL; 1332 - ) 1333 - 1334 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv(void) { 1335 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv called"); 1336 - return NULL; 1337 - ) 1338 - 1339 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv(void) { 1340 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv called"); 1341 - return NULL; 1342 - ) 1343 - 1344 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_(void) { 1345 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_ called"); 1346 - return NULL; 1347 - ) 1348 - 1349 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info(void) { 1350 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info called"); 1351 - return NULL; 1352 - ) 1353 - 1354 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv(void) { 1355 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE24EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv called"); 1356 - return NULL; 1357 - ) 1358 - 1359 - void *_ZZN6shazam15basic_signatureILNS_17signature_densityE24EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_(void) { 1360 - if (verbose) puts("STUB: _ZZN6shazam15basic_signatureILNS_17signature_densityE24EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_ called"); 1361 - return NULL; 1362 - ) 1363 - 1364 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev(void) { 1365 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED1Ev called"); 1366 - return NULL; 1367 - ) 1368 - 1369 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev(void) { 1370 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EED0Ev called"); 1371 - return NULL; 1372 - ) 1373 - 1374 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv(void) { 1375 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEv called"); 1376 - return NULL; 1377 - ) 1378 - 1379 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE(void) { 1380 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7__cloneEPNS0_6__baseISD_EE called"); 1381 - return NULL; 1382 - ) 1383 - 1384 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv(void) { 1385 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE7destroyEv called"); 1386 - return NULL; 1387 - ) 1388 - 1389 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv(void) { 1390 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE18destroy_deallocateEv called"); 1391 - return NULL; 1392 - ) 1393 - 1394 - void *_ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_(void) { 1395 - if (verbose) puts("STUB: _ZNSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EEclEOS9_ called"); 1396 - return NULL; 1397 - ) 1398 - 1399 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info(void) { 1400 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE6targetERKSt9type_info called"); 1401 - return NULL; 1402 - ) 1403 - 1404 - void *_ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv(void) { 1405 - if (verbose) puts("STUB: _ZNKSt3__110__function6__funcIZN6shazam15basic_signatureILNS2_17signature_densityE16EEC1ERKNS2_21packed_signature_viewEEUlNS2_16signature_headerEE_NS_9allocatorISA_EEFvS9_EE11target_typeEv called"); 1406 - return NULL; 1407 - ) 1408 - 1409 - void *_ZZN6shazam15basic_signatureILNS_17signature_densityE16EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_(void) { 1410 - if (verbose) puts("STUB: _ZZN6shazam15basic_signatureILNS_17signature_densityE16EEC1ERKNS_21packed_signature_viewEENKUlNS_16signature_headerEE_clES6_ called"); 1411 - return NULL; 1412 - ) 1413 - 1414 - void *_ZN6shazam11match_peaksEN3gsl4spanIK7peak_tfLln1EEERKNSt3__16vectorIS2_NS5_9allocatorIS2_EEEEffiRNS6_INS_7tfmatchENS7_ISC_EEEE(void) { 1415 - if (verbose) puts("STUB: _ZN6shazam11match_peaksEN3gsl4spanIK7peak_tfLln1EEERKNSt3__16vectorIS2_NS5_9allocatorIS2_EEEEffiRNS6_INS_7tfmatchENS7_ISC_EEEE called"); 1416 - return NULL; 1417 - ) 1418 - 1419 - void *_ZNSt3__16vectorIN6shazam7tfmatchENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJiRKjRKfRKiEEEvDpOT_(void) { 1420 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam7tfmatchENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJiRKjRKfRKiEEEvDpOT_ called"); 1421 - return NULL; 1422 - ) 1423 - 1424 - void *_ZNKSt3__113__vector_baseIN6shazam7tfmatchENS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 1425 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam7tfmatchENS_9allocatorIS2_EEE20__throw_length_errorEv called"); 1426 - return NULL; 1427 - ) 1428 - 1429 - void *_ZNSt3__114__split_bufferIN6shazam7tfmatchERNS_9allocatorIS2_EEEC2EmmS5_(void) { 1430 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam7tfmatchERNS_9allocatorIS2_EEEC2EmmS5_ called"); 1431 - return NULL; 1432 - ) 1433 - 1434 - void *_ZN6shazam13thresholdLerpERKNSt3__15arrayIfLm16EEEf(void) { 1435 - if (verbose) puts("STUB: _ZN6shazam13thresholdLerpERKNSt3__15arrayIfLm16EEEf called"); 1436 - return NULL; 1437 - ) 1438 - 1439 - void *_ZN6shazam15make_error_codeENS_10sigx_errorE(void) { 1440 - if (verbose) puts("STUB: _ZN6shazam15make_error_codeENS_10sigx_errorE called"); 1441 - return NULL; 1442 - ) 1443 - 1444 - void *_ZN6shazam21packed_signature_viewC2EN3gsl4spanIKcLln1EEE(void) { 1445 - if (verbose) puts("STUB: _ZN6shazam21packed_signature_viewC2EN3gsl4spanIKcLln1EEE called"); 1446 - return NULL; 1447 - ) 1448 - 1449 - void *_ZN6shazam21packed_signature_viewC1EN3gsl4spanIKcLln1EEE(void) { 1450 - if (verbose) puts("STUB: _ZN6shazam21packed_signature_viewC1EN3gsl4spanIKcLln1EEE called"); 1451 - return NULL; 1452 - ) 1453 - 1454 - void *_ZNK6shazam21packed_signature_view7headersERKNSt3__18functionIFvNS_16signature_headerEEEE(void) { 1455 - if (verbose) puts("STUB: _ZNK6shazam21packed_signature_view7headersERKNSt3__18functionIFvNS_16signature_headerEEEE called"); 1456 - return NULL; 1457 - ) 1458 - 1459 - void *_ZN6shazam17reinterpret_saferIPKjLi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 1460 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPKjLi0EEET_RKN3gsl4spanIKcLln1EEE called"); 1461 - return NULL; 1462 - ) 1463 - 1464 - void *_ZN6shazam11get_siginfoERKNS_21packed_signature_viewE(void) { 1465 - if (verbose) puts("STUB: _ZN6shazam11get_siginfoERKNS_21packed_signature_viewE called"); 1466 - return NULL; 1467 - ) 1468 - 1469 - void *_ZN12_GLOBAL__N_119type_from_magic_keyEN3gsl4spanIKcLln1EEE(void) { 1470 - if (verbose) puts("STUB: _ZN12_GLOBAL__N_119type_from_magic_keyEN3gsl4spanIKcLln1EEE called"); 1471 - return NULL; 1472 - ) 1473 - 1474 - void *_ZN6shazam4cropILNS_17signature_densityE2147483647EEENS_15basic_signatureIXT_EEERKS3_NSt3__16chrono8durationIjNS6_5ratioILl1ELl125EEEEESB_(void) { 1475 - if (verbose) puts("STUB: _ZN6shazam4cropILNS_17signature_densityE2147483647EEENS_15basic_signatureIXT_EEERKS3_NSt3__16chrono8durationIjNS6_5ratioILl1ELl125EEEEESB_ called"); 1476 - return NULL; 1477 - ) 1478 - 1479 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS4_RS5_EE(void) { 1480 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS4_RS5_EE called"); 1481 - return NULL; 1482 - ) 1483 - 1484 - void *_ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEEC2EmmS7_(void) { 1485 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEERNS3_IS5_EEEC2EmmS7_ called"); 1486 - return NULL; 1487 - ) 1488 - 1489 - void *_ZNSt12length_errorC1EPKc(void) { 1490 - if (verbose) puts("STUB: _ZNSt12length_errorC1EPKc called"); 1491 - return NULL; 1492 - ) 1493 - 1494 - void *_ZNSt3__113__lower_boundIRZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNS_6vectorIS6_NS_9allocatorIS6_EEEENS_6chrono8durationIjNS_5ratioILl1ELl125EEEEESI_EUlRS7_RKT0_E_NS4_7details13span_iteratorINS5_IKS3_Lln1EEELb0EEESI_EESK_SK_SK_RKT1_S6_(void) { 1495 - if (verbose) puts("STUB: _ZNSt3__113__lower_boundIRZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNS_6vectorIS6_NS_9allocatorIS6_EEEENS_6chrono8durationIjNS_5ratioILl1ELl125EEEEESI_EUlRS7_RKT0_E_NS4_7details13span_iteratorINS5_IKS3_Lln1EEELb0EEESI_EESK_SK_SK_RKT1_S6_ called"); 1496 - return NULL; 1497 - ) 1498 - 1499 - void *_ZNSt3__113__upper_boundIRZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNS_6vectorIS6_NS_9allocatorIS6_EEEENS_6chrono8durationIjNS_5ratioILl1ELl125EEEEESI_EUlRS7_RKT0_E0_NS4_7details13span_iteratorINS5_IKS3_Lln1EEELb0EEESI_EESK_SK_SK_RKT1_S6_(void) { 1500 - if (verbose) puts("STUB: _ZNSt3__113__upper_boundIRZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNS_6vectorIS6_NS_9allocatorIS6_EEEENS_6chrono8durationIjNS_5ratioILl1ELl125EEEEESI_EUlRS7_RKT0_E0_NS4_7details13span_iteratorINS5_IKS3_Lln1EEELb0EEESI_EESK_SK_SK_RKT1_S6_ called"); 1501 - return NULL; 1502 - ) 1503 - 1504 - void *_ZN3gsl4spanIK15spectral_peak_tLln1EEC1INSt3__16vectorIS1_NS5_9allocatorIS1_EEEEvEERKT_(void) { 1505 - if (verbose) puts("STUB: _ZN3gsl4spanIK15spectral_peak_tLln1EEC1INSt3__16vectorIS1_NS5_9allocatorIS1_EEEEvEERKT_ called"); 1506 - return NULL; 1507 - ) 1508 - 1509 - void *_ZN3gsl4spanIK15spectral_peak_tLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS2_T_(void) { 1510 - if (verbose) puts("STUB: _ZN3gsl4spanIK15spectral_peak_tLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS2_T_ called"); 1511 - return NULL; 1512 - ) 1513 - 1514 - void *_ZN6shazam17StaticCPUSearcherC2ENS_12CPUDatabasesERK5Timermm(void) { 1515 - if (verbose) puts("STUB: _ZN6shazam17StaticCPUSearcherC2ENS_12CPUDatabasesERK5Timermm called"); 1516 - return NULL; 1517 - ) 1518 - 1519 - void *_ZN6shazam17StaticCPUSearcherC1ENS_12CPUDatabasesERK5Timermm(void) { 1520 - if (verbose) puts("STUB: _ZN6shazam17StaticCPUSearcherC1ENS_12CPUDatabasesERK5Timermm called"); 1521 - return NULL; 1522 - ) 1523 - 1524 - void *_ZN6shazam17StaticCPUSearcher6searchERKNSt3__16vectorINS_15basic_signatureILNS_17signature_densityE24EEENS1_9allocatorIS5_EEEEmmRK19QueryConfigProviderNS1_8functionIFvRK14SearchResponseEEE(void) { 1525 - if (verbose) puts("STUB: _ZN6shazam17StaticCPUSearcher6searchERKNSt3__16vectorINS_15basic_signatureILNS_17signature_densityE24EEENS1_9allocatorIS5_EEEEmmRK19QueryConfigProviderNS1_8functionIFvRK14SearchResponseEEE called"); 1526 - return NULL; 1527 - ) 1528 - 1529 - void *_ZN6shazam17StaticCPUSearcherD1Ev(void) { 1530 - if (verbose) puts("STUB: _ZN6shazam17StaticCPUSearcherD1Ev called"); 1531 - return NULL; 1532 - ) 1533 - 1534 - void *_ZN6shazam17StaticCPUSearcherD0Ev(void) { 1535 - if (verbose) puts("STUB: _ZN6shazam17StaticCPUSearcherD0Ev called"); 1536 - return NULL; 1537 - ) 1538 - 1539 - void *_ZN6shazam17StaticCPUSearcherD2Ev(void) { 1540 - if (verbose) puts("STUB: _ZN6shazam17StaticCPUSearcherD2Ev called"); 1541 - return NULL; 1542 - ) 1543 - 1544 - void *_ZN6shazam11CPUSearcherD2Ev(void) { 1545 - if (verbose) puts("STUB: _ZN6shazam11CPUSearcherD2Ev called"); 1546 - return NULL; 1547 - ) 1548 - 1549 - void *_ZNSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEED2Ev(void) { 1550 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEED2Ev called"); 1551 - return NULL; 1552 - ) 1553 - 1554 - void *_ZNSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEE5clearEv(void) { 1555 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseI6ResultNS_9allocatorIS1_EEE5clearEv called"); 1556 - return NULL; 1557 - ) 1558 - 1559 - void *_ZN6shazam13virtual_arrayIcED2Ev(void) { 1560 - if (verbose) puts("STUB: _ZN6shazam13virtual_arrayIcED2Ev called"); 1561 - return NULL; 1562 - ) 1563 - 1564 - void *_ZN6shazam19parse_ancient_peaksERKNSt3__16vectorINS_21signature_header_typeENS0_9allocatorIS2_EEEERKNS1_INS1_INS_24ancient_dead_sig_point_tENS3_IS8_EEEENS3_ISA_EEEENS_17signature_densityENS0_6chrono8durationIhNS0_5ratioILl1ELl125EEEEE(void) { 1565 - if (verbose) puts("STUB: _ZN6shazam19parse_ancient_peaksERKNSt3__16vectorINS_21signature_header_typeENS0_9allocatorIS2_EEEERKNS1_INS1_INS_24ancient_dead_sig_point_tENS3_IS8_EEEENS3_ISA_EEEENS_17signature_densityENS0_6chrono8durationIhNS0_5ratioILl1ELl125EEEEE called"); 1566 - return NULL; 1567 - ) 1568 - 1569 - void *_ZNKSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEE20__throw_length_errorEv(void) { 1570 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEE20__throw_length_errorEv called"); 1571 - return NULL; 1572 - ) 1573 - 1574 - void *_ZNKSt3__113__vector_baseI15spectral_peak_tNS_9allocatorIS1_EEE20__throw_length_errorEv(void) { 1575 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseI15spectral_peak_tNS_9allocatorIS1_EEE20__throw_length_errorEv called"); 1576 - return NULL; 1577 - ) 1578 - 1579 - void *_ZN6shazam14density_filterI15spectral_peak_tE5flushEv(void) { 1580 - if (verbose) puts("STUB: _ZN6shazam14density_filterI15spectral_peak_tE5flushEv called"); 1581 - return NULL; 1582 - ) 1583 - 1584 - void *_ZN6shazam12cropped_infoERKNS_14signature_infoENSt3__16chrono8durationIjNS3_5ratioILl1ELl125EEEEES8_(void) { 1585 - if (verbose) puts("STUB: _ZN6shazam12cropped_infoERKNS_14signature_infoENSt3__16chrono8durationIjNS3_5ratioILl1ELl125EEEEES8_ called"); 1586 - return NULL; 1587 - ) 1588 - 1589 - void *_ZN6shazam18CPUDatabaseBuilderC2ESt16initializer_listI10SearchPlanE(void) { 1590 - if (verbose) puts("STUB: _ZN6shazam18CPUDatabaseBuilderC2ESt16initializer_listI10SearchPlanE called"); 1591 - return NULL; 1592 - ) 1593 - 1594 - void *_ZN6shazam18CPUDatabaseBuilderC1ESt16initializer_listI10SearchPlanE(void) { 1595 - if (verbose) puts("STUB: _ZN6shazam18CPUDatabaseBuilderC1ESt16initializer_listI10SearchPlanE called"); 1596 - return NULL; 1597 - ) 1598 - 1599 - void *_ZN6shazam18CPUDatabaseBuilder3addERKNS_15basic_signatureILNS_17signature_densityE16EEEyy(void) { 1600 - if (verbose) puts("STUB: _ZN6shazam18CPUDatabaseBuilder3addERKNS_15basic_signatureILNS_17signature_densityE16EEEyy called"); 1601 - return NULL; 1602 - ) 1603 - 1604 - void *_ZN6shazam18CPUDatabaseBuilder13addSigSegmentERKNS_15basic_signatureILNS_17signature_densityE16EEEyNSt3__16chrono8durationIfNS6_5ratioILl1ELl1EEEEENS8_IxNS9_ILl1ELl1000EEEEE(void) { 1605 - if (verbose) puts("STUB: _ZN6shazam18CPUDatabaseBuilder13addSigSegmentERKNS_15basic_signatureILNS_17signature_densityE16EEEyNSt3__16chrono8durationIfNS6_5ratioILl1ELl1EEEEENS8_IxNS9_ILl1ELl1000EEEEE called"); 1606 - return NULL; 1607 - ) 1608 - 1609 - void *_ZN6shazam18CPUDatabaseBuilder7addDataEyNSt3__16chrono8durationIfNS1_5ratioILl1ELl1EEEEENS3_IhNS4_ILl1ELl125EEEEEhNS3_IjS7_EERKNS1_6vectorI7peak_tfNS1_9allocatorISB_EEEENS3_IxNS4_ILl1ELl1000EEEEE(void) { 1610 - if (verbose) puts("STUB: _ZN6shazam18CPUDatabaseBuilder7addDataEyNSt3__16chrono8durationIfNS1_5ratioILl1ELl1EEEEENS3_IhNS4_ILl1ELl125EEEEEhNS3_IjS7_EERKNS1_6vectorI7peak_tfNS1_9allocatorISB_EEEENS3_IxNS4_ILl1ELl1000EEEEE called"); 1611 - return NULL; 1612 - ) 1613 - 1614 - void *_ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE6resizeEm(void) { 1615 - if (verbose) puts("STUB: _ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE6resizeEm called"); 1616 - return NULL; 1617 - ) 1618 - 1619 - void *_ZN6shazam18CPUDatabaseBuilder5buildEv(void) { 1620 - if (verbose) puts("STUB: _ZN6shazam18CPUDatabaseBuilder5buildEv called"); 1621 - return NULL; 1622 - ) 1623 - 1624 - void *_ZN6shazam18CPUDatabaseBuilder5resetEv(void) { 1625 - if (verbose) puts("STUB: _ZN6shazam18CPUDatabaseBuilder5resetEv called"); 1626 - return NULL; 1627 - ) 1628 - 1629 - void *_ZN6shazam6detail13writeLMFPDataIL8AlgoType1EEEvRKNSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENS3_9allocatorIS6_EEEERNS4_IcNS7_IcEEEERKNS3_6chrono8durationIyNS3_5ratioILl1ELl125EEEEE(void) { 1630 - if (verbose) puts("STUB: _ZN6shazam6detail13writeLMFPDataIL8AlgoType1EEEvRKNSt3__16vectorINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEENS3_9allocatorIS6_EEEERNS4_IcNS7_IcEEEERKNS3_6chrono8durationIyNS3_5ratioILl1ELl125EEEEE called"); 1631 - return NULL; 1632 - ) 1633 - 1634 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEE8__appendEm(void) { 1635 - if (verbose) puts("STUB: _ZNSt3__16vectorIcNS_9allocatorIcEEE8__appendEm called"); 1636 - return NULL; 1637 - ) 1638 - 1639 - void *_ZNKSt3__113__vector_baseIcNS_9allocatorIcEEE20__throw_length_errorEv(void) { 1640 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIcNS_9allocatorIcEEE20__throw_length_errorEv called"); 1641 - return NULL; 1642 - ) 1643 - 1644 - void *_ZN6shazam10link_bandsIL8AlgoType1EEEDaRKNS_6linkerIXT_EEERKNSt3__16vectorINS8_I15spectral_peak_tNS7_9allocatorIS9_EEEENSA_ISC_EEEENS7_6chrono8durationIjNS7_5ratioILl1ELl125EEEEERK19link_matrix_optionsm(void) { 1645 - if (verbose) puts("STUB: _ZN6shazam10link_bandsIL8AlgoType1EEEDaRKNS_6linkerIXT_EEERKNSt3__16vectorINS8_I15spectral_peak_tNS7_9allocatorIS9_EEEENSA_ISC_EEEENS7_6chrono8durationIjNS7_5ratioILl1ELl125EEEEERK19link_matrix_optionsm called"); 1646 - return NULL; 1647 - ) 1648 - 1649 - void *_ZN6shazam10matrix_forIL8AlgoType1ELPv0EEENS_14link_matrix_2dERK19link_matrix_optionsNSt3__16chrono8durationIjNS7_5ratioILl1ELl125EEEEE(void) { 1650 - if (verbose) puts("STUB: _ZN6shazam10matrix_forIL8AlgoType1ELPv0EEENS_14link_matrix_2dERK19link_matrix_optionsNSt3__16chrono8durationIjNS7_5ratioILl1ELl125EEEEE called"); 1651 - return NULL; 1652 - ) 1653 - 1654 - void *_ZNKSt3__113__vector_baseIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE20__throw_length_errorEv(void) { 1655 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam4lmfpILNS1_7fp_typeE0EEENS_9allocatorIS4_EEE20__throw_length_errorEv called"); 1656 - return NULL; 1657 - ) 1658 - 1659 - void *_ZN6shazam6kvsortIN3gsl4spanINS_4lmfpILNS_7fp_typeE0EEELln1EEEEEvRT_S8_(void) { 1660 - if (verbose) puts("STUB: _ZN6shazam6kvsortIN3gsl4spanINS_4lmfpILNS_7fp_typeE0EEELln1EEEEEvRT_S8_ called"); 1661 - return NULL; 1662 - ) 1663 - 1664 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEEC2Em(void) { 1665 - if (verbose) puts("STUB: _ZNSt3__16vectorIcNS_9allocatorIcEEEC2Em called"); 1666 - return NULL; 1667 - ) 1668 - 1669 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEE11__vallocateEm(void) { 1670 - if (verbose) puts("STUB: _ZNSt3__16vectorIcNS_9allocatorIcEEE11__vallocateEm called"); 1671 - return NULL; 1672 - ) 1673 - 1674 - void *_ZNKSt3__113__vector_baseIjNS_9allocatorIjEEE20__throw_length_errorEv(void) { 1675 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIjNS_9allocatorIjEEE20__throw_length_errorEv called"); 1676 - return NULL; 1677 - ) 1678 - 1679 - void *_ZNSt3__115allocate_sharedIN6shazam12SongDataBaseENS_9allocatorIS2_EEJEvEENS_10shared_ptrIT_EERKT0_DpOT1_(void) { 1680 - if (verbose) puts("STUB: _ZNSt3__115allocate_sharedIN6shazam12SongDataBaseENS_9allocatorIS2_EEJEvEENS_10shared_ptrIT_EERKT0_DpOT1_ called"); 1681 - return NULL; 1682 - ) 1683 - 1684 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEEC2IJEEES4_DpOT_(void) { 1685 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEEC2IJEEES4_DpOT_ called"); 1686 - return NULL; 1687 - ) 1688 - 1689 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEED1Ev(void) { 1690 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEED1Ev called"); 1691 - return NULL; 1692 - ) 1693 - 1694 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEED0Ev(void) { 1695 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEED0Ev called"); 1696 - return NULL; 1697 - ) 1698 - 1699 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEE16__on_zero_sharedEv(void) { 1700 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEE16__on_zero_sharedEv called"); 1701 - return NULL; 1702 - ) 1703 - 1704 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEE21__on_zero_shared_weakEv(void) { 1705 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam12SongDataBaseENS_9allocatorIS2_EEE21__on_zero_shared_weakEv called"); 1706 - return NULL; 1707 - ) 1708 - 1709 - void *_ZNSt3__115allocate_sharedIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEJEvEENS_10shared_ptrIT_EERKT0_DpOT1_(void) { 1710 - if (verbose) puts("STUB: _ZNSt3__115allocate_sharedIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEJEvEENS_10shared_ptrIT_EERKT0_DpOT1_ called"); 1711 - return NULL; 1712 - ) 1713 - 1714 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEEC2IJEEES4_DpOT_(void) { 1715 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEEC2IJEEES4_DpOT_ called"); 1716 - return NULL; 1717 - ) 1718 - 1719 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEED1Ev(void) { 1720 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEED1Ev called"); 1721 - return NULL; 1722 - ) 1723 - 1724 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEED0Ev(void) { 1725 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEED0Ev called"); 1726 - return NULL; 1727 - ) 1728 - 1729 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEE16__on_zero_sharedEv(void) { 1730 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEE16__on_zero_sharedEv called"); 1731 - return NULL; 1732 - ) 1733 - 1734 - void *_ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEE21__on_zero_shared_weakEv(void) { 1735 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceIN6shazam16CPUOnePtDatabaseENS_9allocatorIS2_EEE21__on_zero_shared_weakEv called"); 1736 - return NULL; 1737 - ) 1738 - 1739 - void *_ZNSt3__16vectorI10SearchPlanNS_9allocatorIS1_EEE11__vallocateEm(void) { 1740 - if (verbose) puts("STUB: _ZNSt3__16vectorI10SearchPlanNS_9allocatorIS1_EEE11__vallocateEm called"); 1741 - return NULL; 1742 - ) 1743 - 1744 - void *_ZNKSt3__113__vector_baseI10SearchPlanNS_9allocatorIS1_EEE20__throw_length_errorEv(void) { 1745 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseI10SearchPlanNS_9allocatorIS1_EEE20__throw_length_errorEv called"); 1746 - return NULL; 1747 - ) 1748 - 1749 - void *_ZNSt3__16vectorINS0_IcNS_9allocatorIcEEEENS1_IS3_EEEC2Em(void) { 1750 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_IcNS_9allocatorIcEEEENS1_IS3_EEEC2Em called"); 1751 - return NULL; 1752 - ) 1753 - 1754 - void *_ZNSt3__16vectorINS0_IcNS_9allocatorIcEEEENS1_IS3_EEE11__vallocateEm(void) { 1755 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_IcNS_9allocatorIcEEEENS1_IS3_EEE11__vallocateEm called"); 1756 - return NULL; 1757 - ) 1758 - 1759 - void *_ZNKSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEE20__throw_length_errorEv(void) { 1760 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEE20__throw_length_errorEv called"); 1761 - return NULL; 1762 - ) 1763 - 1764 - void *_ZN6shazam4cropILNS_17signature_densityE16EEENS_15basic_signatureIXT_EEERKS3_NSt3__16chrono8durationIjNS6_5ratioILl1ELl125EEEEESB_(void) { 1765 - if (verbose) puts("STUB: _ZN6shazam4cropILNS_17signature_densityE16EEENS_15basic_signatureIXT_EEERKS3_NSt3__16chrono8durationIjNS6_5ratioILl1ELl125EEEEESB_ called"); 1766 - return NULL; 1767 - ) 1768 - 1769 - void *_ZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNSt3__16vectorIS4_NS7_9allocatorIS4_EEEENS7_6chrono8durationIjNS7_5ratioILl1ELl125EEEEESH_(void) { 1770 - if (verbose) puts("STUB: _ZN6shazam9crop_bandI15spectral_peak_tEEvN3gsl4spanIKT_Lln1EEERNSt3__16vectorIS4_NS7_9allocatorIS4_EEEENS7_6chrono8durationIjNS7_5ratioILl1ELl125EEEEESH_ called"); 1771 - return NULL; 1772 - ) 1773 - 1774 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE11__vallocateEm(void) { 1775 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEE11__vallocateEm called"); 1776 - return NULL; 1777 - ) 1778 - 1779 - void *_ZNSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEED2Ev(void) { 1780 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEED2Ev called"); 1781 - return NULL; 1782 - ) 1783 - 1784 - void *_ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE7reserveEm(void) { 1785 - if (verbose) puts("STUB: _ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE7reserveEm called"); 1786 - return NULL; 1787 - ) 1788 - 1789 - void *_ZNKSt3__113__vector_baseI7peak_tfNS_9allocatorIS1_EEE20__throw_length_errorEv(void) { 1790 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseI7peak_tfNS_9allocatorIS1_EEE20__throw_length_errorEv called"); 1791 - return NULL; 1792 - ) 1793 - 1794 - void *_ZNSt3__16__sortIRNS_6__lessI7peak_tfS2_EEPS2_EEvT0_S6_T_(void) { 1795 - if (verbose) puts("STUB: _ZNSt3__16__sortIRNS_6__lessI7peak_tfS2_EEPS2_EEvT0_S6_T_ called"); 1796 - return NULL; 1797 - ) 1798 - 1799 - void *_ZNSt3__17__sort3IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_T_(void) { 1800 - if (verbose) puts("STUB: _ZNSt3__17__sort3IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_T_ called"); 1801 - return NULL; 1802 - ) 1803 - 1804 - void *_ZNSt3__17__sort4IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_S6_T_(void) { 1805 - if (verbose) puts("STUB: _ZNSt3__17__sort4IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_S6_T_ called"); 1806 - return NULL; 1807 - ) 1808 - 1809 - void *_ZNSt3__17__sort5IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_S6_S6_T_(void) { 1810 - if (verbose) puts("STUB: _ZNSt3__17__sort5IRNS_6__lessI7peak_tfS2_EEPS2_EEjT0_S6_S6_S6_S6_T_ called"); 1811 - return NULL; 1812 - ) 1813 - 1814 - void *_ZNSt3__118__insertion_sort_3IRNS_6__lessI7peak_tfS2_EEPS2_EEvT0_S6_T_(void) { 1815 - if (verbose) puts("STUB: _ZNSt3__118__insertion_sort_3IRNS_6__lessI7peak_tfS2_EEPS2_EEvT0_S6_T_ called"); 1816 - return NULL; 1817 - ) 1818 - 1819 - void *_ZNSt3__127__insertion_sort_incompleteIRNS_6__lessI7peak_tfS2_EEPS2_EEbT0_S6_T_(void) { 1820 - if (verbose) puts("STUB: _ZNSt3__127__insertion_sort_incompleteIRNS_6__lessI7peak_tfS2_EEPS2_EEbT0_S6_T_ called"); 1821 - return NULL; 1822 - ) 1823 - 1824 - void *_ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE8__appendEm(void) { 1825 - if (verbose) puts("STUB: _ZNSt3__16vectorI7peak_tfNS_9allocatorIS1_EEE8__appendEm called"); 1826 - return NULL; 1827 - ) 1828 - 1829 - void *_ZNKSt3__113__vector_baseIyNS_9allocatorIyEEE20__throw_length_errorEv(void) { 1830 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIyNS_9allocatorIyEEE20__throw_length_errorEv called"); 1831 - return NULL; 1832 - ) 1833 - 1834 - void *_ZNKSt3__113__vector_baseINS_6chrono8durationIfNS_5ratioILl1ELl1EEEEENS_9allocatorIS5_EEE20__throw_length_errorEv(void) { 1835 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseINS_6chrono8durationIfNS_5ratioILl1ELl1EEEEENS_9allocatorIS5_EEE20__throw_length_errorEv called"); 1836 - return NULL; 1837 - ) 1838 - 1839 - void *_ZNKSt3__113__vector_baseIhNS_9allocatorIhEEE20__throw_length_errorEv(void) { 1840 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIhNS_9allocatorIhEEE20__throw_length_errorEv called"); 1841 - return NULL; 1842 - ) 1843 - 1844 - void *_ZNKSt3__113__vector_baseINS_6chrono8durationIxNS_5ratioILl1ELl1000EEEEENS_9allocatorIS5_EEE20__throw_length_errorEv(void) { 1845 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseINS_6chrono8durationIxNS_5ratioILl1ELl1000EEEEENS_9allocatorIS5_EEE20__throw_length_errorEv called"); 1846 - return NULL; 1847 - ) 1848 - 1849 - void *_ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEED1Ev(void) { 1850 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEED1Ev called"); 1851 - return NULL; 1852 - ) 1853 - 1854 - void *_ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEED0Ev(void) { 1855 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEED0Ev called"); 1856 - return NULL; 1857 - ) 1858 - 1859 - void *_ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEE16__on_zero_sharedEv(void) { 1860 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEE16__on_zero_sharedEv called"); 1861 - return NULL; 1862 - ) 1863 - 1864 - void *_ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEE21__on_zero_shared_weakEv(void) { 1865 - if (verbose) puts("STUB: _ZNSt3__120__shared_ptr_emplaceINS_6vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS3_EEEENS4_IS6_EEE21__on_zero_shared_weakEv called"); 1866 - return NULL; 1867 - ) 1868 - 1869 - void *_ZNSt3__113__vector_baseIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEED2Ev(void) { 1870 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEED2Ev called"); 1871 - return NULL; 1872 - ) 1873 - 1874 - void *_ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE22__construct_one_at_endIJR10SearchPlanRNS0_IcNS3_IcEEEEEEEvDpOT_(void) { 1875 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE22__construct_one_at_endIJR10SearchPlanRNS0_IcNS3_IcEEEEEEEvDpOT_ called"); 1876 - return NULL; 1877 - ) 1878 - 1879 - void *_ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJR10SearchPlanRNS0_IcNS3_IcEEEEEEEvDpOT_(void) { 1880 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJR10SearchPlanRNS0_IcNS3_IcEEEEEEEvDpOT_ called"); 1881 - return NULL; 1882 - ) 1883 - 1884 - void *_ZN3gsl4spanIcLln1EEC1INSt3__16vectorIcNS3_9allocatorIcEEEEvEERT_(void) { 1885 - if (verbose) puts("STUB: _ZN3gsl4spanIcLln1EEC1INSt3__16vectorIcNS3_9allocatorIcEEEEvEERT_ called"); 1886 - return NULL; 1887 - ) 1888 - 1889 - void *_ZN3gsl4spanIcLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPcT_(void) { 1890 - if (verbose) puts("STUB: _ZN3gsl4spanIcLln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPcT_ called"); 1891 - return NULL; 1892 - ) 1893 - 1894 - void *_ZN6shazam15CPULMFPDataBaseC2ERK10SearchPlanN3gsl4spanIcLln1EEE(void) { 1895 - if (verbose) puts("STUB: _ZN6shazam15CPULMFPDataBaseC2ERK10SearchPlanN3gsl4spanIcLln1EEE called"); 1896 - return NULL; 1897 - ) 1898 - 1899 - void *_Z5visitIN6shazam15CPULMFPDataBase12prefix_stripEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_(void) { 1900 - if (verbose) puts("STUB: _Z5visitIN6shazam15CPULMFPDataBase12prefix_stripEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_ called"); 1901 - return NULL; 1902 - ) 1903 - 1904 - void *_Z5visitIN6shazam15CPULMFPDataBase14landmarks_initEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_(void) { 1905 - if (verbose) puts("STUB: _Z5visitIN6shazam15CPULMFPDataBase14landmarks_initEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_ called"); 1906 - return NULL; 1907 - ) 1908 - 1909 - void *_Z5visitIN6shazam15CPULMFPDataBase11ptable_initEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_(void) { 1910 - if (verbose) puts("STUB: _Z5visitIN6shazam15CPULMFPDataBase11ptable_initEJRN3gsl4spanIcLln1EEEEEDa8AlgoTypeOT_DpOT0_ called"); 1911 - return NULL; 1912 - ) 1913 - 1914 - void *_ZNK6shazam15CPULMFPDataBase12prefix_stripclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE(void) { 1915 - if (verbose) puts("STUB: _ZNK6shazam15CPULMFPDataBase12prefix_stripclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE called"); 1916 - return NULL; 1917 - ) 1918 - 1919 - void *_ZN6shazam15getLMFPSuffixesIL8AlgoType1EEENSt3__16vectorIcNS2_9allocatorIcEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE(void) { 1920 - if (verbose) puts("STUB: _ZN6shazam15getLMFPSuffixesIL8AlgoType1EEENSt3__16vectorIcNS2_9allocatorIcEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE called"); 1921 - return NULL; 1922 - ) 1923 - 1924 - void *_ZN6shazam10lmfpAsAlgoIL8AlgoType1EEEDaRN3gsl4spanIcLln1EEE(void) { 1925 - if (verbose) puts("STUB: _ZN6shazam10lmfpAsAlgoIL8AlgoType1EEEDaRN3gsl4spanIcLln1EEE called"); 1926 - return NULL; 1927 - ) 1928 - 1929 - void *_ZNSt3__16vectorIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE6resizeEm(void) { 1930 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE6resizeEm called"); 1931 - return NULL; 1932 - ) 1933 - 1934 - void *_ZNSt3__16vectorIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE8__appendEm(void) { 1935 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE8__appendEm called"); 1936 - return NULL; 1937 - ) 1938 - 1939 - void *_ZNKSt3__113__vector_baseIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE20__throw_length_errorEv(void) { 1940 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam9fp_suffixIL8AlgoType1EEENS_9allocatorIS4_EEE20__throw_length_errorEv called"); 1941 - return NULL; 1942 - ) 1943 - 1944 - void *_ZNK6shazam15CPULMFPDataBase14landmarks_initclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE(void) { 1945 - if (verbose) puts("STUB: _ZNK6shazam15CPULMFPDataBase14landmarks_initclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE called"); 1946 - return NULL; 1947 - ) 1948 - 1949 - void *_ZN6shazam12getLandmarksIL8AlgoType1EEENSt3__16vectorIjNS2_9allocatorIjEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE(void) { 1950 - if (verbose) puts("STUB: _ZN6shazam12getLandmarksIL8AlgoType1EEENSt3__16vectorIjNS2_9allocatorIjEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE called"); 1951 - return NULL; 1952 - ) 1953 - 1954 - void *_ZNSt3__16vectorIjNS_9allocatorIjEEE6resizeEm(void) { 1955 - if (verbose) puts("STUB: _ZNSt3__16vectorIjNS_9allocatorIjEEE6resizeEm called"); 1956 - return NULL; 1957 - ) 1958 - 1959 - void *_ZNSt3__16vectorIjNS_9allocatorIjEEE8__appendEm(void) { 1960 - if (verbose) puts("STUB: _ZNSt3__16vectorIjNS_9allocatorIjEEE8__appendEm called"); 1961 - return NULL; 1962 - ) 1963 - 1964 - void *_ZNK6shazam15CPULMFPDataBase11ptable_initclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE(void) { 1965 - if (verbose) puts("STUB: _ZNK6shazam15CPULMFPDataBase11ptable_initclIL8AlgoType1EEEDaN3gsl4spanIcLln1EEE called"); 1966 - return NULL; 1967 - ) 1968 - 1969 - void *_ZN6shazam14genPrefixTableIL8AlgoType1EEENSt3__16vectorIjNS2_9allocatorIjEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE(void) { 1970 - if (verbose) puts("STUB: _ZN6shazam14genPrefixTableIL8AlgoType1EEENSt3__16vectorIjNS2_9allocatorIjEEEERKN3gsl4spanINS_4lmfpIXsr4algoIXT_EEE6fpTypeEEELln1EEE called"); 1971 - return NULL; 1972 - ) 1973 - 1974 - void *_ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE(void) { 1975 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_EE called"); 1976 - return NULL; 1977 - ) 1978 - 1979 - void *_ZNKSt3__113__vector_baseIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 1980 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam15CPULMFPDataBaseENS_9allocatorIS2_EEE20__throw_length_errorEv called"); 1981 - return NULL; 1982 - ) 1983 - 1984 - void *_ZNSt3__114__split_bufferIN6shazam15CPULMFPDataBaseERNS_9allocatorIS2_EEEC2EmmS5_(void) { 1985 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam15CPULMFPDataBaseERNS_9allocatorIS2_EEEC2EmmS5_ called"); 1986 - return NULL; 1987 - ) 1988 - 1989 - void *_ZNSt3__146__construct_backward_with_exception_guaranteesINS_9allocatorIN6shazam15CPULMFPDataBaseEEEPS3_EEvRT_T0_S8_RS8_(void) { 1990 - if (verbose) puts("STUB: _ZNSt3__146__construct_backward_with_exception_guaranteesINS_9allocatorIN6shazam15CPULMFPDataBaseEEEPS3_EEvRT_T0_S8_RS8_ called"); 1991 - return NULL; 1992 - ) 1993 - 1994 - void *_ZNSt3__114__split_bufferIN6shazam15CPULMFPDataBaseERNS_9allocatorIS2_EEED2Ev(void) { 1995 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam15CPULMFPDataBaseERNS_9allocatorIS2_EEED2Ev called"); 1996 - return NULL; 1997 - ) 1998 - 1999 - void *__chkstk_darwin(void) { 2000 - if (verbose) puts("STUB: __chkstk_darwin called"); 2001 - return NULL; 2002 - ) 2003 - 2004 - void *__chkstk_darwin_llvm_probe(void) { 2005 - if (verbose) puts("STUB: __chkstk_darwin_llvm_probe called"); 2006 - return NULL; 2007 - ) 2008 - 2009 - void *_ZN18sig_extractor_pipeI15spectral_peak_tEC2E14signature_typei17signature_options(void) { 2010 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tEC2E14signature_typei17signature_options called"); 2011 - return NULL; 2012 - ) 2013 - 2014 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE15getStreamingSigEN6shazam17signature_densityE(void) { 2015 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE15getStreamingSigEN6shazam17signature_densityE called"); 2016 - return NULL; 2017 - ) 2018 - 2019 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE22set_max_rolling_bufferEf(void) { 2020 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE22set_max_rolling_bufferEf called"); 2021 - return NULL; 2022 - ) 2023 - 2024 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE14getWindowedSigEN6shazam17signature_densityE(void) { 2025 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE14getWindowedSigEN6shazam17signature_densityE called"); 2026 - return NULL; 2027 - ) 2028 - 2029 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE17getProgressiveSigEN6shazam17signature_densityE(void) { 2030 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE17getProgressiveSigEN6shazam17signature_densityE called"); 2031 - return NULL; 2032 - ) 2033 - 2034 - void *_ZN18sig_extractor_pipeI15spectral_peak_tEC1E14signature_typei17signature_options(void) { 2035 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tEC1E14signature_typei17signature_options called"); 2036 - return NULL; 2037 - ) 2038 - 2039 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE20stream_flow_internalEPKfi(void) { 2040 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE20stream_flow_internalEPKfi called"); 2041 - return NULL; 2042 - ) 2043 - 2044 - void *_ZN3gsl9make_spanIKfEENS_4spanIT_Lln1EEEPS3_NS4_10index_typeE(void) { 2045 - if (verbose) puts("STUB: _ZN3gsl9make_spanIKfEENS_4spanIT_Lln1EEEPS3_NS4_10index_typeE called"); 2046 - return NULL; 2047 - ) 2048 - 2049 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE17flow_single_frameEPKf(void) { 2050 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE17flow_single_frameEPKf called"); 2051 - return NULL; 2052 - ) 2053 - 2054 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE6resizeEm(void) { 2055 - if (verbose) puts("STUB: _ZNSt3__16vectorIfNS_9allocatorIfEEE6resizeEm called"); 2056 - return NULL; 2057 - ) 2058 - 2059 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE11stream_flowEPKsi(void) { 2060 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE11stream_flowEPKsi called"); 2061 - return NULL; 2062 - ) 2063 - 2064 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE11stream_flowEPKfi(void) { 2065 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE11stream_flowEPKfi called"); 2066 - return NULL; 2067 - ) 2068 - 2069 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE16get_sample_countEv(void) { 2070 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE16get_sample_countEv called"); 2071 - return NULL; 2072 - ) 2073 - 2074 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE19get_samples_secondsEv(void) { 2075 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE19get_samples_secondsEv called"); 2076 - return NULL; 2077 - ) 2078 - 2079 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE13get_signatureERNSt3__16vectorIcNS2_9allocatorIcEEEE(void) { 2080 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE13get_signatureERNSt3__16vectorIcNS2_9allocatorIcEEEE called"); 2081 - return NULL; 2082 - ) 2083 - 2084 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE5resetEv(void) { 2085 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE5resetEv called"); 2086 - return NULL; 2087 - ) 2088 - 2089 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE19get_spectral_outputEv(void) { 2090 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE19get_spectral_outputEv called"); 2091 - return NULL; 2092 - ) 2093 - 2094 - void *_ZN18sig_extractor_pipeI15spectral_peak_tE9flush_fftEv(void) { 2095 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tE9flush_fftEv called"); 2096 - return NULL; 2097 - ) 2098 - 2099 - void *_ZN12_GLOBAL__N_17get_sigERKNSt3__15dequeI15spectral_peak_tNS0_9allocatorIS2_EEEERKN6shazam14signature_infoENS8_17signature_densityEbm(void) { 2100 - if (verbose) puts("STUB: _ZN12_GLOBAL__N_17get_sigERKNSt3__15dequeI15spectral_peak_tNS0_9allocatorIS2_EEEERKN6shazam14signature_infoENS8_17signature_densityEbm called"); 2101 - return NULL; 2102 - ) 2103 - 2104 - void *_Z12window_peaksI15spectral_peak_tENSt3__15dequeIT_NS1_9allocatorIS3_EEEERS6_f(void) { 2105 - if (verbose) puts("STUB: _Z12window_peaksI15spectral_peak_tENSt3__15dequeIT_NS1_9allocatorIS3_EEEERS6_f called"); 2106 - return NULL; 2107 - ) 2108 - 2109 - void *_ZN18sig_extractor_pipeI15spectral_peak_tED1Ev(void) { 2110 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tED1Ev called"); 2111 - return NULL; 2112 - ) 2113 - 2114 - void *_ZN18sig_extractor_pipeI15spectral_peak_tED0Ev(void) { 2115 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tED0Ev called"); 2116 - return NULL; 2117 - ) 2118 - 2119 - void *_ZN10fft_streamC2Ev(void) { 2120 - if (verbose) puts("STUB: _ZN10fft_streamC2Ev called"); 2121 - return NULL; 2122 - ) 2123 - 2124 - void *_ZNSt3__112__deque_baseI15spectral_peak_tNS_9allocatorIS1_EEED2Ev(void) { 2125 - if (verbose) puts("STUB: _ZNSt3__112__deque_baseI15spectral_peak_tNS_9allocatorIS1_EEED2Ev called"); 2126 - return NULL; 2127 - ) 2128 - 2129 - void *_ZNSt3__112__deque_baseI15spectral_peak_tNS_9allocatorIS1_EEE5clearEv(void) { 2130 - if (verbose) puts("STUB: _ZNSt3__112__deque_baseI15spectral_peak_tNS_9allocatorIS1_EEE5clearEv called"); 2131 - return NULL; 2132 - ) 2133 - 2134 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEED2Ev(void) { 2135 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEED2Ev called"); 2136 - return NULL; 2137 - ) 2138 - 2139 - void *_ZNK3gsl4spanIKfLln1EE12make_subspanEllNS2_16subspan_selectorILln1EEE(void) { 2140 - if (verbose) puts("STUB: _ZNK3gsl4spanIKfLln1EE12make_subspanEllNS2_16subspan_selectorILln1EEE called"); 2141 - return NULL; 2142 - ) 2143 - 2144 - void *_Z17BandSpectralPeaksINSt3__116__deque_iteratorI15spectral_peak_tPKS2_RS3_PKS4_lLl512EEENS0_6vectorINS9_IS2_NS0_9allocatorIS2_EEEENSA_ISC_EEEEET0_T_SG_N6shazam17signature_densityEmb(void) { 2145 - if (verbose) puts("STUB: _Z17BandSpectralPeaksINSt3__116__deque_iteratorI15spectral_peak_tPKS2_RS3_PKS4_lLl512EEENS0_6vectorINS9_IS2_NS0_9allocatorIS2_EEEENSA_ISC_EEEEET0_T_SG_N6shazam17signature_densityEmb called"); 2146 - return NULL; 2147 - ) 2148 - 2149 - void *_Z14addPeakToBandsI15spectral_peak_tNSt3__16vectorINS2_IS0_NS1_9allocatorIS0_EEEENS3_IS5_EEEEEvRKT_RT0_(void) { 2150 - if (verbose) puts("STUB: _Z14addPeakToBandsI15spectral_peak_tNSt3__16vectorINS2_IS0_NS1_9allocatorIS0_EEEENS3_IS5_EEEEEvRKT_RT0_ called"); 2151 - return NULL; 2152 - ) 2153 - 2154 - void *_ZNSt3__115is_sorted_untilINS_16__deque_iteratorI15spectral_peak_tPKS2_RS3_PKS4_lLl512EEENS_6__lessIS2_S2_EEEET_SB_SB_T0_(void) { 2155 - if (verbose) puts("STUB: _ZNSt3__115is_sorted_untilINS_16__deque_iteratorI15spectral_peak_tPKS2_RS3_PKS4_lLl512EEENS_6__lessIS2_S2_EEEET_SB_SB_T0_ called"); 2156 - return NULL; 2157 - ) 2158 - 2159 - void *_ZNSt3__16vectorImNS_9allocatorImEEEC2EmRKm(void) { 2160 - if (verbose) puts("STUB: _ZNSt3__16vectorImNS_9allocatorImEEEC2EmRKm called"); 2161 - return NULL; 2162 - ) 2163 - 2164 - void *_ZNSt3__16vectorImNS_9allocatorImEEE11__vallocateEm(void) { 2165 - if (verbose) puts("STUB: _ZNSt3__16vectorImNS_9allocatorImEEE11__vallocateEm called"); 2166 - return NULL; 2167 - ) 2168 - 2169 - void *_ZNKSt3__113__vector_baseImNS_9allocatorImEEE20__throw_length_errorEv(void) { 2170 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseImNS_9allocatorImEEE20__throw_length_errorEv called"); 2171 - return NULL; 2172 - ) 2173 - 2174 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEC2Em(void) { 2175 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEC2Em called"); 2176 - return NULL; 2177 - ) 2178 - 2179 - void *_ZNSt3__16__sortIRNS_6__lessI15spectral_peak_tS2_EEPS2_EEvT0_S6_T_(void) { 2180 - if (verbose) puts("STUB: _ZNSt3__16__sortIRNS_6__lessI15spectral_peak_tS2_EEPS2_EEvT0_S6_T_ called"); 2181 - return NULL; 2182 - ) 2183 - 2184 - void *_ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEC2ERKS6_(void) { 2185 - if (verbose) puts("STUB: _ZNSt3__16vectorINS0_I15spectral_peak_tNS_9allocatorIS1_EEEENS2_IS4_EEEC2ERKS6_ called"); 2186 - return NULL; 2187 - ) 2188 - 2189 - void *_ZN18sig_extractor_pipeI15spectral_peak_tED2Ev(void) { 2190 - if (verbose) puts("STUB: _ZN18sig_extractor_pipeI15spectral_peak_tED2Ev called"); 2191 - return NULL; 2192 - ) 2193 - 2194 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE26__maybe_remove_front_spareEb(void) { 2195 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE26__maybe_remove_front_spareEb called"); 2196 - return NULL; 2197 - ) 2198 - 2199 - void *_ZNSt3__16vectorIfNS_9allocatorIfEEE8__appendEm(void) { 2200 - if (verbose) puts("STUB: _ZNSt3__16vectorIfNS_9allocatorIfEEE8__appendEm called"); 2201 - return NULL; 2202 - ) 2203 - 2204 - void *_ZN3gsl12final_actionIZN18sig_extractor_pipeI15spectral_peak_tE17getProgressiveSigEN6shazam17signature_densityEEUlvE_ED2Ev(void) { 2205 - if (verbose) puts("STUB: _ZN3gsl12final_actionIZN18sig_extractor_pipeI15spectral_peak_tE17getProgressiveSigEN6shazam17signature_densityEEUlvE_ED2Ev called"); 2206 - return NULL; 2207 - ) 2208 - 2209 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE5eraseENS_16__deque_iteratorIS1_PKS1_RS6_PKS7_lLl512EEESB_(void) { 2210 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE5eraseENS_16__deque_iteratorIS1_PKS1_RS6_PKS7_lLl512EEESB_ called"); 2211 - return NULL; 2212 - ) 2213 - 2214 - void *_ZNKSt3__116__deque_iteratorI15spectral_peak_tPS1_RS1_PS2_lLl512EEplEl(void) { 2215 - if (verbose) puts("STUB: _ZNKSt3__116__deque_iteratorI15spectral_peak_tPS1_RS1_PS2_lLl512EEplEl called"); 2216 - return NULL; 2217 - ) 2218 - 2219 - void *_ZNSt3__113move_backwardI15spectral_peak_tPS1_RS1_PS2_lLl512ES1_S2_S3_S4_lLl512EEENS_16__deque_iteratorIT5_T6_T7_T8_T9_XT10_EEENS5_IT_T0_T1_T2_T3_XT4_EEESH_SB_(void) { 2220 - if (verbose) puts("STUB: _ZNSt3__113move_backwardI15spectral_peak_tPS1_RS1_PS2_lLl512ES1_S2_S3_S4_lLl512EEENS_16__deque_iteratorIT5_T6_T7_T8_T9_XT10_EEENS5_IT_T0_T1_T2_T3_XT4_EEESH_SB_ called"); 2221 - return NULL; 2222 - ) 2223 - 2224 - void *_ZNSt3__14moveI15spectral_peak_tPS1_RS1_PS2_lLl512ES1_S2_S3_S4_lLl512EEENS_16__deque_iteratorIT5_T6_T7_T8_T9_XT10_EEENS5_IT_T0_T1_T2_T3_XT4_EEESH_SB_(void) { 2225 - if (verbose) puts("STUB: _ZNSt3__14moveI15spectral_peak_tPS1_RS1_PS2_lLl512ES1_S2_S3_S4_lLl512EEENS_16__deque_iteratorIT5_T6_T7_T8_T9_XT10_EEENS5_IT_T0_T1_T2_T3_XT4_EEESH_SB_ called"); 2226 - return NULL; 2227 - ) 2228 - 2229 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE25__maybe_remove_back_spareEb(void) { 2230 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE25__maybe_remove_back_spareEb called"); 2231 - return NULL; 2232 - ) 2233 - 2234 - void *_ZNSt3__113move_backwardIP15spectral_peak_tS1_S2_RS1_PS2_lLl512EEENS_16__deque_iteratorIT0_T1_T2_T3_T4_XT5_EEET_SC_SB_PNS_9enable_ifIXsr33__is_cpp17_random_access_iteratorISC_EE5valueEvE4typeE(void) { 2235 - if (verbose) puts("STUB: _ZNSt3__113move_backwardIP15spectral_peak_tS1_S2_RS1_PS2_lLl512EEENS_16__deque_iteratorIT0_T1_T2_T3_T4_XT5_EEET_SC_SB_PNS_9enable_ifIXsr33__is_cpp17_random_access_iteratorISC_EE5valueEvE4typeE called"); 2236 - return NULL; 2237 - ) 2238 - 2239 - void *_ZNSt3__14moveIP15spectral_peak_tS1_S2_RS1_PS2_lLl512EEENS_16__deque_iteratorIT0_T1_T2_T3_T4_XT5_EEET_SC_SB_PNS_9enable_ifIXsr33__is_cpp17_random_access_iteratorISC_EE5valueEvE4typeE(void) { 2240 - if (verbose) puts("STUB: _ZNSt3__14moveIP15spectral_peak_tS1_S2_RS1_PS2_lLl512EEENS_16__deque_iteratorIT0_T1_T2_T3_T4_XT5_EEET_SC_SB_PNS_9enable_ifIXsr33__is_cpp17_random_access_iteratorISC_EE5valueEvE4typeE called"); 2241 - return NULL; 2242 - ) 2243 - 2244 - void *_ZN3gsl12final_actionIZN18sig_extractor_pipeI15spectral_peak_tE14getWindowedSigEN6shazam17signature_densityEEUlvE_ED2Ev(void) { 2245 - if (verbose) puts("STUB: _ZN3gsl12final_actionIZN18sig_extractor_pipeI15spectral_peak_tE14getWindowedSigEN6shazam17signature_densityEEUlvE_ED2Ev called"); 2246 - return NULL; 2247 - ) 2248 - 2249 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEEC2ERKS4_(void) { 2250 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEEC2ERKS4_ called"); 2251 - return NULL; 2252 - ) 2253 - 2254 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE8__appendINS_16__deque_iteratorIS1_PKS1_RS7_PKS8_lLl512EEEEEvT_SD_PNS_9enable_ifIXsr27__is_cpp17_forward_iteratorISD_EE5valueEvE4typeE(void) { 2255 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE8__appendINS_16__deque_iteratorIS1_PKS1_RS7_PKS8_lLl512EEEEEvT_SD_PNS_9enable_ifIXsr27__is_cpp17_forward_iteratorISD_EE5valueEvE4typeE called"); 2256 - return NULL; 2257 - ) 2258 - 2259 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE19__add_back_capacityEm(void) { 2260 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE19__add_back_capacityEm called"); 2261 - return NULL; 2262 - ) 2263 - 2264 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEE9push_backEOS2_(void) { 2265 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEE9push_backEOS2_ called"); 2266 - return NULL; 2267 - ) 2268 - 2269 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEE10push_frontEOS2_(void) { 2270 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIP15spectral_peak_tNS_9allocatorIS2_EEE10push_frontEOS2_ called"); 2271 - return NULL; 2272 - ) 2273 - 2274 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tRNS_9allocatorIS2_EEE9push_backEOS2_(void) { 2275 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIP15spectral_peak_tRNS_9allocatorIS2_EEE9push_backEOS2_ called"); 2276 - return NULL; 2277 - ) 2278 - 2279 - void *_ZNSt3__114__split_bufferIP15spectral_peak_tRNS_9allocatorIS2_EEE10push_frontERKS2_(void) { 2280 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIP15spectral_peak_tRNS_9allocatorIS2_EEE10push_frontERKS2_ called"); 2281 - return NULL; 2282 - ) 2283 - 2284 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEEC2INS_16__deque_iteratorIS1_PS1_RS1_PS7_lLl512EEEEET_SB_PNS_9enable_ifIXsr25__is_cpp17_input_iteratorISB_EE5valueEvE4typeE(void) { 2285 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEEC2INS_16__deque_iteratorIS1_PS1_RS1_PS7_lLl512EEEEET_SB_PNS_9enable_ifIXsr25__is_cpp17_input_iteratorISB_EE5valueEvE4typeE called"); 2286 - return NULL; 2287 - ) 2288 - 2289 - void *_ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE8__appendINS_16__deque_iteratorIS1_PS1_RS1_PS7_lLl512EEEEEvT_SB_PNS_9enable_ifIXsr27__is_cpp17_forward_iteratorISB_EE5valueEvE4typeE(void) { 2290 - if (verbose) puts("STUB: _ZNSt3__15dequeI15spectral_peak_tNS_9allocatorIS1_EEE8__appendINS_16__deque_iteratorIS1_PS1_RS1_PS7_lLl512EEEEEvT_SB_PNS_9enable_ifIXsr27__is_cpp17_forward_iteratorISB_EE5valueEvE4typeE called"); 2291 - return NULL; 2292 - ) 2293 - 2294 - void *_ZN3gsl9make_spanIfEENS_4spanIT_Lln1EEEPS2_NS3_10index_typeE(void) { 2295 - if (verbose) puts("STUB: _ZN3gsl9make_spanIfEENS_4spanIT_Lln1EEEPS2_NS3_10index_typeE called"); 2296 - return NULL; 2297 - ) 2298 - 2299 - void *_Z13get_peak_bandf(void) { 2300 - if (verbose) puts("STUB: _Z13get_peak_bandf called"); 2301 - return NULL; 2302 - ) 2303 - 2304 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE7reserveEm(void) { 2305 - if (verbose) puts("STUB: _ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE7reserveEm called"); 2306 - return NULL; 2307 - ) 2308 - 2309 - void *_Z13chooseAnchorsRKNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEEEjRKN6shazam10frame_infoERS4_(void) { 2310 - if (verbose) puts("STUB: _Z13chooseAnchorsRKNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEEEjRKN6shazam10frame_infoERS4_ called"); 2311 - return NULL; 2312 - ) 2313 - 2314 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEEC2ERKS4_(void) { 2315 - if (verbose) puts("STUB: _ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEEC2ERKS4_ called"); 2316 - return NULL; 2317 - ) 2318 - 2319 - void *_ZN6shazam18SumoHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void) { 2320 - if (verbose) puts("STUB: _ZN6shazam18SumoHeaderIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE called"); 2321 - return NULL; 2322 - ) 2323 - 2324 - void *_ZN10fft_stream5resetEv(void) { 2325 - if (verbose) puts("STUB: _ZN10fft_stream5resetEv called"); 2326 - return NULL; 2327 - ) 2328 - 2329 - void *_ZN10fft_stream10checkpointEv(void) { 2330 - if (verbose) puts("STUB: _ZN10fft_stream10checkpointEv called"); 2331 - return NULL; 2332 - ) 2333 - 2334 - void *_ZN10fft_stream6rewindEv(void) { 2335 - if (verbose) puts("STUB: _ZN10fft_stream6rewindEv called"); 2336 - return NULL; 2337 - ) 2338 - 2339 - void *_ZN10fft_stream11stream_flowEPKfPfPNSt3__17complexIfEE(void) { 2340 - if (verbose) puts("STUB: _ZN10fft_stream11stream_flowEPKfPfPNSt3__17complexIfEE called"); 2341 - return NULL; 2342 - ) 2343 - 2344 - void *_ZNSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev(void) { 2345 - if (verbose) puts("STUB: _ZNSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev called"); 2346 - return NULL; 2347 - ) 2348 - 2349 - void *_ZThn16_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev(void) { 2350 - if (verbose) puts("STUB: _ZThn16_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev called"); 2351 - return NULL; 2352 - ) 2353 - 2354 - void *_ZTv0_n24_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev(void) { 2355 - if (verbose) puts("STUB: _ZTv0_n24_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED1Ev called"); 2356 - return NULL; 2357 - ) 2358 - 2359 - void *_ZNSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev(void) { 2360 - if (verbose) puts("STUB: _ZNSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev called"); 2361 - return NULL; 2362 - ) 2363 - 2364 - void *_ZThn16_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev(void) { 2365 - if (verbose) puts("STUB: _ZThn16_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev called"); 2366 - return NULL; 2367 - ) 2368 - 2369 - void *_ZTv0_n24_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev(void) { 2370 - if (verbose) puts("STUB: _ZTv0_n24_NSt3__113basic_fstreamIcNS_11char_traitsIcEEED0Ev called"); 2371 - return NULL; 2372 - ) 2373 - 2374 - void *_ZN6shazam3ccp26validateFirstClusterCmdPktERKN3gsl4spanIKcLln1EEE(void) { 2375 - if (verbose) puts("STUB: _ZN6shazam3ccp26validateFirstClusterCmdPktERKN3gsl4spanIKcLln1EEE called"); 2376 - return NULL; 2377 - ) 2378 - 2379 - void *_ZN6shazam17reinterpret_saferIPK13ClusterCmdPktLi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 2380 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPK13ClusterCmdPktLi0EEET_RKN3gsl4spanIKcLln1EEE called"); 2381 - return NULL; 2382 - ) 2383 - 2384 - void *_ZN6shazam3ccp25validateNextClusterCmdPktERKN3gsl4spanIKcLln1EEEPK13ClusterCmdPktmm(void) { 2385 - if (verbose) puts("STUB: _ZN6shazam3ccp25validateNextClusterCmdPktERKN3gsl4spanIKcLln1EEEPK13ClusterCmdPktmm called"); 2386 - return NULL; 2387 - ) 2388 - 2389 - void *_ZN6shazam3ccp16validateChecksumEPK13ClusterCmdPktPKcS5_(void) { 2390 - if (verbose) puts("STUB: _ZN6shazam3ccp16validateChecksumEPK13ClusterCmdPktPKcS5_ called"); 2391 - return NULL; 2392 - ) 2393 - 2394 - void *_ZN6shazam21ClusterCmdPktIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void) { 2395 - if (verbose) puts("STUB: _ZN6shazam21ClusterCmdPktIteratorEN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE called"); 2396 - return NULL; 2397 - ) 2398 - 2399 - void *_ZN3gsl9make_spanIcEENS_4spanIT_Lln1EEEPS2_NS3_10index_typeE(void) { 2400 - if (verbose) puts("STUB: _ZN3gsl9make_spanIcEENS_4spanIT_Lln1EEEPS2_NS3_10index_typeE called"); 2401 - return NULL; 2402 - ) 2403 - 2404 - void *_ZN6shazam15iterate_headersINS_28fp_data_header_extern_legacyEEEvN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE(void) { 2405 - if (verbose) puts("STUB: _ZN6shazam15iterate_headersINS_28fp_data_header_extern_legacyEEEvN3gsl4spanIKcLln1EEERKNSt3__18functionIFvNS_16signature_headerEEEE called"); 2406 - return NULL; 2407 - ) 2408 - 2409 - void *_ZNK3gsl4spanIKcLln1EE12make_subspanEllNS2_16subspan_selectorILln1EEE(void) { 2410 - if (verbose) puts("STUB: _ZNK3gsl4spanIKcLln1EE12make_subspanEllNS2_16subspan_selectorILln1EEE called"); 2411 - return NULL; 2412 - ) 2413 - 2414 - void *_ZN6shazam17reinterpret_saferIPKNS_28fp_data_header_extern_legacyELi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 2415 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPKNS_28fp_data_header_extern_legacyELi0EEET_RKN3gsl4spanIKcLln1EEE called"); 2416 - return NULL; 2417 - ) 2418 - 2419 - void *_ZN16LegacyFatSigInfoC1Ej(void) { 2420 - if (verbose) puts("STUB: _ZN16LegacyFatSigInfoC1Ej called"); 2421 - return NULL; 2422 - ) 2423 - 2424 - void *_ZN16LegacyFatSigInfo23set_audio_sample_lengthEy(void) { 2425 - if (verbose) puts("STUB: _ZN16LegacyFatSigInfo23set_audio_sample_lengthEy called"); 2426 - return NULL; 2427 - ) 2428 - 2429 - void *_ZNK16LegacyFatSigInfo25get_sample_length_samplesEv(void) { 2430 - if (verbose) puts("STUB: _ZNK16LegacyFatSigInfo25get_sample_length_samplesEv called"); 2431 - return NULL; 2432 - ) 2433 - 2434 - void *_ZNK16LegacyFatSigInfo19get_raw_sample_rateEv(void) { 2435 - if (verbose) puts("STUB: _ZNK16LegacyFatSigInfo19get_raw_sample_rateEv called"); 2436 - return NULL; 2437 - ) 2438 - 2439 - void *_ZN16LegacyFatSigInfo14set_stream_posENSt3__16chrono8durationIyNS0_5ratioILl1ELl125EEEEE(void) { 2440 - if (verbose) puts("STUB: _ZN16LegacyFatSigInfo14set_stream_posENSt3__16chrono8durationIyNS0_5ratioILl1ELl125EEEEE called"); 2441 - return NULL; 2442 - ) 2443 - 2444 - void *_ZNK16LegacyFatSigInfo14get_stream_posEv(void) { 2445 - if (verbose) puts("STUB: _ZNK16LegacyFatSigInfo14get_stream_posEv called"); 2446 - return NULL; 2447 - ) 2448 - 2449 - void *_ZN11SHAZAM_SIGXC2E14signature_typej17signature_options(void) { 2450 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGXC2E14signature_typej17signature_options called"); 2451 - return NULL; 2452 - ) 2453 - 2454 - void *_ZN11SHAZAM_SIGXC1E14signature_typej17signature_options(void) { 2455 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGXC1E14signature_typej17signature_options called"); 2456 - return NULL; 2457 - ) 2458 - 2459 - void *_ZN11SHAZAM_SIGXD1Ev(void) { 2460 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGXD1Ev called"); 2461 - return NULL; 2462 - ) 2463 - 2464 - void *_ZN11SHAZAM_SIGX4flowEPKsi(void) { 2465 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGX4flowEPKsi called"); 2466 - return NULL; 2467 - ) 2468 - 2469 - void *_ZN11SHAZAM_SIGX4flowEPsii(void) { 2470 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGX4flowEPsii called"); 2471 - return NULL; 2472 - ) 2473 - 2474 - void *_ZN6shazam5audio7downMixIsEEvPT_mm(void) { 2475 - if (verbose) puts("STUB: _ZN6shazam5audio7downMixIsEEvPT_mm called"); 2476 - return NULL; 2477 - ) 2478 - 2479 - void *_ZN11SHAZAM_SIGX4flowEPKfi(void) { 2480 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGX4flowEPKfi called"); 2481 - return NULL; 2482 - ) 2483 - 2484 - void *_ZN11SHAZAM_SIGX4flowEPfii(void) { 2485 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGX4flowEPfii called"); 2486 - return NULL; 2487 - ) 2488 - 2489 - void *_ZN6shazam5audio7downMixIfEEvPT_mm(void) { 2490 - if (verbose) puts("STUB: _ZN6shazam5audio7downMixIfEEvPT_mm called"); 2491 - return NULL; 2492 - ) 2493 - 2494 - void *_ZN11SHAZAM_SIGX13get_signatureERNSt3__16vectorIcNS0_9allocatorIcEEEE(void) { 2495 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGX13get_signatureERNSt3__16vectorIcNS0_9allocatorIcEEEE called"); 2496 - return NULL; 2497 - ) 2498 - 2499 - void *_ZN11SHAZAM_SIGX22set_max_rolling_bufferEf(void) { 2500 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGX22set_max_rolling_bufferEf called"); 2501 - return NULL; 2502 - ) 2503 - 2504 - void *_ZN11SHAZAM_SIGX5resetEv(void) { 2505 - if (verbose) puts("STUB: _ZN11SHAZAM_SIGX5resetEv called"); 2506 - return NULL; 2507 - ) 2508 - 2509 - void *_ZNSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEE5clearEv(void) { 2510 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseINS_6vectorI15spectral_peak_tNS_9allocatorIS2_EEEENS3_IS5_EEE5clearEv called"); 2511 - return NULL; 2512 - ) 2513 - 2514 - void *_ZN6shazam15ShazamKitHeader8validateEN3gsl4spanIKcLln1EEE(void) { 2515 - if (verbose) puts("STUB: _ZN6shazam15ShazamKitHeader8validateEN3gsl4spanIKcLln1EEE called"); 2516 - return NULL; 2517 - ) 2518 - 2519 - void *_ZN6shazam17reinterpret_saferIPKNS_15ShazamKitHeaderELi0EEET_RKN3gsl4spanIKcLln1EEE(void) { 2520 - if (verbose) puts("STUB: _ZN6shazam17reinterpret_saferIPKNS_15ShazamKitHeaderELi0EEET_RKN3gsl4spanIKcLln1EEE called"); 2521 - return NULL; 2522 - ) 2523 - 2524 - void *_ZN6shazam15ShazamKitHeader3popEN3gsl4spanIKcLln1EEE(void) { 2525 - if (verbose) puts("STUB: _ZN6shazam15ShazamKitHeader3popEN3gsl4spanIKcLln1EEE called"); 2526 - return NULL; 2527 - ) 2528 - 2529 - void *_ZN6shazam11unpack_timeERNS_2io6readerE(void) { 2530 - if (verbose) puts("STUB: _ZN6shazam11unpack_timeERNS_2io6readerE called"); 2531 - return NULL; 2532 - ) 2533 - 2534 - void *_ZN6shazam2io14read_unalignedItLi0EEET_RNS0_6readerE(void) { 2535 - if (verbose) puts("STUB: _ZN6shazam2io14read_unalignedItLi0EEET_RNS0_6readerE called"); 2536 - return NULL; 2537 - ) 2538 - 2539 - void *_ZN6shazam28inflate_basic_sumo_peak_dataEN3gsl4spanIKcLln1EEENS_17signature_densityENSt3__16chrono8durationIhNS5_5ratioILl1ELl125EEEEE(void) { 2540 - if (verbose) puts("STUB: _ZN6shazam28inflate_basic_sumo_peak_dataEN3gsl4spanIKcLln1EEENS_17signature_densityENSt3__16chrono8durationIhNS5_5ratioILl1ELl125EEEEE called"); 2541 - return NULL; 2542 - ) 2543 - 2544 - void *_ZNSt3__16vectorIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE7reserveEm(void) { 2545 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE7reserveEm called"); 2546 - return NULL; 2547 - ) 2548 - 2549 - void *_ZN6shazam14density_filterI15spectral_peak_tElsERKS1_(void) { 2550 - if (verbose) puts("STUB: _ZN6shazam14density_filterI15spectral_peak_tElsERKS1_ called"); 2551 - return NULL; 2552 - ) 2553 - 2554 - void *_ZNSt12out_of_rangeC1EPKc(void) { 2555 - if (verbose) puts("STUB: _ZNSt12out_of_rangeC1EPKc called"); 2556 - return NULL; 2557 - ) 2558 - 2559 - void *_ZNSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEED2Ev(void) { 2560 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEED2Ev called"); 2561 - return NULL; 2562 - ) 2563 - 2564 - void *_ZNSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE5clearEv(void) { 2565 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE5clearEv called"); 2566 - return NULL; 2567 - ) 2568 - 2569 - void *_ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEEC2EmmS7_(void) { 2570 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEEC2EmmS7_ called"); 2571 - return NULL; 2572 - ) 2573 - 2574 - void *_ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEED2Ev(void) { 2575 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEED2Ev called"); 2576 - return NULL; 2577 - ) 2578 - 2579 - void *_ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEE17__destruct_at_endEPS4_(void) { 2580 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam14density_filterI15spectral_peak_tEERNS_9allocatorIS4_EEE17__destruct_at_endEPS4_ called"); 2581 - return NULL; 2582 - ) 2583 - 2584 - void *_ZNKSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE20__throw_length_errorEv(void) { 2585 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam14density_filterI15spectral_peak_tEENS_9allocatorIS4_EEE20__throw_length_errorEv called"); 2586 - return NULL; 2587 - ) 2588 - 2589 - void *_ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6resizeEm(void) { 2590 - if (verbose) puts("STUB: _ZNSt3__16vectorI15spectral_peak_tNS_9allocatorIS1_EEE6resizeEm called"); 2591 - return NULL; 2592 - ) 2593 - 2594 - void *_ZN6shazam9get_grainERKNSt3__16vectorIfNS0_9allocatorIfEEEES6_f(void) { 2595 - if (verbose) puts("STUB: _ZN6shazam9get_grainERKNSt3__16vectorIfNS0_9allocatorIfEEEES6_f called"); 2596 - return NULL; 2597 - ) 2598 - 2599 - void *_ZN6shazam15blips_and_blopsERKNSt3__16vectorI15spectral_peak_tNS0_9allocatorIS2_EEEEi(void) { 2600 - if (verbose) puts("STUB: _ZN6shazam15blips_and_blopsERKNSt3__16vectorI15spectral_peak_tNS0_9allocatorIS2_EEEEi called"); 2601 - return NULL; 2602 - ) 2603 - 2604 - void *_ZN6shazam16sonify_signatureERKNS_17basic_signature_tEj(void) { 2605 - if (verbose) puts("STUB: _ZN6shazam16sonify_signatureERKNS_17basic_signature_tEj called"); 2606 - return NULL; 2607 - ) 2608 - 2609 - void *_ZNSt3__16vectorIsNS_9allocatorIsEEEC2Em(void) { 2610 - if (verbose) puts("STUB: _ZNSt3__16vectorIsNS_9allocatorIsEEEC2Em called"); 2611 - return NULL; 2612 - ) 2613 - 2614 - void *_ZNSt3__16vectorIsNS_9allocatorIsEEE11__vallocateEm(void) { 2615 - if (verbose) puts("STUB: _ZNSt3__16vectorIsNS_9allocatorIsEEE11__vallocateEm called"); 2616 - return NULL; 2617 - ) 2618 - 2619 - void *_ZNKSt3__113__vector_baseIsNS_9allocatorIsEEE20__throw_length_errorEv(void) { 2620 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIsNS_9allocatorIsEEE20__throw_length_errorEv called"); 2621 - return NULL; 2622 - ) 2623 - 2624 - void *__clang_call_terminate(void) { 2625 - if (verbose) puts("STUB: __clang_call_terminate called"); 2626 - return NULL; 2627 - ) 2628 - 2629 - void *_ZN3gsl9make_spanIKcEENS_4spanIT_Lln1EEEPS3_NS4_10index_typeE(void) { 2630 - if (verbose) puts("STUB: _ZN3gsl9make_spanIKcEENS_4spanIT_Lln1EEEPS3_NS4_10index_typeE called"); 2631 - return NULL; 2632 - ) 2633 - 2634 - void *_ZN6shazam11make_vectorINS_15basic_signatureILNS_17signature_densityE24EEEJRKN3gsl4spanIKcLln1EEEEEEDaDpOT0_(void) { 2635 - if (verbose) puts("STUB: _ZN6shazam11make_vectorINS_15basic_signatureILNS_17signature_densityE24EEEJRKN3gsl4spanIKcLln1EEEEEEDaDpOT0_ called"); 2636 - return NULL; 2637 - ) 2638 - 2639 - void *_ZN24ConstQueryConfigProviderD1Ev(void) { 2640 - if (verbose) puts("STUB: _ZN24ConstQueryConfigProviderD1Ev called"); 2641 - return NULL; 2642 - ) 2643 - 2644 - void *_ZNSt3__110unique_ptrIN6shazam4MMapENS_14default_deleteIS2_EEE5resetEPS2_(void) { 2645 - if (verbose) puts("STUB: _ZNSt3__110unique_ptrIN6shazam4MMapENS_14default_deleteIS2_EEE5resetEPS2_ called"); 2646 - return NULL; 2647 - ) 2648 - 2649 - void *_ZN3gsl7details9terminateEv(void) { 2650 - if (verbose) puts("STUB: _ZN3gsl7details9terminateEv called"); 2651 - return NULL; 2652 - ) 2653 - 2654 - void *_ZNSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEED2Ev(void) { 2655 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEED2Ev called"); 2656 - return NULL; 2657 - ) 2658 - 2659 - void *_ZNSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEE5clearEv(void) { 2660 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseINS_6vectorIcNS_9allocatorIcEEEENS2_IS4_EEE5clearEv called"); 2661 - return NULL; 2662 - ) 2663 - 2664 - void *_ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE7reserveEm(void) { 2665 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE7reserveEm called"); 2666 - return NULL; 2667 - ) 2668 - 2669 - void *_ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS4_RS6_EE(void) { 2670 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS4_RS6_EE called"); 2671 - return NULL; 2672 - ) 2673 - 2674 - void *_ZNSt3__114__split_bufferIN6shazam15basic_signatureILNS1_17signature_densityE24EEERNS_9allocatorIS4_EEEC2EmmS7_(void) { 2675 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam15basic_signatureILNS1_17signature_densityE24EEERNS_9allocatorIS4_EEEC2EmmS7_ called"); 2676 - return NULL; 2677 - ) 2678 - 2679 - void *_ZNSt3__120__throw_length_errorEPKc(void) { 2680 - if (verbose) puts("STUB: _ZNSt3__120__throw_length_errorEPKc called"); 2681 - return NULL; 2682 - ) 2683 - 2684 - void *_ZNSt3__114__split_bufferIN6shazam15basic_signatureILNS1_17signature_densityE24EEERNS_9allocatorIS4_EEED2Ev(void) { 2685 - if (verbose) puts("STUB: _ZNSt3__114__split_bufferIN6shazam15basic_signatureILNS1_17signature_densityE24EEERNS_9allocatorIS4_EEED2Ev called"); 2686 - return NULL; 2687 - ) 2688 - 2689 - void *_ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE22__construct_one_at_endIJRKN3gsl4spanIKcLln1EEEEEEvDpOT_(void) { 2690 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE22__construct_one_at_endIJRKN3gsl4spanIKcLln1EEEEEEvDpOT_ called"); 2691 - return NULL; 2692 - ) 2693 - 2694 - void *_ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE24__emplace_back_slow_pathIJRKN3gsl4spanIKcLln1EEEEEEvDpOT_(void) { 2695 - if (verbose) puts("STUB: _ZNSt3__16vectorIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE24__emplace_back_slow_pathIJRKN3gsl4spanIKcLln1EEEEEEvDpOT_ called"); 2696 - return NULL; 2697 - ) 2698 - 2699 - void *_ZNKSt3__113__vector_baseIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE20__throw_length_errorEv(void) { 2700 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEE20__throw_length_errorEv called"); 2701 - return NULL; 2702 - ) 2703 - 2704 - void *_ZNK24ConstQueryConfigProvider9getConfigEm(void) { 2705 - if (verbose) puts("STUB: _ZNK24ConstQueryConfigProvider9getConfigEm called"); 2706 - return NULL; 2707 - ) 2708 - 2709 - void *_ZN24ConstQueryConfigProviderD0Ev(void) { 2710 - if (verbose) puts("STUB: _ZN24ConstQueryConfigProviderD0Ev called"); 2711 - return NULL; 2712 - ) 2713 - 2714 - void *_ZNKSt3__114default_deleteI11MREInstanceEclEPS1_(void) { 2715 - if (verbose) puts("STUB: _ZNKSt3__114default_deleteI11MREInstanceEclEPS1_ called"); 2716 - return NULL; 2717 - ) 2718 - 2719 - void *_ZNSt3__113__vector_baseIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEED2Ev(void) { 2720 - if (verbose) puts("STUB: _ZNSt3__113__vector_baseIN6shazam15basic_signatureILNS1_17signature_densityE24EEENS_9allocatorIS4_EEED2Ev called"); 2721 - return NULL; 2722 - ) 2723 - 2724 - void *_ZN24FFT_implementation_appleC2Em(void) { 2725 - if (verbose) puts("STUB: _ZN24FFT_implementation_appleC2Em called"); 2726 - return NULL; 2727 - ) 2728 - 2729 - void *_ZN24FFT_implementation_appleC1Em(void) { 2730 - if (verbose) puts("STUB: _ZN24FFT_implementation_appleC1Em called"); 2731 - return NULL; 2732 - ) 2733 - 2734 - void *_ZN24FFT_implementation_appleD2Ev(void) { 2735 - if (verbose) puts("STUB: _ZN24FFT_implementation_appleD2Ev called"); 2736 - return NULL; 2737 - ) 2738 - 2739 - void *_ZN24FFT_implementation_appleD1Ev(void) { 2740 - if (verbose) puts("STUB: _ZN24FFT_implementation_appleD1Ev called"); 2741 - return NULL; 2742 - ) 2743 - 2744 - void *_ZN24FFT_implementation_appleD0Ev(void) { 2745 - if (verbose) puts("STUB: _ZN24FFT_implementation_appleD0Ev called"); 2746 - return NULL; 2747 - ) 2748 - 2749 - void *_ZN24FFT_implementation_apple8magxformEPfS0_(void) { 2750 - if (verbose) puts("STUB: _ZN24FFT_implementation_apple8magxformEPfS0_ called"); 2751 - return NULL; 2752 - ) 2753 - 2754 - void *_ZN24FFT_implementation_apple18toSHZFFT_MagnitudeEPf(void) { 2755 - if (verbose) puts("STUB: _ZN24FFT_implementation_apple18toSHZFFT_MagnitudeEPf called"); 2756 - return NULL; 2757 - ) 2758 - 2759 - void *_ZN24FFT_implementation_apple14magcomplexformEPfS0_PNSt3__17complexIfEE(void) { 2760 - if (verbose) puts("STUB: _ZN24FFT_implementation_apple14magcomplexformEPfS0_PNSt3__17complexIfEE called"); 2761 - return NULL; 2762 - ) 2763 - 2764 - void *_ZN24FFT_implementation_apple4fftrEPKfPNSt3__17complexIfEE(void) { 2765 - if (verbose) puts("STUB: _ZN24FFT_implementation_apple4fftrEPKfPNSt3__17complexIfEE called"); 2766 - return NULL; 2767 - ) 2768 - 2769 - void *_ZN24FFT_implementation_apple5fftriERKN3gsl4spanINSt3__17complexIfEELln1EEENS1_IfLln1EEE(void) { 2770 - if (verbose) puts("STUB: _ZN24FFT_implementation_apple5fftriERKN3gsl4spanINSt3__17complexIfEELln1EEENS1_IfLln1EEE called"); 2771 - return NULL; 2772 - ) 101 + } 2773 102
+34
src/frameworks/ShazamKit/src/SignatureAlignmentTracker.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SignatureAlignmentTracker.h> 21 + 22 + @implementation SignatureAlignmentTracker 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/frameworks/ShazamKit/src/SignatureAlignmentTrackerResult.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamKit/SignatureAlignmentTrackerResult.h> 21 + 22 + @implementation SignatureAlignmentTrackerResult 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+4 -1
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/NSItemProvider+UTType.h
··· 18 18 */ 19 19 20 20 #include <Foundation/Foundation.h> 21 - #import <UniformTypeIdentifiers/UTType.h> 22 21 #import <Foundation/NSItemProvider.h> 22 + 23 + #if __OBJC2__ 23 24 24 25 @interface NSItemProvider (UTType) 25 26 26 27 @end 28 + 29 + #endif
+243 -35
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/UniformTypeIdentifiers.h
··· 33 33 #import <UniformTypeIdentifiers/_UTTaggedType.h> 34 34 35 35 36 - void *_ZN22UniformTypeIdentifiers9ModelCodeL26getDeviceTypeWithModelCodeEP8NSStringRKNSt3__18optionalI15UTHardwareColorEENS0_7OptionsE(void); 37 - void *_ZN22UniformTypeIdentifiers9ModelCodeL71getDeviceTypeWithModelCodeAndHardwareColorWithoutResolvingCurrentDeviceEP8NSStringRKNSt3__18optionalI15UTHardwareColorEE(void); 38 - void *_ZN22UniformTypeIdentifiers9ModelCodeL26getCurrentDeviceModelCodesEv(void); 39 - void *_ZN22UniformTypeIdentifiers9ModelCodeL32getHardwareColorForCurrentDeviceEv(void); 40 - void *_ZN22UniformTypeIdentifiers9ModelCodeL22getHardwareColorSuffixERK15UTHardwareColor(void); 41 - void *_ZNSt3__127__throw_bad_optional_accessEv(void); 42 - void *_ZN22UniformTypeIdentifiers9ModelCodeL3logEv(void); 43 - void *_ZN22UniformTypeIdentifiers9AccessoryL3logEv(void); 44 - void *_ZL23_UTTypeGetForIdentifierP8NSStringa(void); 45 - void *_ZN22UniformTypeIdentifiers4TypeL24detachTypeRecordsInTypesIU8__strongP12NSMutableSetIP6UTTypeEEEvT_(void); 46 - void *_UTDetachTypeRecords(void); 47 - void *_ZN22UniformTypeIdentifiers4TypeL10isTagValidEP8NSStringS2_(void); 48 - void *_ZN22UniformTypeIdentifiers4TypeL15getExportedTypeEP8NSStringP6UTTypeP8NSBundle(void); 49 - void *_ZN22UniformTypeIdentifiers4TypeL15getImportedTypeEP8NSStringP6UTTypeP8NSBundle(void); 50 - void *_ZN22UniformTypeIdentifiers4TypeL21getHFSTypeCodeFromTagEP8NSStringPj(void); 51 - void *_ZNSt3__16vectorIP12UTTypeRecordNS_9allocatorIS3_EEEC2EmRKS2_(void); 52 - void *__clang_call_terminate(void); 53 - void *_ZNKSt3__113__vector_baseIP12UTTypeRecordNS_9allocatorIS3_EEE20__throw_length_errorEv(void); 54 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEEC2EmRKc(void); 55 - void *_ZNKSt3__113__vector_baseIcNS_9allocatorIcEEE20__throw_length_errorEv(void); 56 - void *_ZNSt3__121__murmur2_or_cityhashImLm64EEclEPKvm(void); 57 - void *_UTCoreTypesConstantSetTypeRecordIfNil(void); 58 - void *_ZN22UniformTypeIdentifiers9CoreTypesL3logEv(void); 59 - void *__UNIFORM_TYPE_IDENTIFIERS_FAILED_TO_REALIZE_A_COMPILE_TIME_CONSTANT_TYPE_OBJECT__(void); 60 - void *_ZNKSt3__113__vector_baseIP9objc_ivarNS_9allocatorIS2_EEE20__throw_length_errorEv(void); 61 - void *_ZNSt3__120__throw_length_errorEPKc(void); 62 - void *_ZNSt12length_errorC1EPKc(void); 63 - void *_typeIdentifierFromUTType(void); 64 - void *_utTypesFromTypeIdentifiers(void); 65 - void *_ZN22UniformTypeIdentifiers13RuntimeIssuesL27checkListsForTypeIdentifierEP8NSStringP7NSArrayIP12NSDictionaryIS2_P11objc_objectEESA_(void); 66 - void *_ZN22UniformTypeIdentifiers13RuntimeIssuesL15runtimeIssueLogEv(void); 67 - void *_ZN22UniformTypeIdentifiers13RuntimeIssuesL43enumerateTypeIdentifiersInDeclarationsArrayEP7NSArrayIP12NSDictionaryIP8NSStringP11objc_objectEEU13block_pointerFvS4_PaE(void); 68 - void *_ZN22UniformTypeIdentifiers13RuntimeIssuesL17isBinaryTheCallerEPK11mach_header(void); 36 + void *_UTGetAllCoreTypesConstants(void); 37 + void *_UTHardwareColorGetCurrentEnclosureColor(void); 38 + void *_UTHardwareColorGetDebugDescription(void); 39 + void *_UTHardwareColorMakeWithIndex(void); 40 + void *_UTHardwareColorMakeWithRGBComponents(void); 41 + void *_UTHardwareColorsAreEqual(void); 42 + void *_UTIdentifierGetCanonicalRepresentation(void); 43 + void *_UTIdentifierGetHashCode(void); 44 + void *_UTIdentifiersAreEqual(void); 45 + void *_UTPrintModelCodesForCurrentDevice(void); 46 + void *_UTSetRuntimeIssueCatcher(void); 47 + void *_UTTaggedTypeCreate(void); 48 + void *__UNIFORM_TYPE_IDENTIFIER_WAS_NOT_DECLARED_IN_INFO_PLIST_OF_BUNDLE__(void); 49 + void *__UTFindCoreTypesConstantWithIdentifier(void); 50 + void *__UTGetDeclarationStatusFromInfoPlist(void); 69 51 70 52 71 - extern extern const void* UniformTypeIdentifiersVersionString; 72 - extern extern const void* UniformTypeIdentifiersVersionNumber; 53 + extern void* const UTTagClassFilenameExtension; 54 + extern void* const UTTagClassMIMEType; 55 + extern void* const UTType3DContent; 56 + extern void* const UTTypeAIFF; 57 + extern void* const UTTypeARReferenceObject; 58 + extern void* const UTTypeAVI; 59 + extern void* const UTTypeAliasFile; 60 + extern void* const UTTypeAppleArchive; 61 + extern void* const UTTypeAppleProtectedMPEG4Audio; 62 + extern void* const UTTypeAppleProtectedMPEG4Video; 63 + extern void* const UTTypeAppleScript; 64 + extern void* const UTTypeApplication; 65 + extern void* const UTTypeApplicationBundle; 66 + extern void* const UTTypeApplicationExtension; 67 + extern void* const UTTypeArchive; 68 + extern void* const UTTypeAssemblyLanguageSource; 69 + extern void* const UTTypeAudio; 70 + extern void* const UTTypeAudiovisualContent; 71 + extern void* const UTTypeBMP; 72 + extern void* const UTTypeBZ2; 73 + extern void* const UTTypeBinaryPropertyList; 74 + extern void* const UTTypeBookmark; 75 + extern void* const UTTypeBundle; 76 + extern void* const UTTypeCHeader; 77 + extern void* const UTTypeCPlusPlusHeader; 78 + extern void* const UTTypeCPlusPlusSource; 79 + extern void* const UTTypeCSource; 80 + extern void* const UTTypeCalendarEvent; 81 + extern void* const UTTypeCommaSeparatedText; 82 + extern void* const UTTypeCompositeContent; 83 + extern void* const UTTypeContact; 84 + extern void* const UTTypeContent; 85 + extern void* const UTTypeData; 86 + extern void* const UTTypeDatabase; 87 + extern void* const UTTypeDelimitedText; 88 + extern void* const UTTypeDirectory; 89 + extern void* const UTTypeDiskImage; 90 + extern void* const UTTypeEPUB; 91 + extern void* const UTTypeEXE; 92 + extern void* const UTTypeEmailMessage; 93 + extern void* const UTTypeExecutable; 94 + extern void* const UTTypeFileURL; 95 + extern void* const UTTypeFlatRTFD; 96 + extern void* const UTTypeFolder; 97 + extern void* const UTTypeFont; 98 + extern void* const UTTypeFramework; 99 + extern void* const UTTypeGIF; 100 + extern void* const UTTypeGZIP; 101 + extern void* const UTTypeHEIC; 102 + extern void* const UTTypeHEIF; 103 + extern void* const UTTypeHTML; 104 + extern void* const UTTypeICNS; 105 + extern void* const UTTypeICO; 106 + extern void* const UTTypeImage; 107 + extern void* const UTTypeInternetLocation; 108 + extern void* const UTTypeInternetShortcut; 109 + extern void* const UTTypeItem; 110 + extern void* const UTTypeJPEG; 111 + extern void* const UTTypeJSON; 112 + extern void* const UTTypeJavaScript; 113 + extern void* const UTTypeLivePhoto; 114 + extern void* const UTTypeLog; 115 + extern void* const UTTypeM3UPlaylist; 116 + extern void* const UTTypeMIDI; 117 + extern void* const UTTypeMP3; 118 + extern void* const UTTypeMPEG; 119 + extern void* const UTTypeMPEG2TransportStream; 120 + extern void* const UTTypeMPEG2Video; 121 + extern void* const UTTypeMPEG4Audio; 122 + extern void* const UTTypeMPEG4Movie; 123 + extern void* const UTTypeMakefile; 124 + extern void* const UTTypeMessage; 125 + extern void* const UTTypeMountPoint; 126 + extern void* const UTTypeMovie; 127 + extern void* const UTTypeOSAScript; 128 + extern void* const UTTypeOSAScriptBundle; 129 + extern void* const UTTypeObjectiveCPlusPlusSource; 130 + extern void* const UTTypeObjectiveCSource; 131 + extern void* const UTTypePDF; 132 + extern void* const UTTypePHPScript; 133 + extern void* const UTTypePKCS12; 134 + extern void* const UTTypePNG; 135 + extern void* const UTTypePackage; 136 + extern void* const UTTypePerlScript; 137 + extern void* const UTTypePlainText; 138 + extern void* const UTTypePlaylist; 139 + extern void* const UTTypePluginBundle; 140 + extern void* const UTTypePresentation; 141 + extern void* const UTTypePropertyList; 142 + extern void* const UTTypePythonScript; 143 + extern void* const UTTypeQuickLookGenerator; 144 + extern void* const UTTypeQuickTimeMovie; 145 + extern void* const UTTypeRAWImage; 146 + extern void* const UTTypeRTF; 147 + extern void* const UTTypeRTFD; 148 + extern void* const UTTypeRealityFile; 149 + extern void* const UTTypeResolvable; 150 + extern void* const UTTypeRubyScript; 151 + extern void* const UTTypeSVG; 152 + extern void* const UTTypeSceneKitScene; 153 + extern void* const UTTypeScript; 154 + extern void* const UTTypeShellScript; 155 + extern void* const UTTypeSourceCode; 156 + extern void* const UTTypeSpotlightImporter; 157 + extern void* const UTTypeSpreadsheet; 158 + extern void* const UTTypeSwiftSource; 159 + extern void* const UTTypeSymbolicLink; 160 + extern void* const UTTypeSystemPreferencesPane; 161 + extern void* const UTTypeTIFF; 162 + extern void* const UTTypeTabSeparatedText; 163 + extern void* const UTTypeText; 164 + extern void* const UTTypeToDoItem; 165 + extern void* const UTTypeURL; 166 + extern void* const UTTypeURLBookmarkData; 167 + extern void* const UTTypeUSD; 168 + extern void* const UTTypeUSDZ; 169 + extern void* const UTTypeUTF16ExternalPlainText; 170 + extern void* const UTTypeUTF16PlainText; 171 + extern void* const UTTypeUTF8PlainText; 172 + extern void* const UTTypeUTF8TabSeparatedText; 173 + extern void* const UTTypeUnixExecutable; 174 + extern void* const UTTypeVCard; 175 + extern void* const UTTypeVideo; 176 + extern void* const UTTypeVolume; 177 + extern void* const UTTypeWAV; 178 + extern void* const UTTypeWebArchive; 179 + extern void* const UTTypeWebP; 180 + extern void* const UTTypeX509Certificate; 181 + extern void* const UTTypeXML; 182 + extern void* const UTTypeXMLPropertyList; 183 + extern void* const UTTypeXPCService; 184 + extern void* const UTTypeYAML; 185 + extern void* const UTTypeZIP; 186 + extern void* const _UTTagClassBluetoothVendorProductID; 187 + extern void* const _UTTagClassDeviceModelCode; 188 + extern void* const _UTTagClassHFSTypeCode; 189 + extern void* const _UTTagClassPasteboardType; 190 + extern void* const _UTTypeAppCategory; 191 + extern void* const _UTTypeAppCategoryActionGames; 192 + extern void* const _UTTypeAppCategoryAdventureGames; 193 + extern void* const _UTTypeAppCategoryArcadeGames; 194 + extern void* const _UTTypeAppCategoryBoardGames; 195 + extern void* const _UTTypeAppCategoryBookmarks; 196 + extern void* const _UTTypeAppCategoryBooks; 197 + extern void* const _UTTypeAppCategoryBusiness; 198 + extern void* const _UTTypeAppCategoryCardGames; 199 + extern void* const _UTTypeAppCategoryCasinoGames; 200 + extern void* const _UTTypeAppCategoryDeveloperTools; 201 + extern void* const _UTTypeAppCategoryDiceGames; 202 + extern void* const _UTTypeAppCategoryEducation; 203 + extern void* const _UTTypeAppCategoryEducationalGames; 204 + extern void* const _UTTypeAppCategoryEntertainment; 205 + extern void* const _UTTypeAppCategoryFamilyGames; 206 + extern void* const _UTTypeAppCategoryFinance; 207 + extern void* const _UTTypeAppCategoryFoodAndDrink; 208 + extern void* const _UTTypeAppCategoryGames; 209 + extern void* const _UTTypeAppCategoryGraphicsDesign; 210 + extern void* const _UTTypeAppCategoryHealthcareFitness; 211 + extern void* const _UTTypeAppCategoryKidsGames; 212 + extern void* const _UTTypeAppCategoryLifestyle; 213 + extern void* const _UTTypeAppCategoryMagazinesAndNewspapers; 214 + extern void* const _UTTypeAppCategoryMedical; 215 + extern void* const _UTTypeAppCategoryMusic; 216 + extern void* const _UTTypeAppCategoryMusicGames; 217 + extern void* const _UTTypeAppCategoryNavigation; 218 + extern void* const _UTTypeAppCategoryNews; 219 + extern void* const _UTTypeAppCategoryPhotoAndVideo; 220 + extern void* const _UTTypeAppCategoryPhotography; 221 + extern void* const _UTTypeAppCategoryProductivity; 222 + extern void* const _UTTypeAppCategoryPuzzleGames; 223 + extern void* const _UTTypeAppCategoryRacingGames; 224 + extern void* const _UTTypeAppCategoryReference; 225 + extern void* const _UTTypeAppCategoryRolePlayingGames; 226 + extern void* const _UTTypeAppCategoryShopping; 227 + extern void* const _UTTypeAppCategorySimulationGames; 228 + extern void* const _UTTypeAppCategorySocialNetworking; 229 + extern void* const _UTTypeAppCategorySports; 230 + extern void* const _UTTypeAppCategorySportsGames; 231 + extern void* const _UTTypeAppCategoryStrategyGames; 232 + extern void* const _UTTypeAppCategoryTravel; 233 + extern void* const _UTTypeAppCategoryTriviaGames; 234 + extern void* const _UTTypeAppCategoryUtilities; 235 + extern void* const _UTTypeAppCategoryVideo; 236 + extern void* const _UTTypeAppCategoryWeather; 237 + extern void* const _UTTypeAppCategoryWordGames; 238 + extern void* const _UTTypeAppleDevice; 239 + extern void* const _UTTypeAppleEncryptedArchive; 240 + extern void* const _UTTypeAppleTV; 241 + extern void* const _UTTypeAppleWatch; 242 + extern void* const _UTTypeApplicationsFolder; 243 + extern void* const _UTTypeBlockSpecial; 244 + extern void* const _UTTypeCharacterSpecial; 245 + extern void* const _UTTypeComputer; 246 + extern void* const _UTTypeDataContainer; 247 + extern void* const _UTTypeDevice; 248 + extern void* const _UTTypeDisplay; 249 + extern void* const _UTTypeDropFolder; 250 + extern void* const _UTTypeGenericPC; 251 + extern void* const _UTTypeHEIFStandard; 252 + extern void* const _UTTypeHomePod; 253 + extern void* const _UTTypeLibraryFolder; 254 + extern void* const _UTTypeMac; 255 + extern void* const _UTTypeMacBook; 256 + extern void* const _UTTypeMacBookAir; 257 + extern void* const _UTTypeMacBookPro; 258 + extern void* const _UTTypeMacLaptop; 259 + extern void* const _UTTypeMacMini; 260 + extern void* const _UTTypeMacPro; 261 + extern void* const _UTTypeNamedPipeOrFIFO; 262 + extern void* const _UTTypeNetworkNeighborhood; 263 + extern void* const _UTTypePassBundle; 264 + extern void* const _UTTypePassData; 265 + extern void* const _UTTypePassesData; 266 + extern void* const _UTTypeServersFolder; 267 + extern void* const _UTTypeSocket; 268 + extern void* const _UTTypeSpeaker; 269 + extern void* const _UTTypeiMac; 270 + extern void* const _UTTypeiOSDevice; 271 + extern void* const _UTTypeiOSSimulator; 272 + extern void* const _UTTypeiPad; 273 + extern void* const _UTTypeiPhone; 274 + extern void* const _UTTypeiPodTouch; 275 + extern void* const _ZTSSt11logic_error; 276 + extern void* const _ZTSSt12length_error; 277 + extern void* const _ZTSSt19bad_optional_access; 278 + extern void* const _ZTSSt20bad_array_new_length; 279 + extern void* const _ZTSSt9bad_alloc; 280 + extern void* const _ZTSSt9exception; 73 281 74 282 #endif 75 283
+1
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/_UTCoreType+UTRefCounting.h
··· 18 18 */ 19 19 20 20 #include <Foundation/Foundation.h> 21 + 21 22 #import <UniformTypeIdentifiers/_UTCoreType.h> 22 23 23 24 @interface _UTCoreType (UTRefCounting)
+4
src/frameworks/UniformTypeIdentifiers/src/NSItemProvider+UTType.m
··· 19 19 20 20 #import <UniformTypeIdentifiers/NSItemProvider+UTType.h> 21 21 22 + #if __OBJC2__ 23 + 22 24 @implementation NSItemProvider (UTType) 23 25 24 26 @end 27 + 28 + #endif
+274 -137
src/frameworks/UniformTypeIdentifiers/src/UniformTypeIdentifiers.m
··· 22 22 #include <stdlib.h> 23 23 #include <stdio.h> 24 24 25 + static int verbose = 0; 25 26 __attribute__((constructor)) 26 27 static void initme(void) { 27 28 verbose = getenv("STUB_VERBOSE") != NULL; 28 29 } 29 30 30 31 31 - extern const void* UniformTypeIdentifiersVersionString = (void*)0; 32 - extern const void* UniformTypeIdentifiersVersionNumber = (void*)0; 32 + extern void* const UTTagClassFilenameExtension = (void*)0; 33 + extern void* const UTTagClassMIMEType = (void*)0; 34 + extern void* const UTType3DContent = (void*)0; 35 + extern void* const UTTypeAIFF = (void*)0; 36 + extern void* const UTTypeARReferenceObject = (void*)0; 37 + extern void* const UTTypeAVI = (void*)0; 38 + extern void* const UTTypeAliasFile = (void*)0; 39 + extern void* const UTTypeAppleArchive = (void*)0; 40 + extern void* const UTTypeAppleProtectedMPEG4Audio = (void*)0; 41 + extern void* const UTTypeAppleProtectedMPEG4Video = (void*)0; 42 + extern void* const UTTypeAppleScript = (void*)0; 43 + extern void* const UTTypeApplication = (void*)0; 44 + extern void* const UTTypeApplicationBundle = (void*)0; 45 + extern void* const UTTypeApplicationExtension = (void*)0; 46 + extern void* const UTTypeArchive = (void*)0; 47 + extern void* const UTTypeAssemblyLanguageSource = (void*)0; 48 + extern void* const UTTypeAudio = (void*)0; 49 + extern void* const UTTypeAudiovisualContent = (void*)0; 50 + extern void* const UTTypeBMP = (void*)0; 51 + extern void* const UTTypeBZ2 = (void*)0; 52 + extern void* const UTTypeBinaryPropertyList = (void*)0; 53 + extern void* const UTTypeBookmark = (void*)0; 54 + extern void* const UTTypeBundle = (void*)0; 55 + extern void* const UTTypeCHeader = (void*)0; 56 + extern void* const UTTypeCPlusPlusHeader = (void*)0; 57 + extern void* const UTTypeCPlusPlusSource = (void*)0; 58 + extern void* const UTTypeCSource = (void*)0; 59 + extern void* const UTTypeCalendarEvent = (void*)0; 60 + extern void* const UTTypeCommaSeparatedText = (void*)0; 61 + extern void* const UTTypeCompositeContent = (void*)0; 62 + extern void* const UTTypeContact = (void*)0; 63 + extern void* const UTTypeContent = (void*)0; 64 + extern void* const UTTypeData = (void*)0; 65 + extern void* const UTTypeDatabase = (void*)0; 66 + extern void* const UTTypeDelimitedText = (void*)0; 67 + extern void* const UTTypeDirectory = (void*)0; 68 + extern void* const UTTypeDiskImage = (void*)0; 69 + extern void* const UTTypeEPUB = (void*)0; 70 + extern void* const UTTypeEXE = (void*)0; 71 + extern void* const UTTypeEmailMessage = (void*)0; 72 + extern void* const UTTypeExecutable = (void*)0; 73 + extern void* const UTTypeFileURL = (void*)0; 74 + extern void* const UTTypeFlatRTFD = (void*)0; 75 + extern void* const UTTypeFolder = (void*)0; 76 + extern void* const UTTypeFont = (void*)0; 77 + extern void* const UTTypeFramework = (void*)0; 78 + extern void* const UTTypeGIF = (void*)0; 79 + extern void* const UTTypeGZIP = (void*)0; 80 + extern void* const UTTypeHEIC = (void*)0; 81 + extern void* const UTTypeHEIF = (void*)0; 82 + extern void* const UTTypeHTML = (void*)0; 83 + extern void* const UTTypeICNS = (void*)0; 84 + extern void* const UTTypeICO = (void*)0; 85 + extern void* const UTTypeImage = (void*)0; 86 + extern void* const UTTypeInternetLocation = (void*)0; 87 + extern void* const UTTypeInternetShortcut = (void*)0; 88 + extern void* const UTTypeItem = (void*)0; 89 + extern void* const UTTypeJPEG = (void*)0; 90 + extern void* const UTTypeJSON = (void*)0; 91 + extern void* const UTTypeJavaScript = (void*)0; 92 + extern void* const UTTypeLivePhoto = (void*)0; 93 + extern void* const UTTypeLog = (void*)0; 94 + extern void* const UTTypeM3UPlaylist = (void*)0; 95 + extern void* const UTTypeMIDI = (void*)0; 96 + extern void* const UTTypeMP3 = (void*)0; 97 + extern void* const UTTypeMPEG = (void*)0; 98 + extern void* const UTTypeMPEG2TransportStream = (void*)0; 99 + extern void* const UTTypeMPEG2Video = (void*)0; 100 + extern void* const UTTypeMPEG4Audio = (void*)0; 101 + extern void* const UTTypeMPEG4Movie = (void*)0; 102 + extern void* const UTTypeMakefile = (void*)0; 103 + extern void* const UTTypeMessage = (void*)0; 104 + extern void* const UTTypeMountPoint = (void*)0; 105 + extern void* const UTTypeMovie = (void*)0; 106 + extern void* const UTTypeOSAScript = (void*)0; 107 + extern void* const UTTypeOSAScriptBundle = (void*)0; 108 + extern void* const UTTypeObjectiveCPlusPlusSource = (void*)0; 109 + extern void* const UTTypeObjectiveCSource = (void*)0; 110 + extern void* const UTTypePDF = (void*)0; 111 + extern void* const UTTypePHPScript = (void*)0; 112 + extern void* const UTTypePKCS12 = (void*)0; 113 + extern void* const UTTypePNG = (void*)0; 114 + extern void* const UTTypePackage = (void*)0; 115 + extern void* const UTTypePerlScript = (void*)0; 116 + extern void* const UTTypePlainText = (void*)0; 117 + extern void* const UTTypePlaylist = (void*)0; 118 + extern void* const UTTypePluginBundle = (void*)0; 119 + extern void* const UTTypePresentation = (void*)0; 120 + extern void* const UTTypePropertyList = (void*)0; 121 + extern void* const UTTypePythonScript = (void*)0; 122 + extern void* const UTTypeQuickLookGenerator = (void*)0; 123 + extern void* const UTTypeQuickTimeMovie = (void*)0; 124 + extern void* const UTTypeRAWImage = (void*)0; 125 + extern void* const UTTypeRTF = (void*)0; 126 + extern void* const UTTypeRTFD = (void*)0; 127 + extern void* const UTTypeRealityFile = (void*)0; 128 + extern void* const UTTypeResolvable = (void*)0; 129 + extern void* const UTTypeRubyScript = (void*)0; 130 + extern void* const UTTypeSVG = (void*)0; 131 + extern void* const UTTypeSceneKitScene = (void*)0; 132 + extern void* const UTTypeScript = (void*)0; 133 + extern void* const UTTypeShellScript = (void*)0; 134 + extern void* const UTTypeSourceCode = (void*)0; 135 + extern void* const UTTypeSpotlightImporter = (void*)0; 136 + extern void* const UTTypeSpreadsheet = (void*)0; 137 + extern void* const UTTypeSwiftSource = (void*)0; 138 + extern void* const UTTypeSymbolicLink = (void*)0; 139 + extern void* const UTTypeSystemPreferencesPane = (void*)0; 140 + extern void* const UTTypeTIFF = (void*)0; 141 + extern void* const UTTypeTabSeparatedText = (void*)0; 142 + extern void* const UTTypeText = (void*)0; 143 + extern void* const UTTypeToDoItem = (void*)0; 144 + extern void* const UTTypeURL = (void*)0; 145 + extern void* const UTTypeURLBookmarkData = (void*)0; 146 + extern void* const UTTypeUSD = (void*)0; 147 + extern void* const UTTypeUSDZ = (void*)0; 148 + extern void* const UTTypeUTF16ExternalPlainText = (void*)0; 149 + extern void* const UTTypeUTF16PlainText = (void*)0; 150 + extern void* const UTTypeUTF8PlainText = (void*)0; 151 + extern void* const UTTypeUTF8TabSeparatedText = (void*)0; 152 + extern void* const UTTypeUnixExecutable = (void*)0; 153 + extern void* const UTTypeVCard = (void*)0; 154 + extern void* const UTTypeVideo = (void*)0; 155 + extern void* const UTTypeVolume = (void*)0; 156 + extern void* const UTTypeWAV = (void*)0; 157 + extern void* const UTTypeWebArchive = (void*)0; 158 + extern void* const UTTypeWebP = (void*)0; 159 + extern void* const UTTypeX509Certificate = (void*)0; 160 + extern void* const UTTypeXML = (void*)0; 161 + extern void* const UTTypeXMLPropertyList = (void*)0; 162 + extern void* const UTTypeXPCService = (void*)0; 163 + extern void* const UTTypeYAML = (void*)0; 164 + extern void* const UTTypeZIP = (void*)0; 165 + extern void* const _UTTagClassBluetoothVendorProductID = (void*)0; 166 + extern void* const _UTTagClassDeviceModelCode = (void*)0; 167 + extern void* const _UTTagClassHFSTypeCode = (void*)0; 168 + extern void* const _UTTagClassPasteboardType = (void*)0; 169 + extern void* const _UTTypeAppCategory = (void*)0; 170 + extern void* const _UTTypeAppCategoryActionGames = (void*)0; 171 + extern void* const _UTTypeAppCategoryAdventureGames = (void*)0; 172 + extern void* const _UTTypeAppCategoryArcadeGames = (void*)0; 173 + extern void* const _UTTypeAppCategoryBoardGames = (void*)0; 174 + extern void* const _UTTypeAppCategoryBookmarks = (void*)0; 175 + extern void* const _UTTypeAppCategoryBooks = (void*)0; 176 + extern void* const _UTTypeAppCategoryBusiness = (void*)0; 177 + extern void* const _UTTypeAppCategoryCardGames = (void*)0; 178 + extern void* const _UTTypeAppCategoryCasinoGames = (void*)0; 179 + extern void* const _UTTypeAppCategoryDeveloperTools = (void*)0; 180 + extern void* const _UTTypeAppCategoryDiceGames = (void*)0; 181 + extern void* const _UTTypeAppCategoryEducation = (void*)0; 182 + extern void* const _UTTypeAppCategoryEducationalGames = (void*)0; 183 + extern void* const _UTTypeAppCategoryEntertainment = (void*)0; 184 + extern void* const _UTTypeAppCategoryFamilyGames = (void*)0; 185 + extern void* const _UTTypeAppCategoryFinance = (void*)0; 186 + extern void* const _UTTypeAppCategoryFoodAndDrink = (void*)0; 187 + extern void* const _UTTypeAppCategoryGames = (void*)0; 188 + extern void* const _UTTypeAppCategoryGraphicsDesign = (void*)0; 189 + extern void* const _UTTypeAppCategoryHealthcareFitness = (void*)0; 190 + extern void* const _UTTypeAppCategoryKidsGames = (void*)0; 191 + extern void* const _UTTypeAppCategoryLifestyle = (void*)0; 192 + extern void* const _UTTypeAppCategoryMagazinesAndNewspapers = (void*)0; 193 + extern void* const _UTTypeAppCategoryMedical = (void*)0; 194 + extern void* const _UTTypeAppCategoryMusic = (void*)0; 195 + extern void* const _UTTypeAppCategoryMusicGames = (void*)0; 196 + extern void* const _UTTypeAppCategoryNavigation = (void*)0; 197 + extern void* const _UTTypeAppCategoryNews = (void*)0; 198 + extern void* const _UTTypeAppCategoryPhotoAndVideo = (void*)0; 199 + extern void* const _UTTypeAppCategoryPhotography = (void*)0; 200 + extern void* const _UTTypeAppCategoryProductivity = (void*)0; 201 + extern void* const _UTTypeAppCategoryPuzzleGames = (void*)0; 202 + extern void* const _UTTypeAppCategoryRacingGames = (void*)0; 203 + extern void* const _UTTypeAppCategoryReference = (void*)0; 204 + extern void* const _UTTypeAppCategoryRolePlayingGames = (void*)0; 205 + extern void* const _UTTypeAppCategoryShopping = (void*)0; 206 + extern void* const _UTTypeAppCategorySimulationGames = (void*)0; 207 + extern void* const _UTTypeAppCategorySocialNetworking = (void*)0; 208 + extern void* const _UTTypeAppCategorySports = (void*)0; 209 + extern void* const _UTTypeAppCategorySportsGames = (void*)0; 210 + extern void* const _UTTypeAppCategoryStrategyGames = (void*)0; 211 + extern void* const _UTTypeAppCategoryTravel = (void*)0; 212 + extern void* const _UTTypeAppCategoryTriviaGames = (void*)0; 213 + extern void* const _UTTypeAppCategoryUtilities = (void*)0; 214 + extern void* const _UTTypeAppCategoryVideo = (void*)0; 215 + extern void* const _UTTypeAppCategoryWeather = (void*)0; 216 + extern void* const _UTTypeAppCategoryWordGames = (void*)0; 217 + extern void* const _UTTypeAppleDevice = (void*)0; 218 + extern void* const _UTTypeAppleEncryptedArchive = (void*)0; 219 + extern void* const _UTTypeAppleTV = (void*)0; 220 + extern void* const _UTTypeAppleWatch = (void*)0; 221 + extern void* const _UTTypeApplicationsFolder = (void*)0; 222 + extern void* const _UTTypeBlockSpecial = (void*)0; 223 + extern void* const _UTTypeCharacterSpecial = (void*)0; 224 + extern void* const _UTTypeComputer = (void*)0; 225 + extern void* const _UTTypeDataContainer = (void*)0; 226 + extern void* const _UTTypeDevice = (void*)0; 227 + extern void* const _UTTypeDisplay = (void*)0; 228 + extern void* const _UTTypeDropFolder = (void*)0; 229 + extern void* const _UTTypeGenericPC = (void*)0; 230 + extern void* const _UTTypeHEIFStandard = (void*)0; 231 + extern void* const _UTTypeHomePod = (void*)0; 232 + extern void* const _UTTypeLibraryFolder = (void*)0; 233 + extern void* const _UTTypeMac = (void*)0; 234 + extern void* const _UTTypeMacBook = (void*)0; 235 + extern void* const _UTTypeMacBookAir = (void*)0; 236 + extern void* const _UTTypeMacBookPro = (void*)0; 237 + extern void* const _UTTypeMacLaptop = (void*)0; 238 + extern void* const _UTTypeMacMini = (void*)0; 239 + extern void* const _UTTypeMacPro = (void*)0; 240 + extern void* const _UTTypeNamedPipeOrFIFO = (void*)0; 241 + extern void* const _UTTypeNetworkNeighborhood = (void*)0; 242 + extern void* const _UTTypePassBundle = (void*)0; 243 + extern void* const _UTTypePassData = (void*)0; 244 + extern void* const _UTTypePassesData = (void*)0; 245 + extern void* const _UTTypeServersFolder = (void*)0; 246 + extern void* const _UTTypeSocket = (void*)0; 247 + extern void* const _UTTypeSpeaker = (void*)0; 248 + extern void* const _UTTypeiMac = (void*)0; 249 + extern void* const _UTTypeiOSDevice = (void*)0; 250 + extern void* const _UTTypeiOSSimulator = (void*)0; 251 + extern void* const _UTTypeiPad = (void*)0; 252 + extern void* const _UTTypeiPhone = (void*)0; 253 + extern void* const _UTTypeiPodTouch = (void*)0; 254 + extern void* const _ZTSSt11logic_error = (void*)0; 255 + extern void* const _ZTSSt12length_error = (void*)0; 256 + extern void* const _ZTSSt19bad_optional_access = (void*)0; 257 + extern void* const _ZTSSt20bad_array_new_length = (void*)0; 258 + extern void* const _ZTSSt9bad_alloc = (void*)0; 259 + extern void* const _ZTSSt9exception = (void*)0; 33 260 34 - void *_ZN22UniformTypeIdentifiers9ModelCodeL26getDeviceTypeWithModelCodeEP8NSStringRKNSt3__18optionalI15UTHardwareColorEENS0_7OptionsE(void) { 35 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL26getDeviceTypeWithModelCodeEP8NSStringRKNSt3__18optionalI15UTHardwareColorEENS0_7OptionsE called"); 261 + void *_UTGetAllCoreTypesConstants(void) { 262 + if (verbose) puts("STUB: _UTGetAllCoreTypesConstants called"); 36 263 return NULL; 37 - ) 264 + } 38 265 39 - void *_ZN22UniformTypeIdentifiers9ModelCodeL71getDeviceTypeWithModelCodeAndHardwareColorWithoutResolvingCurrentDeviceEP8NSStringRKNSt3__18optionalI15UTHardwareColorEE(void) { 40 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL71getDeviceTypeWithModelCodeAndHardwareColorWithoutResolvingCurrentDeviceEP8NSStringRKNSt3__18optionalI15UTHardwareColorEE called"); 266 + void *_UTHardwareColorGetCurrentEnclosureColor(void) { 267 + if (verbose) puts("STUB: _UTHardwareColorGetCurrentEnclosureColor called"); 41 268 return NULL; 42 - ) 269 + } 43 270 44 - void *_ZN22UniformTypeIdentifiers9ModelCodeL26getCurrentDeviceModelCodesEv(void) { 45 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL26getCurrentDeviceModelCodesEv called"); 271 + void *_UTHardwareColorGetDebugDescription(void) { 272 + if (verbose) puts("STUB: _UTHardwareColorGetDebugDescription called"); 46 273 return NULL; 47 - ) 274 + } 48 275 49 - void *_ZN22UniformTypeIdentifiers9ModelCodeL32getHardwareColorForCurrentDeviceEv(void) { 50 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL32getHardwareColorForCurrentDeviceEv called"); 276 + void *_UTHardwareColorMakeWithIndex(void) { 277 + if (verbose) puts("STUB: _UTHardwareColorMakeWithIndex called"); 51 278 return NULL; 52 - ) 279 + } 53 280 54 - void *_ZN22UniformTypeIdentifiers9ModelCodeL22getHardwareColorSuffixERK15UTHardwareColor(void) { 55 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL22getHardwareColorSuffixERK15UTHardwareColor called"); 281 + void *_UTHardwareColorMakeWithRGBComponents(void) { 282 + if (verbose) puts("STUB: _UTHardwareColorMakeWithRGBComponents called"); 56 283 return NULL; 57 - ) 284 + } 58 285 59 - void *_ZNSt3__127__throw_bad_optional_accessEv(void) { 60 - if (verbose) puts("STUB: _ZNSt3__127__throw_bad_optional_accessEv called"); 286 + void *_UTHardwareColorsAreEqual(void) { 287 + if (verbose) puts("STUB: _UTHardwareColorsAreEqual called"); 61 288 return NULL; 62 - ) 289 + } 63 290 64 - void *_ZN22UniformTypeIdentifiers9ModelCodeL3logEv(void) { 65 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL3logEv called"); 291 + void *_UTIdentifierGetCanonicalRepresentation(void) { 292 + if (verbose) puts("STUB: _UTIdentifierGetCanonicalRepresentation called"); 66 293 return NULL; 67 - ) 294 + } 68 295 69 - void *_ZN22UniformTypeIdentifiers9AccessoryL3logEv(void) { 70 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9AccessoryL3logEv called"); 296 + void *_UTIdentifierGetHashCode(void) { 297 + if (verbose) puts("STUB: _UTIdentifierGetHashCode called"); 71 298 return NULL; 72 - ) 299 + } 73 300 74 - void *_ZL23_UTTypeGetForIdentifierP8NSStringa(void) { 75 - if (verbose) puts("STUB: _ZL23_UTTypeGetForIdentifierP8NSStringa called"); 301 + void *_UTIdentifiersAreEqual(void) { 302 + if (verbose) puts("STUB: _UTIdentifiersAreEqual called"); 76 303 return NULL; 77 - ) 304 + } 78 305 79 - void *_ZN22UniformTypeIdentifiers4TypeL24detachTypeRecordsInTypesIU8__strongP12NSMutableSetIP6UTTypeEEEvT_(void) { 80 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers4TypeL24detachTypeRecordsInTypesIU8__strongP12NSMutableSetIP6UTTypeEEEvT_ called"); 306 + void *_UTPrintModelCodesForCurrentDevice(void) { 307 + if (verbose) puts("STUB: _UTPrintModelCodesForCurrentDevice called"); 81 308 return NULL; 82 - ) 309 + } 83 310 84 - void *_UTDetachTypeRecords(void) { 85 - if (verbose) puts("STUB: _UTDetachTypeRecords called"); 311 + void *_UTSetRuntimeIssueCatcher(void) { 312 + if (verbose) puts("STUB: _UTSetRuntimeIssueCatcher called"); 86 313 return NULL; 87 - ) 314 + } 88 315 89 - void *_ZN22UniformTypeIdentifiers4TypeL10isTagValidEP8NSStringS2_(void) { 90 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers4TypeL10isTagValidEP8NSStringS2_ called"); 316 + void *_UTTaggedTypeCreate(void) { 317 + if (verbose) puts("STUB: _UTTaggedTypeCreate called"); 91 318 return NULL; 92 - ) 319 + } 93 320 94 - void *_ZN22UniformTypeIdentifiers4TypeL15getExportedTypeEP8NSStringP6UTTypeP8NSBundle(void) { 95 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers4TypeL15getExportedTypeEP8NSStringP6UTTypeP8NSBundle called"); 321 + void *__UNIFORM_TYPE_IDENTIFIER_WAS_NOT_DECLARED_IN_INFO_PLIST_OF_BUNDLE__(void) { 322 + if (verbose) puts("STUB: __UNIFORM_TYPE_IDENTIFIER_WAS_NOT_DECLARED_IN_INFO_PLIST_OF_BUNDLE__ called"); 96 323 return NULL; 97 - ) 324 + } 98 325 99 - void *_ZN22UniformTypeIdentifiers4TypeL15getImportedTypeEP8NSStringP6UTTypeP8NSBundle(void) { 100 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers4TypeL15getImportedTypeEP8NSStringP6UTTypeP8NSBundle called"); 101 - return NULL; 102 - ) 103 - 104 - void *_ZN22UniformTypeIdentifiers4TypeL21getHFSTypeCodeFromTagEP8NSStringPj(void) { 105 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers4TypeL21getHFSTypeCodeFromTagEP8NSStringPj called"); 106 - return NULL; 107 - ) 108 - 109 - void *_ZNSt3__16vectorIP12UTTypeRecordNS_9allocatorIS3_EEEC2EmRKS2_(void) { 110 - if (verbose) puts("STUB: _ZNSt3__16vectorIP12UTTypeRecordNS_9allocatorIS3_EEEC2EmRKS2_ called"); 111 - return NULL; 112 - ) 113 - 114 - void *__clang_call_terminate(void) { 115 - if (verbose) puts("STUB: __clang_call_terminate called"); 116 - return NULL; 117 - ) 118 - 119 - void *_ZNKSt3__113__vector_baseIP12UTTypeRecordNS_9allocatorIS3_EEE20__throw_length_errorEv(void) { 120 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIP12UTTypeRecordNS_9allocatorIS3_EEE20__throw_length_errorEv called"); 121 - return NULL; 122 - ) 123 - 124 - void *_ZNSt3__16vectorIcNS_9allocatorIcEEEC2EmRKc(void) { 125 - if (verbose) puts("STUB: _ZNSt3__16vectorIcNS_9allocatorIcEEEC2EmRKc called"); 126 - return NULL; 127 - ) 128 - 129 - void *_ZNKSt3__113__vector_baseIcNS_9allocatorIcEEE20__throw_length_errorEv(void) { 130 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIcNS_9allocatorIcEEE20__throw_length_errorEv called"); 131 - return NULL; 132 - ) 133 - 134 - void *_ZNSt3__121__murmur2_or_cityhashImLm64EEclEPKvm(void) { 135 - if (verbose) puts("STUB: _ZNSt3__121__murmur2_or_cityhashImLm64EEclEPKvm called"); 136 - return NULL; 137 - ) 138 - 139 - void *_UTCoreTypesConstantSetTypeRecordIfNil(void) { 140 - if (verbose) puts("STUB: _UTCoreTypesConstantSetTypeRecordIfNil called"); 141 - return NULL; 142 - ) 143 - 144 - void *_ZN22UniformTypeIdentifiers9CoreTypesL3logEv(void) { 145 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9CoreTypesL3logEv called"); 146 - return NULL; 147 - ) 148 - 149 - void *__UNIFORM_TYPE_IDENTIFIERS_FAILED_TO_REALIZE_A_COMPILE_TIME_CONSTANT_TYPE_OBJECT__(void) { 150 - if (verbose) puts("STUB: __UNIFORM_TYPE_IDENTIFIERS_FAILED_TO_REALIZE_A_COMPILE_TIME_CONSTANT_TYPE_OBJECT__ called"); 151 - return NULL; 152 - ) 153 - 154 - void *_ZNKSt3__113__vector_baseIP9objc_ivarNS_9allocatorIS2_EEE20__throw_length_errorEv(void) { 155 - if (verbose) puts("STUB: _ZNKSt3__113__vector_baseIP9objc_ivarNS_9allocatorIS2_EEE20__throw_length_errorEv called"); 156 - return NULL; 157 - ) 158 - 159 - void *_ZNSt3__120__throw_length_errorEPKc(void) { 160 - if (verbose) puts("STUB: _ZNSt3__120__throw_length_errorEPKc called"); 161 - return NULL; 162 - ) 163 - 164 - void *_ZNSt12length_errorC1EPKc(void) { 165 - if (verbose) puts("STUB: _ZNSt12length_errorC1EPKc called"); 326 + void *__UTFindCoreTypesConstantWithIdentifier(void) { 327 + if (verbose) puts("STUB: __UTFindCoreTypesConstantWithIdentifier called"); 166 328 return NULL; 167 - ) 329 + } 168 330 169 - void *_typeIdentifierFromUTType(void) { 170 - if (verbose) puts("STUB: _typeIdentifierFromUTType called"); 331 + void *__UTGetDeclarationStatusFromInfoPlist(void) { 332 + if (verbose) puts("STUB: __UTGetDeclarationStatusFromInfoPlist called"); 171 333 return NULL; 172 - ) 173 - 174 - void *_utTypesFromTypeIdentifiers(void) { 175 - if (verbose) puts("STUB: _utTypesFromTypeIdentifiers called"); 176 - return NULL; 177 - ) 178 - 179 - void *_ZN22UniformTypeIdentifiers13RuntimeIssuesL27checkListsForTypeIdentifierEP8NSStringP7NSArrayIP12NSDictionaryIS2_P11objc_objectEESA_(void) { 180 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers13RuntimeIssuesL27checkListsForTypeIdentifierEP8NSStringP7NSArrayIP12NSDictionaryIS2_P11objc_objectEESA_ called"); 181 - return NULL; 182 - ) 183 - 184 - void *_ZN22UniformTypeIdentifiers13RuntimeIssuesL15runtimeIssueLogEv(void) { 185 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers13RuntimeIssuesL15runtimeIssueLogEv called"); 186 - return NULL; 187 - ) 188 - 189 - void *_ZN22UniformTypeIdentifiers13RuntimeIssuesL43enumerateTypeIdentifiersInDeclarationsArrayEP7NSArrayIP12NSDictionaryIP8NSStringP11objc_objectEEU13block_pointerFvS4_PaE(void) { 190 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers13RuntimeIssuesL43enumerateTypeIdentifiersInDeclarationsArrayEP7NSArrayIP12NSDictionaryIP8NSStringP11objc_objectEEU13block_pointerFvS4_PaE called"); 191 - return NULL; 192 - ) 193 - 194 - void *_ZN22UniformTypeIdentifiers13RuntimeIssuesL17isBinaryTheCallerEPK11mach_header(void) { 195 - if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers13RuntimeIssuesL17isBinaryTheCallerEPK11mach_header called"); 196 - return NULL; 197 - ) 334 + } 198 335
+4 -3
src/private-frameworks/ShazamCore/CMakeLists.txt
··· 5 5 ) 6 6 7 7 set(DYLIB_COMPAT_VERSION "0.0.0") 8 - set(DYLIB_CURRENT_VERSION "195.12.0") 8 + set(DYLIB_CURRENT_VERSION "207.9.0") 9 9 10 10 set(FRAMEWORK_VERSION "A") 11 11 ··· 27 27 src/SHCampaignTokens.m 28 28 src/SHJSONLFileReader.m 29 29 src/SHCompression.m 30 + src/SHOffersNetworkRequester.m 30 31 src/SHDefaultConfigurationValues.m 31 32 src/SHRemoteConfiguration.m 32 33 src/SHDataStreamOutput.m ··· 36 37 src/SHLocalization.m 37 38 src/SHEndpoints.m 38 39 src/SHAnalytics.m 39 - src/SHService.m 40 40 src/SHMusicSubscriptionStatus.m 41 41 src/SHEntitlements.m 42 42 src/SHFeatureFlags.m 43 43 src/SHDataStreamInput.m 44 44 src/SHCoreError.m 45 + src/SHOffers.m 45 46 src/SHDataCompression.m 46 47 src/SHBagContract.m 47 48 src/SHStorefront.m ··· 53 54 system 54 55 objc 55 56 Foundation 56 - ) 57 + )
src/private-frameworks/ShazamCore/include/ShazamCore/SHService.h src/private-frameworks/ShazamEvents/include/ShazamEvents/SHService.h
+31 -4
src/private-frameworks/ShazamCore/include/ShazamCore/ShazamCore.h
··· 43 43 #import <ShazamCore/SHJSONLFileWriter.h> 44 44 #import <ShazamCore/SHLocalization.h> 45 45 #import <ShazamCore/SHMusicSubscriptionStatus.h> 46 + #import <ShazamCore/SHOffers.h> 47 + #import <ShazamCore/SHOffersNetworkRequester.h> 46 48 #import <ShazamCore/SHRemoteConfiguration.h> 47 - #import <ShazamCore/SHService.h> 48 - #import <ShazamCore/SHService.h> 49 49 #import <ShazamCore/SHStorefront.h> 50 50 #import <ShazamCore/SHTokenizedURL.h> 51 51 52 52 53 - extern extern const void* ShazamCoreVersionString; 54 - extern extern const void* ShazamCoreVersionNumber; 53 + void *sh_log_object(void); 54 + 55 + 56 + extern void* const SHAnalyticsActionAppleMusic; 57 + extern void* const SHAnalyticsActionNotificationTap; 58 + extern void* const SHAnalyticsEventMusicRecognitionAlert; 59 + extern void* const SHAnalyticsEventMusicRecognitionEnabled; 60 + extern void* const SHAnalyticsEventMusicRecognitionHistory; 61 + extern void* const SHAnalyticsEventMusicRecognitionList; 62 + extern void* const SHAnalyticsEventMusicRecognitionResult; 63 + extern void* const SHAnalyticsEventMusicRecognitionResultAction; 64 + extern void* const SHAnalyticsEventMusicRecognitionResultExpanded; 65 + extern void* const SHAnalyticsPayloadActionKey; 66 + extern void* const SHAnalyticsPayloadEnabledKey; 67 + extern void* const SHAnalyticsPayloadErrorCodeKey; 68 + extern void* const SHAnalyticsPayloadMatchKey; 69 + extern void* const SHAnalyticsPayloadNumberShazamsKey; 70 + extern void* const SHAnalyticsPayloadSecureAccountKey; 71 + extern void* const SHAnalyticsPayloadSourceKey; 72 + extern void* const SHCampaignTokenDefaultCampaignValue; 73 + extern void* const SHCoreErrorDomain; 74 + extern void* const SHDefaultWorkerTimeout; 75 + extern void* const SHRecordingIntermissionDefaultValue; 76 + extern void* const SHShazamKitExternalAudioRecordingEntitlement; 77 + extern void* const SHShazamKitInternalAudioRecordingEntitlement; 78 + extern void* const SHShazamKitInternalClientEntitlement; 79 + extern void* const SHShazamKitTCCEntitlement; 80 + extern void* const SHShazamKitTCCEntitlementMediaLibrary; 81 + extern void* const SHShazamKitTCCEntitlementMicrophone; 55 82 56 83 #endif 57 84
+34
src/private-frameworks/ShazamCore/src/SHOffers.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamCore/SHOffers.h> 21 + 22 + @implementation SHOffers 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+5
src/private-frameworks/ShazamCore/src/SHService.m src/private-frameworks/ShazamCore/include/ShazamCore/SHOffers.h
··· 17 17 along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 18 */ 19 19 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface SHOffers : NSObject 23 + 24 + @end
+33 -2
src/private-frameworks/ShazamCore/src/ShazamCore.m
··· 22 22 #include <stdlib.h> 23 23 #include <stdio.h> 24 24 25 + static int verbose = 0; 25 26 __attribute__((constructor)) 26 27 static void initme(void) { 27 28 verbose = getenv("STUB_VERBOSE") != NULL; 28 29 } 29 30 30 31 31 - extern const void* ShazamCoreVersionString = (void*)0; 32 - extern const void* ShazamCoreVersionNumber = (void*)0; 32 + extern void* const SHAnalyticsActionAppleMusic = (void*)0; 33 + extern void* const SHAnalyticsActionNotificationTap = (void*)0; 34 + extern void* const SHAnalyticsEventMusicRecognitionAlert = (void*)0; 35 + extern void* const SHAnalyticsEventMusicRecognitionEnabled = (void*)0; 36 + extern void* const SHAnalyticsEventMusicRecognitionHistory = (void*)0; 37 + extern void* const SHAnalyticsEventMusicRecognitionList = (void*)0; 38 + extern void* const SHAnalyticsEventMusicRecognitionResult = (void*)0; 39 + extern void* const SHAnalyticsEventMusicRecognitionResultAction = (void*)0; 40 + extern void* const SHAnalyticsEventMusicRecognitionResultExpanded = (void*)0; 41 + extern void* const SHAnalyticsPayloadActionKey = (void*)0; 42 + extern void* const SHAnalyticsPayloadEnabledKey = (void*)0; 43 + extern void* const SHAnalyticsPayloadErrorCodeKey = (void*)0; 44 + extern void* const SHAnalyticsPayloadMatchKey = (void*)0; 45 + extern void* const SHAnalyticsPayloadNumberShazamsKey = (void*)0; 46 + extern void* const SHAnalyticsPayloadSecureAccountKey = (void*)0; 47 + extern void* const SHAnalyticsPayloadSourceKey = (void*)0; 48 + extern void* const SHCampaignTokenDefaultCampaignValue = (void*)0; 49 + extern void* const SHCoreErrorDomain = (void*)0; 50 + extern void* const SHDefaultWorkerTimeout = (void*)0; 51 + extern void* const SHRecordingIntermissionDefaultValue = (void*)0; 52 + extern void* const SHShazamKitExternalAudioRecordingEntitlement = (void*)0; 53 + extern void* const SHShazamKitInternalAudioRecordingEntitlement = (void*)0; 54 + extern void* const SHShazamKitInternalClientEntitlement = (void*)0; 55 + extern void* const SHShazamKitTCCEntitlement = (void*)0; 56 + extern void* const SHShazamKitTCCEntitlementMediaLibrary = (void*)0; 57 + extern void* const SHShazamKitTCCEntitlementMicrophone = (void*)0; 58 + 59 + void *sh_log_object(void) { 60 + if (verbose) puts("STUB: sh_log_object called"); 61 + return NULL; 62 + } 63 +
+5 -2
src/private-frameworks/ShazamEvents/CMakeLists.txt
··· 23 23 VERSION ${FRAMEWORK_VERSION} 24 24 25 25 SOURCES 26 - src/_TtC12ShazamEvents21LiveMusicEventFetcher.m 27 26 src/SHShazamEventsServiceInterfaces.m 28 27 src/_TtC12ShazamEvents24LiveMusicEventConnection.m 28 + src/_TtC12ShazamEvents19ShazamEventsService.m 29 + src/_TtC12ShazamEvents31LiveMusicEventXPCValueContainer.m 30 + src/_TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer.m 31 + src/_TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer.m 29 32 src/ShazamEvents.m 30 33 31 34 DEPENDENCIES 32 35 system 33 36 objc 34 37 Foundation 35 - ) 38 + )
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/SHServiceDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @protocol SHServiceDelegate 23 + 24 + @end
+8 -40
src/private-frameworks/ShazamEvents/include/ShazamEvents/ShazamEvents.h
··· 22 22 23 23 #import <Foundation/Foundation.h> 24 24 25 + #import <ShazamEvents/SHService.h> 26 + #import <ShazamEvents/SHServiceDelegate.h> 25 27 #import <ShazamEvents/SHShazamEventsServiceInterfaces.h> 26 - #import <ShazamEvents/_TtC12ShazamEvents21LiveMusicEventFetcher.h> 28 + #import <ShazamEvents/_TtC12ShazamEvents19ShazamEventsService.h> 27 29 #import <ShazamEvents/_TtC12ShazamEvents24LiveMusicEventConnection.h> 30 + #import <ShazamEvents/_TtC12ShazamEvents31LiveMusicEventXPCValueContainer.h> 31 + #import <ShazamEvents/_TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer.h> 32 + #import <ShazamEvents/_TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer.h> 28 33 #import <ShazamEvents/_TtP12ShazamEvents18ShazamEventsClient_.h> 29 34 #import <ShazamEvents/_TtP12ShazamEvents18ShazamEventsServer_.h> 30 35 31 36 32 - void *__swift_instantiateConcreteTypeFromMangledName(void); 33 - void *__swift_memcpy1_1(void); 34 - void *__swift_noop_void_return(void); 35 - void *__swift_project_boxed_opaque_existential_1(void); 36 - void *__swift_destroy_boxed_opaque_existential_1(void); 37 - void *__swift_memcpy16_8(void); 38 - void *__swift_instantiateGenericMetadata(void); 39 - void *__chkstk_darwin(void); 40 - void *__chkstk_darwin_llvm_probe(void); 41 - void *__swift_allocate_value_buffer(void); 42 - void *__swift_project_value_buffer(void); 43 - void *__swift_instantiateConcreteTypeFromMangledNameAbstract(void); 44 - void *__swift_mutable_project_boxed_opaque_existential_1(void); 45 - void *__swift_memcpy25_8(void); 46 - void *block_copy_helper(void); 47 - void *block_destroy_helper(void); 48 - void *__swift_memcpy72_8(void); 49 - void *__swift_memcpy88_8(void); 50 - void *__swift_memcpy104_8(void); 51 - void *block_copy_helper(void); 52 - void *block_destroy_helper(void); 53 - void *_swift_stdlib_malloc_size(void); 54 - void *__swift_memcpy24_8(void); 55 - void *__swift_memcpy160_8(void); 56 - void *_swift_stdlib_malloc_size(void); 57 - void *__swift_memcpy0_1(void); 58 - void *__swift_memcpy32_8(void); 59 - void *block_copy_helper(void); 60 - void *block_destroy_helper(void); 61 - void *__swift_memcpy40_8(void); 62 - void *__swift_destroy_boxed_opaque_existential_0(void); 63 - void *_swift_stdlib_malloc_size(void); 64 - void *__swift_memcpy96_8(void); 65 - void *_swift_stdlib_malloc_size(void); 37 + void *SHShazamEventsClientInterface(void); 38 + void *SHShazamEventsServiceInterface(void); 66 39 67 40 68 - extern extern const void* ShazamEventsVersionString; 69 - extern extern const void* ShazamEventsVersionNumber; 70 - extern extern const void* __unnamed_1; 71 - extern extern const void* __swift_reflection_version; 72 - extern extern const void* __unnamed_1; 73 41 74 42 #endif 75 43
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtC12ShazamEvents19ShazamEventsService.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _TtC12ShazamEvents19ShazamEventsService : NSObject 23 + 24 + @end
+1 -1
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtC12ShazamEvents21LiveMusicEventFetcher.h src/private-frameworks/ShazamCore/include/ShazamCore/SHOffersNetworkRequester.h
··· 19 19 20 20 #include <Foundation/Foundation.h> 21 21 22 - @interface _TtC12ShazamEvents21LiveMusicEventFetcher : NSObject 22 + @interface SHOffersNetworkRequester : NSObject 23 23 24 24 @end
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtC12ShazamEvents31LiveMusicEventXPCValueContainer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _TtC12ShazamEvents31LiveMusicEventXPCValueContainer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface _TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer : NSObject 23 + 24 + @end
+7 -171
src/private-frameworks/ShazamEvents/src/ShazamEvents.m
··· 22 22 #include <stdlib.h> 23 23 #include <stdio.h> 24 24 25 + static int verbose = 0; 25 26 __attribute__((constructor)) 26 27 static void initme(void) { 27 28 verbose = getenv("STUB_VERBOSE") != NULL; 28 29 } 29 30 30 31 31 - extern const void* ShazamEventsVersionString = (void*)0; 32 - extern const void* ShazamEventsVersionNumber = (void*)0; 33 - extern const void* __unnamed_1 = (void*)0; 34 - extern const void* __swift_reflection_version = (void*)0; 35 - extern const void* __unnamed_1 = (void*)0; 36 32 37 - void *__swift_instantiateConcreteTypeFromMangledName(void) { 38 - if (verbose) puts("STUB: __swift_instantiateConcreteTypeFromMangledName called"); 39 - return NULL; 40 - ) 41 - 42 - void *__swift_memcpy1_1(void) { 43 - if (verbose) puts("STUB: __swift_memcpy1_1 called"); 44 - return NULL; 45 - ) 46 - 47 - void *__swift_noop_void_return(void) { 48 - if (verbose) puts("STUB: __swift_noop_void_return called"); 49 - return NULL; 50 - ) 51 - 52 - void *__swift_project_boxed_opaque_existential_1(void) { 53 - if (verbose) puts("STUB: __swift_project_boxed_opaque_existential_1 called"); 54 - return NULL; 55 - ) 56 - 57 - void *__swift_destroy_boxed_opaque_existential_1(void) { 58 - if (verbose) puts("STUB: __swift_destroy_boxed_opaque_existential_1 called"); 59 - return NULL; 60 - ) 61 - 62 - void *__swift_memcpy16_8(void) { 63 - if (verbose) puts("STUB: __swift_memcpy16_8 called"); 64 - return NULL; 65 - ) 66 - 67 - void *__swift_instantiateGenericMetadata(void) { 68 - if (verbose) puts("STUB: __swift_instantiateGenericMetadata called"); 69 - return NULL; 70 - ) 71 - 72 - void *__chkstk_darwin(void) { 73 - if (verbose) puts("STUB: __chkstk_darwin called"); 74 - return NULL; 75 - ) 76 - 77 - void *__chkstk_darwin_llvm_probe(void) { 78 - if (verbose) puts("STUB: __chkstk_darwin_llvm_probe called"); 79 - return NULL; 80 - ) 81 - 82 - void *__swift_allocate_value_buffer(void) { 83 - if (verbose) puts("STUB: __swift_allocate_value_buffer called"); 84 - return NULL; 85 - ) 86 - 87 - void *__swift_project_value_buffer(void) { 88 - if (verbose) puts("STUB: __swift_project_value_buffer called"); 89 - return NULL; 90 - ) 91 - 92 - void *__swift_instantiateConcreteTypeFromMangledNameAbstract(void) { 93 - if (verbose) puts("STUB: __swift_instantiateConcreteTypeFromMangledNameAbstract called"); 94 - return NULL; 95 - ) 96 - 97 - void *__swift_mutable_project_boxed_opaque_existential_1(void) { 98 - if (verbose) puts("STUB: __swift_mutable_project_boxed_opaque_existential_1 called"); 99 - return NULL; 100 - ) 101 - 102 - void *__swift_memcpy25_8(void) { 103 - if (verbose) puts("STUB: __swift_memcpy25_8 called"); 104 - return NULL; 105 - ) 106 - 107 - void *block_copy_helper(void) { 108 - if (verbose) puts("STUB: block_copy_helper called"); 109 - return NULL; 110 - ) 111 - 112 - void *block_destroy_helper(void) { 113 - if (verbose) puts("STUB: block_destroy_helper called"); 114 - return NULL; 115 - ) 116 - 117 - void *__swift_memcpy72_8(void) { 118 - if (verbose) puts("STUB: __swift_memcpy72_8 called"); 119 - return NULL; 120 - ) 121 - 122 - void *__swift_memcpy88_8(void) { 123 - if (verbose) puts("STUB: __swift_memcpy88_8 called"); 33 + void *SHShazamEventsClientInterface(void) { 34 + if (verbose) puts("STUB: SHShazamEventsClientInterface called"); 124 35 return NULL; 125 - ) 36 + } 126 37 127 - void *__swift_memcpy104_8(void) { 128 - if (verbose) puts("STUB: __swift_memcpy104_8 called"); 38 + void *SHShazamEventsServiceInterface(void) { 39 + if (verbose) puts("STUB: SHShazamEventsServiceInterface called"); 129 40 return NULL; 130 - ) 131 - 132 - void *block_copy_helper(void) { 133 - if (verbose) puts("STUB: block_copy_helper called"); 134 - return NULL; 135 - ) 136 - 137 - void *block_destroy_helper(void) { 138 - if (verbose) puts("STUB: block_destroy_helper called"); 139 - return NULL; 140 - ) 141 - 142 - void *_swift_stdlib_malloc_size(void) { 143 - if (verbose) puts("STUB: _swift_stdlib_malloc_size called"); 144 - return NULL; 145 - ) 146 - 147 - void *__swift_memcpy24_8(void) { 148 - if (verbose) puts("STUB: __swift_memcpy24_8 called"); 149 - return NULL; 150 - ) 151 - 152 - void *__swift_memcpy160_8(void) { 153 - if (verbose) puts("STUB: __swift_memcpy160_8 called"); 154 - return NULL; 155 - ) 156 - 157 - void *_swift_stdlib_malloc_size(void) { 158 - if (verbose) puts("STUB: _swift_stdlib_malloc_size called"); 159 - return NULL; 160 - ) 161 - 162 - void *__swift_memcpy0_1(void) { 163 - if (verbose) puts("STUB: __swift_memcpy0_1 called"); 164 - return NULL; 165 - ) 166 - 167 - void *__swift_memcpy32_8(void) { 168 - if (verbose) puts("STUB: __swift_memcpy32_8 called"); 169 - return NULL; 170 - ) 171 - 172 - void *block_copy_helper(void) { 173 - if (verbose) puts("STUB: block_copy_helper called"); 174 - return NULL; 175 - ) 176 - 177 - void *block_destroy_helper(void) { 178 - if (verbose) puts("STUB: block_destroy_helper called"); 179 - return NULL; 180 - ) 181 - 182 - void *__swift_memcpy40_8(void) { 183 - if (verbose) puts("STUB: __swift_memcpy40_8 called"); 184 - return NULL; 185 - ) 186 - 187 - void *__swift_destroy_boxed_opaque_existential_0(void) { 188 - if (verbose) puts("STUB: __swift_destroy_boxed_opaque_existential_0 called"); 189 - return NULL; 190 - ) 191 - 192 - void *_swift_stdlib_malloc_size(void) { 193 - if (verbose) puts("STUB: _swift_stdlib_malloc_size called"); 194 - return NULL; 195 - ) 196 - 197 - void *__swift_memcpy96_8(void) { 198 - if (verbose) puts("STUB: __swift_memcpy96_8 called"); 199 - return NULL; 200 - ) 201 - 202 - void *_swift_stdlib_malloc_size(void) { 203 - if (verbose) puts("STUB: _swift_stdlib_malloc_size called"); 204 - return NULL; 205 - ) 41 + } 206 42
+34
src/private-frameworks/ShazamEvents/src/_TtC12ShazamEvents19ShazamEventsService.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamEvents/_TtC12ShazamEvents19ShazamEventsService.h> 21 + 22 + @implementation _TtC12ShazamEvents19ShazamEventsService 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+2 -2
src/private-frameworks/ShazamEvents/src/_TtC12ShazamEvents21LiveMusicEventFetcher.m src/private-frameworks/ShazamCore/src/SHOffersNetworkRequester.m
··· 17 17 along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 18 */ 19 19 20 - #import <ShazamEvents/_TtC12ShazamEvents21LiveMusicEventFetcher.h> 20 + #import <ShazamCore/SHOffersNetworkRequester.h> 21 21 22 - @implementation _TtC12ShazamEvents21LiveMusicEventFetcher 22 + @implementation SHOffersNetworkRequester 23 23 24 24 - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 25 {
+34
src/private-frameworks/ShazamEvents/src/_TtC12ShazamEvents31LiveMusicEventXPCValueContainer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamEvents/_TtC12ShazamEvents31LiveMusicEventXPCValueContainer.h> 21 + 22 + @implementation _TtC12ShazamEvents31LiveMusicEventXPCValueContainer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/ShazamEvents/src/_TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamEvents/_TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer.h> 21 + 22 + @implementation _TtC12ShazamEvents34LiveMusicScheduleXPCValueContainer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+34
src/private-frameworks/ShazamEvents/src/_TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2023 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <ShazamEvents/_TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer.h> 21 + 22 + @implementation _TtC12ShazamEvents39LiveMusicVenueScheduleXPCValueContainer 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+1 -1
src/private-frameworks/ShazamInsights/CMakeLists.txt
··· 5 5 ) 6 6 7 7 set(DYLIB_COMPAT_VERSION "0.0.0") 8 - set(DYLIB_CURRENT_VERSION "195.12.0") 8 + set(DYLIB_CURRENT_VERSION "207.9.0") 9 9 10 10 set(FRAMEWORK_VERSION "A") 11 11
+2
src/private-frameworks/ShazamInsights/include/ShazamInsights/CLLocation+Geohash.h
··· 19 19 20 20 #include <Foundation/Foundation.h> 21 21 22 + #import <CoreLocation/CLLocation.h> 23 + 22 24 @interface CLLocation (Geohash) 23 25 24 26 @end
+1 -5
src/private-frameworks/ShazamInsights/include/ShazamInsights/ShazamInsights.h
··· 58 58 #import <ShazamInsights/SHTimeAndPlaceServerResponseParser.h> 59 59 60 60 61 - void *sh_columnToText(void); 62 - void *sh_databaseErrorToNSError(void); 63 - void *sh_CaseDiacriticInsensitiveCollation(void); 64 61 65 62 66 - extern extern const void* ShazamInsightsVersionString; 67 - extern extern const void* ShazamInsightsVersionNumber; 63 + extern void* const SHInsightsErrorDomain; 68 64 69 65 #endif 70 66
+2 -17
src/private-frameworks/ShazamInsights/src/ShazamInsights.m
··· 22 22 #include <stdlib.h> 23 23 #include <stdio.h> 24 24 25 + static int verbose = 0; 25 26 __attribute__((constructor)) 26 27 static void initme(void) { 27 28 verbose = getenv("STUB_VERBOSE") != NULL; 28 29 } 29 30 30 31 31 - extern const void* ShazamInsightsVersionString = (void*)0; 32 - extern const void* ShazamInsightsVersionNumber = (void*)0; 33 - 34 - void *sh_columnToText(void) { 35 - if (verbose) puts("STUB: sh_columnToText called"); 36 - return NULL; 37 - ) 38 - 39 - void *sh_databaseErrorToNSError(void) { 40 - if (verbose) puts("STUB: sh_databaseErrorToNSError called"); 41 - return NULL; 42 - ) 43 - 44 - void *sh_CaseDiacriticInsensitiveCollation(void) { 45 - if (verbose) puts("STUB: sh_CaseDiacriticInsensitiveCollation called"); 46 - return NULL; 47 - ) 32 + extern void* const SHInsightsErrorDomain = (void*)0; 48 33
+2
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHMediaItem+Presentation.h
··· 19 19 20 20 #include <Foundation/Foundation.h> 21 21 22 + #import <ShazamKit/SHMediaItem.h> 23 + 22 24 @interface SHMediaItem (Presentation) 23 25 24 26 @end
-15
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/ShazamKitUI.h
··· 48 48 #import <ShazamKitUI/_TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView.h> 49 49 50 50 51 - void *__swift_memcpy16_8(void); 52 - void *__swift_noop_void_return(void); 53 - void *__swift_instantiateConcreteTypeFromMangledNameAbstract(void); 54 - void *__swift_instantiateConcreteTypeFromMangledName(void); 55 - void *__swift_memcpy17_8(void); 56 - void *__swift_memcpy40_8(void); 57 - void *__swift_memcpy24_8(void); 58 - void *__chkstk_darwin(void); 59 - void *__chkstk_darwin_llvm_probe(void); 60 - void *__swift_project_boxed_opaque_existential_1(void); 61 - void *__swift_destroy_boxed_opaque_existential_1(void); 62 - void *__swift_memcpy74_8(void); 63 51 64 52 65 - extern extern const void* ShazamKitUIVersionString; 66 - extern extern const void* ShazamKitUIVersionNumber; 67 - extern extern const void* __swift_reflection_version; 68 53 69 54 #endif 70 55
+1 -63
src/private-frameworks/ShazamKitUI/src/ShazamKitUI.m
··· 22 22 #include <stdlib.h> 23 23 #include <stdio.h> 24 24 25 + static int verbose = 0; 25 26 __attribute__((constructor)) 26 27 static void initme(void) { 27 28 verbose = getenv("STUB_VERBOSE") != NULL; 28 29 } 29 30 30 31 31 - extern const void* ShazamKitUIVersionString = (void*)0; 32 - extern const void* ShazamKitUIVersionNumber = (void*)0; 33 - extern const void* __swift_reflection_version = (void*)0; 34 - 35 - void *__swift_memcpy16_8(void) { 36 - if (verbose) puts("STUB: __swift_memcpy16_8 called"); 37 - return NULL; 38 - ) 39 - 40 - void *__swift_noop_void_return(void) { 41 - if (verbose) puts("STUB: __swift_noop_void_return called"); 42 - return NULL; 43 - ) 44 - 45 - void *__swift_instantiateConcreteTypeFromMangledNameAbstract(void) { 46 - if (verbose) puts("STUB: __swift_instantiateConcreteTypeFromMangledNameAbstract called"); 47 - return NULL; 48 - ) 49 - 50 - void *__swift_instantiateConcreteTypeFromMangledName(void) { 51 - if (verbose) puts("STUB: __swift_instantiateConcreteTypeFromMangledName called"); 52 - return NULL; 53 - ) 54 - 55 - void *__swift_memcpy17_8(void) { 56 - if (verbose) puts("STUB: __swift_memcpy17_8 called"); 57 - return NULL; 58 - ) 59 - 60 - void *__swift_memcpy40_8(void) { 61 - if (verbose) puts("STUB: __swift_memcpy40_8 called"); 62 - return NULL; 63 - ) 64 - 65 - void *__swift_memcpy24_8(void) { 66 - if (verbose) puts("STUB: __swift_memcpy24_8 called"); 67 - return NULL; 68 - ) 69 - 70 - void *__chkstk_darwin(void) { 71 - if (verbose) puts("STUB: __chkstk_darwin called"); 72 - return NULL; 73 - ) 74 - 75 - void *__chkstk_darwin_llvm_probe(void) { 76 - if (verbose) puts("STUB: __chkstk_darwin_llvm_probe called"); 77 - return NULL; 78 - ) 79 - 80 - void *__swift_project_boxed_opaque_existential_1(void) { 81 - if (verbose) puts("STUB: __swift_project_boxed_opaque_existential_1 called"); 82 - return NULL; 83 - ) 84 - 85 - void *__swift_destroy_boxed_opaque_existential_1(void) { 86 - if (verbose) puts("STUB: __swift_destroy_boxed_opaque_existential_1 called"); 87 - return NULL; 88 - ) 89 - 90 - void *__swift_memcpy74_8(void) { 91 - if (verbose) puts("STUB: __swift_memcpy74_8 called"); 92 - return NULL; 93 - ) 94 32