this repo has no description
1
fork

Configure Feed

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

added shazamkit frameworks

authored by

Vincenzo and committed by
Ariel Abreu
6196db04 c9522cc1

+13903
+2
src/frameworks/CMakeLists.txt
··· 65 65 add_subdirectory(ServiceManagement) 66 66 add_subdirectory(Quartz) 67 67 add_subdirectory(QuickLook) 68 + add_subdirectory(UniformTypeIdentifiers) 68 69 add_subdirectory(UserNotifications) 69 70 add_subdirectory(VideoToolbox) 70 71 endif() ··· 120 121 add_subdirectory(OSAKit) 121 122 add_subdirectory(QTKit) 122 123 add_subdirectory(ScreenSaver) 124 + add_subdirectory(ShazamKit) 123 125 add_subdirectory(SpriteKit) 124 126 add_subdirectory(StoreKit) 125 127 add_subdirectory(SyncServices)
+92
src/frameworks/ShazamKit/CMakeLists.txt
··· 1 + project(ShazamKit) 2 + 3 + remove_sdk_framework(ShazamKit) 4 + 5 + set(DYLIB_COMPAT_VERSION "1.0.0") 6 + set(DYLIB_CURRENT_VERSION "1.0.0") 7 + 8 + set(FRAMEWORK_VERSION "A") 9 + 10 + generate_sdk_framework(ShazamKit 11 + VERSION ${FRAMEWORK_VERSION} 12 + HEADER "include/ShazamKit" 13 + ) 14 + 15 + 16 + add_framework(ShazamKit 17 + FAT 18 + CURRENT_VERSION 19 + VERSION ${FRAMEWORK_VERSION} 20 + 21 + SOURCES 22 + src/SHCustomCatalog.m 23 + src/SHSessionDriverSignatureSlot.m 24 + src/SHStreamingSessionDriver.m 25 + src/SHMatch.m 26 + src/SHShazamKey.m 27 + src/SHCustomCatalogMemoryStorage.m 28 + src/SHMediaLibraryTrackBuilder.m 29 + src/SHMediaLibrary.m 30 + src/SHMediaLibraryTrack.m 31 + src/SigCrop.m 32 + src/SHCustomCatalogMatcher.m 33 + src/SHReferenceSignature.m 34 + src/SHMutableSignature.m 35 + src/MRE.m 36 + src/SHEventSignaller.m 37 + src/SHAudioUtilities.m 38 + src/SHMediaItem.m 39 + src/SHMediaLibraryContext.m 40 + src/SHShazamKitUIServiceInterfaces.m 41 + src/SHCatalog.m 42 + src/SHSyncedLyrics.m 43 + src/SHAttribution.m 44 + src/SHSignatureDataRepresentationValidator.m 45 + src/SHLyricLine.m 46 + src/SHMediaLibraryTrackUpdate.m 47 + src/SHShazamKitServiceConnection.m 48 + src/SigX.m 49 + src/SHMatchedMediaItem.m 50 + src/SHMediaItemPropertyUtilities.m 51 + src/SHSignatureBuffer.m 52 + src/SHError.m 53 + src/SHMediaTimelineCustomCatalogMatcher.m 54 + src/SHShazamKitServiceInterfaces.m 55 + src/SigSonify.m 56 + src/SHMediaLibraryItemMetadata.m 57 + src/SHMediaItemSerialization.m 58 + src/SHMediaLibraryGroup.m 59 + src/SHCustomCatalogContainer.m 60 + src/SHSignature.m 61 + src/SHManagedSession.m 62 + src/SHJSONLCustomCatalogTransformer.m 63 + src/SHMediaTimeline.m 64 + src/SHTrackMO.m 65 + src/SHMediaLibraryLabel.m 66 + src/SHRotatingInstallationID.m 67 + src/SHManagedShazamCatalog.m 68 + src/SHSignatureGenerator.m 69 + src/SHSignatureMetrics.m 70 + src/SHMediaLibrarySnapshot.m 71 + src/SHSession.m 72 + src/SHRange.m 73 + src/SHGroupMO.m 74 + src/SHShazamKitServiceConnectionProvider.m 75 + src/MRESignature.m 76 + src/SHMetadataMO.m 77 + src/SHMatcherResponse.m 78 + src/SHMediaLibraryInfo.m 79 + src/SHShazamCatalog.m 80 + src/MREResult.m 81 + src/SHMediaLibraryChange.m 82 + src/SHMatcherRequest.m 83 + src/SHMediaLibraryQueryParameters.m 84 + src/UTType+SHShazamAdditions.m 85 + src/NSError+SHError.m 86 + src/ShazamKit.m 87 + 88 + DEPENDENCIES 89 + system 90 + objc 91 + Foundation 92 + )
+24
src/frameworks/ShazamKit/include/ShazamKit/MRE.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 MRE : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/MREResult.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 MREResult : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/MRESignature.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 MRESignature : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/NSError+SHError.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 NSError (SHError) 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHAttribution.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 SHAttribution : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHAudioUtilities.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 SHAudioUtilities : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCatalog.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 SHCatalog : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCustomCatalog.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 SHCustomCatalog : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCustomCatalogContainer.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 SHCustomCatalogContainer : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCustomCatalogMatcher.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 SHCustomCatalogMatcher : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCustomCatalogMemoryStorage.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 SHCustomCatalogMemoryStorage : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHCustomCatalogStorage.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 SHCustomCatalogStorage 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHError.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 SHError : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHEventSignaller.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 SHEventSignaller : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHEventSignalling.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 SHEventSignalling 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHGroupMO.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 SHGroupMO : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHJSONLCustomCatalogTransformer.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 SHJSONLCustomCatalogTransformer : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHJSONLCustomCatalogTransformerDelegate.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 SHJSONLCustomCatalogTransformerDelegate 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHJSONLDataDetokenizerDelegate.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 SHJSONLDataDetokenizerDelegate 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHLyricLine.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 SHLyricLine : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHManagedSession.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 SHManagedSession : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHManagedShazamCatalog.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 SHManagedShazamCatalog : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMatch.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 SHMatch : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMatchedMediaItem.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 SHMatchedMediaItem : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMatcher.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 SHMatcher 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMatcherDelegate.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 SHMatcherDelegate 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMatcherRequest.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 SHMatcherRequest : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMatcherResponse.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 SHMatcherResponse : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaItem.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 SHMediaItem : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaItemPresentation.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 SHMediaItemPresentation 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaItemPropertyUtilities.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 SHMediaItemPropertyUtilities : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaItemProvider.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 SHMediaItemProvider 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaItemSerialization.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 SHMediaItemSerialization : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibrary.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 SHMediaLibrary 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryChange.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 SHMediaLibraryChange : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryContext.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 SHMediaLibraryContext : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryGroup.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 SHMediaLibraryGroup : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryInfo.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 SHMediaLibraryInfo : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryItem.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 SHMediaLibraryItem 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryItemMetadata.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 SHMediaLibraryItemMetadata : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryLabel.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 SHMediaLibraryLabel : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryQuery.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 SHMediaLibraryQuery 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryQueryParameters.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 SHMediaLibraryQueryParameters : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibrarySnapshot.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 SHMediaLibrarySnapshot : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibrarySync.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 SHMediaLibrarySync 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibrarySyncDelegate.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 SHMediaLibrarySyncDelegate 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryTrack.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 SHMediaLibraryTrack : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryTrackBuilder.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 SHMediaLibraryTrackBuilder : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaLibraryTrackUpdate.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 SHMediaLibraryTrackUpdate : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaTimeline.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 SHMediaTimeline : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaTimelineCustomCatalogMatcher.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 SHMediaTimelineCustomCatalogMatcher : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMediaTimelineDelegate.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 SHMediaTimelineDelegate 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMetadataMO.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 SHMetadataMO : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHMutableSignature.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 SHMutableSignature : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHRange.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 SHRange : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHReferenceSignature.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 SHReferenceSignature : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHRotatingInstallationID.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 SHRotatingInstallationID : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSession.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 SHSession : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSessionDriver.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 SHSessionDriver 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSessionDriverDelegate.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 SHSessionDriverDelegate 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSessionDriverSignatureSlot.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 SHSessionDriverSignatureSlot : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamCatalog.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 SHShazamCatalog : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKey.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 SHShazamKey : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKitClient.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 SHShazamKitClient 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKitService.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 SHShazamKitService 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKitServiceConnection.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 SHShazamKitServiceConnection : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKitServiceConnectionProvider.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 SHShazamKitServiceConnectionProvider 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKitServiceInterfaces.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 SHShazamKitServiceInterfaces : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKitUIService.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 SHShazamKitUIService 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHShazamKitUIServiceInterfaces.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 SHShazamKitUIServiceInterfaces : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSignature.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 SHSignature : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSignatureBuffer.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 SHSignatureBuffer : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSignatureDataRepresentationValidator.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 SHSignatureDataRepresentationValidator : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSignatureGenerator.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 SHSignatureGenerator : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSignatureMetrics.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 SHSignatureMetrics : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHStreamingSessionDriver.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 SHStreamingSessionDriver : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHSyncedLyrics.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 SHSyncedLyrics : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SHTrackMO.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 SHTrackMO : NSObject 23 + 24 + @end
+697
src/frameworks/ShazamKit/include/ShazamKit/ShazamKit.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 + #ifndef _SHAZAMKIT_H_ 21 + #define _SHAZAMKIT_H_ 22 + 23 + #import <Foundation/Foundation.h> 24 + 25 + #import <ShazamKit/MRE.h> 26 + #import <ShazamKit/MREResult.h> 27 + #import <ShazamKit/MRESignature.h> 28 + #import <ShazamKit/NSError+SHError.h> 29 + #import <ShazamKit/SHAttribution.h> 30 + #import <ShazamKit/SHAudioUtilities.h> 31 + #import <ShazamKit/SHCatalog.h> 32 + #import <ShazamKit/SHCustomCatalog.h> 33 + #import <ShazamKit/SHCustomCatalogContainer.h> 34 + #import <ShazamKit/SHCustomCatalogMatcher.h> 35 + #import <ShazamKit/SHCustomCatalogMemoryStorage.h> 36 + #import <ShazamKit/SHCustomCatalogStorage.h> 37 + #import <ShazamKit/SHError.h> 38 + #import <ShazamKit/SHEventSignaller.h> 39 + #import <ShazamKit/SHEventSignalling.h> 40 + #import <ShazamKit/SHGroupMO.h> 41 + #import <ShazamKit/SHJSONLCustomCatalogTransformer.h> 42 + #import <ShazamKit/SHJSONLCustomCatalogTransformerDelegate.h> 43 + #import <ShazamKit/SHJSONLDataDetokenizerDelegate.h> 44 + #import <ShazamKit/SHLyricLine.h> 45 + #import <ShazamKit/SHManagedSession.h> 46 + #import <ShazamKit/SHManagedShazamCatalog.h> 47 + #import <ShazamKit/SHMatch.h> 48 + #import <ShazamKit/SHMatchedMediaItem.h> 49 + #import <ShazamKit/SHMatcher.h> 50 + #import <ShazamKit/SHMatcherDelegate.h> 51 + #import <ShazamKit/SHMatcherRequest.h> 52 + #import <ShazamKit/SHMatcherResponse.h> 53 + #import <ShazamKit/SHMediaItem.h> 54 + #import <ShazamKit/SHMediaItemPresentation.h> 55 + #import <ShazamKit/SHMediaItemPropertyUtilities.h> 56 + #import <ShazamKit/SHMediaItemProvider.h> 57 + #import <ShazamKit/SHMediaItemSerialization.h> 58 + #import <ShazamKit/SHMediaLibrary.h> 59 + #import <ShazamKit/SHMediaLibrary.h> 60 + #import <ShazamKit/SHMediaLibraryChange.h> 61 + #import <ShazamKit/SHMediaLibraryContext.h> 62 + #import <ShazamKit/SHMediaLibraryGroup.h> 63 + #import <ShazamKit/SHMediaLibraryInfo.h> 64 + #import <ShazamKit/SHMediaLibraryItem.h> 65 + #import <ShazamKit/SHMediaLibraryItemMetadata.h> 66 + #import <ShazamKit/SHMediaLibraryLabel.h> 67 + #import <ShazamKit/SHMediaLibraryQuery.h> 68 + #import <ShazamKit/SHMediaLibraryQueryParameters.h> 69 + #import <ShazamKit/SHMediaLibrarySnapshot.h> 70 + #import <ShazamKit/SHMediaLibrarySync.h> 71 + #import <ShazamKit/SHMediaLibrarySyncDelegate.h> 72 + #import <ShazamKit/SHMediaLibraryTrack.h> 73 + #import <ShazamKit/SHMediaLibraryTrackBuilder.h> 74 + #import <ShazamKit/SHMediaLibraryTrackUpdate.h> 75 + #import <ShazamKit/SHMediaTimeline.h> 76 + #import <ShazamKit/SHMediaTimelineCustomCatalogMatcher.h> 77 + #import <ShazamKit/SHMediaTimelineDelegate.h> 78 + #import <ShazamKit/SHMetadataMO.h> 79 + #import <ShazamKit/SHMutableSignature.h> 80 + #import <ShazamKit/SHRange.h> 81 + #import <ShazamKit/SHReferenceSignature.h> 82 + #import <ShazamKit/SHRotatingInstallationID.h> 83 + #import <ShazamKit/SHSession.h> 84 + #import <ShazamKit/SHSessionDriver.h> 85 + #import <ShazamKit/SHSessionDriverDelegate.h> 86 + #import <ShazamKit/SHSessionDriverSignatureSlot.h> 87 + #import <ShazamKit/SHShazamCatalog.h> 88 + #import <ShazamKit/SHShazamKey.h> 89 + #import <ShazamKit/SHShazamKitClient.h> 90 + #import <ShazamKit/SHShazamKitService.h> 91 + #import <ShazamKit/SHShazamKitServiceConnection.h> 92 + #import <ShazamKit/SHShazamKitServiceConnectionProvider.h> 93 + #import <ShazamKit/SHShazamKitServiceConnectionProvider.h> 94 + #import <ShazamKit/SHShazamKitServiceInterfaces.h> 95 + #import <ShazamKit/SHShazamKitUIService.h> 96 + #import <ShazamKit/SHShazamKitUIServiceInterfaces.h> 97 + #import <ShazamKit/SHSignature.h> 98 + #import <ShazamKit/SHSignatureBuffer.h> 99 + #import <ShazamKit/SHSignatureDataRepresentationValidator.h> 100 + #import <ShazamKit/SHSignatureGenerator.h> 101 + #import <ShazamKit/SHSignatureMetrics.h> 102 + #import <ShazamKit/SHStreamingSessionDriver.h> 103 + #import <ShazamKit/SHSyncedLyrics.h> 104 + #import <ShazamKit/SHTrackMO.h> 105 + #import <ShazamKit/SigCrop.h> 106 + #import <ShazamKit/SigSonify.h> 107 + #import <ShazamKit/SigX.h> 108 + #import <ShazamKit/UTType+SHShazamAdditions.h> 109 + 110 + 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); 651 + 652 + 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; 695 + 696 + #endif 697 +
+24
src/frameworks/ShazamKit/include/ShazamKit/SigCrop.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 SigCrop : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SigSonify.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 SigSonify : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/SigX.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 SigX : NSObject 23 + 24 + @end
+24
src/frameworks/ShazamKit/include/ShazamKit/UTType+SHShazamAdditions.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 UTType (SHShazamAdditions) 23 + 24 + @end
+34
src/frameworks/ShazamKit/src/MRE.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/MRE.h> 21 + 22 + @implementation MRE 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/MREResult.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/MREResult.h> 21 + 22 + @implementation MREResult 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/MRESignature.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/MRESignature.h> 21 + 22 + @implementation MRESignature 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
+24
src/frameworks/ShazamKit/src/NSError+SHError.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/NSError+SHError.h> 21 + 22 + @implementation NSError (SHError) 23 + 24 + @end
+34
src/frameworks/ShazamKit/src/SHAttribution.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/SHAttribution.h> 21 + 22 + @implementation SHAttribution 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/SHAudioUtilities.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/SHAudioUtilities.h> 21 + 22 + @implementation SHAudioUtilities 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/SHCatalog.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/SHCatalog.h> 21 + 22 + @implementation SHCatalog 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/SHCustomCatalog.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/SHCustomCatalog.h> 21 + 22 + @implementation SHCustomCatalog 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/SHCustomCatalogContainer.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/SHCustomCatalogContainer.h> 21 + 22 + @implementation SHCustomCatalogContainer 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/SHCustomCatalogMatcher.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/SHCustomCatalogMatcher.h> 21 + 22 + @implementation SHCustomCatalogMatcher 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/SHCustomCatalogMemoryStorage.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/SHCustomCatalogMemoryStorage.h> 21 + 22 + @implementation SHCustomCatalogMemoryStorage 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/SHError.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/SHError.h> 21 + 22 + @implementation SHError 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/SHEventSignaller.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/SHEventSignaller.h> 21 + 22 + @implementation SHEventSignaller 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/SHGroupMO.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/SHGroupMO.h> 21 + 22 + @implementation SHGroupMO 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/SHJSONLCustomCatalogTransformer.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/SHJSONLCustomCatalogTransformer.h> 21 + 22 + @implementation SHJSONLCustomCatalogTransformer 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/SHLyricLine.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/SHLyricLine.h> 21 + 22 + @implementation SHLyricLine 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/SHManagedSession.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/SHManagedSession.h> 21 + 22 + @implementation SHManagedSession 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/SHManagedShazamCatalog.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/SHManagedShazamCatalog.h> 21 + 22 + @implementation SHManagedShazamCatalog 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/SHMatch.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/SHMatch.h> 21 + 22 + @implementation SHMatch 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/SHMatchedMediaItem.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/SHMatchedMediaItem.h> 21 + 22 + @implementation SHMatchedMediaItem 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/SHMatcherRequest.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/SHMatcherRequest.h> 21 + 22 + @implementation SHMatcherRequest 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/SHMatcherResponse.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/SHMatcherResponse.h> 21 + 22 + @implementation SHMatcherResponse 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/SHMediaItem.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/SHMediaItem.h> 21 + 22 + @implementation SHMediaItem 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/SHMediaItemPropertyUtilities.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/SHMediaItemPropertyUtilities.h> 21 + 22 + @implementation SHMediaItemPropertyUtilities 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/SHMediaItemSerialization.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/SHMediaItemSerialization.h> 21 + 22 + @implementation SHMediaItemSerialization 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
+19
src/frameworks/ShazamKit/src/SHMediaLibrary.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 +
+34
src/frameworks/ShazamKit/src/SHMediaLibraryChange.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/SHMediaLibraryChange.h> 21 + 22 + @implementation SHMediaLibraryChange 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/SHMediaLibraryContext.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/SHMediaLibraryContext.h> 21 + 22 + @implementation SHMediaLibraryContext 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/SHMediaLibraryGroup.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/SHMediaLibraryGroup.h> 21 + 22 + @implementation SHMediaLibraryGroup 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/SHMediaLibraryInfo.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/SHMediaLibraryInfo.h> 21 + 22 + @implementation SHMediaLibraryInfo 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/SHMediaLibraryItemMetadata.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/SHMediaLibraryItemMetadata.h> 21 + 22 + @implementation SHMediaLibraryItemMetadata 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/SHMediaLibraryLabel.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/SHMediaLibraryLabel.h> 21 + 22 + @implementation SHMediaLibraryLabel 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/SHMediaLibraryQueryParameters.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/SHMediaLibraryQueryParameters.h> 21 + 22 + @implementation SHMediaLibraryQueryParameters 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/SHMediaLibrarySnapshot.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/SHMediaLibrarySnapshot.h> 21 + 22 + @implementation SHMediaLibrarySnapshot 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/SHMediaLibraryTrack.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/SHMediaLibraryTrack.h> 21 + 22 + @implementation SHMediaLibraryTrack 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/SHMediaLibraryTrackBuilder.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/SHMediaLibraryTrackBuilder.h> 21 + 22 + @implementation SHMediaLibraryTrackBuilder 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/SHMediaLibraryTrackUpdate.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/SHMediaLibraryTrackUpdate.h> 21 + 22 + @implementation SHMediaLibraryTrackUpdate 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/SHMediaTimeline.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/SHMediaTimeline.h> 21 + 22 + @implementation SHMediaTimeline 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/SHMediaTimelineCustomCatalogMatcher.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/SHMediaTimelineCustomCatalogMatcher.h> 21 + 22 + @implementation SHMediaTimelineCustomCatalogMatcher 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/SHMetadataMO.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/SHMetadataMO.h> 21 + 22 + @implementation SHMetadataMO 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/SHMutableSignature.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/SHMutableSignature.h> 21 + 22 + @implementation SHMutableSignature 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/SHRange.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/SHRange.h> 21 + 22 + @implementation SHRange 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/SHReferenceSignature.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/SHReferenceSignature.h> 21 + 22 + @implementation SHReferenceSignature 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/SHRotatingInstallationID.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/SHRotatingInstallationID.h> 21 + 22 + @implementation SHRotatingInstallationID 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/SHSession.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/SHSession.h> 21 + 22 + @implementation SHSession 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/SHSessionDriverSignatureSlot.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/SHSessionDriverSignatureSlot.h> 21 + 22 + @implementation SHSessionDriverSignatureSlot 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/SHShazamCatalog.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/SHShazamCatalog.h> 21 + 22 + @implementation SHShazamCatalog 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/SHShazamKey.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/SHShazamKey.h> 21 + 22 + @implementation SHShazamKey 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/SHShazamKitServiceConnection.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/SHShazamKitServiceConnection.h> 21 + 22 + @implementation SHShazamKitServiceConnection 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
+19
src/frameworks/ShazamKit/src/SHShazamKitServiceConnectionProvider.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 +
+34
src/frameworks/ShazamKit/src/SHShazamKitServiceInterfaces.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/SHShazamKitServiceInterfaces.h> 21 + 22 + @implementation SHShazamKitServiceInterfaces 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/SHShazamKitUIServiceInterfaces.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/SHShazamKitUIServiceInterfaces.h> 21 + 22 + @implementation SHShazamKitUIServiceInterfaces 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/SHSignature.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/SHSignature.h> 21 + 22 + @implementation SHSignature 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/SHSignatureBuffer.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/SHSignatureBuffer.h> 21 + 22 + @implementation SHSignatureBuffer 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/SHSignatureDataRepresentationValidator.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/SHSignatureDataRepresentationValidator.h> 21 + 22 + @implementation SHSignatureDataRepresentationValidator 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/SHSignatureGenerator.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/SHSignatureGenerator.h> 21 + 22 + @implementation SHSignatureGenerator 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/SHSignatureMetrics.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/SHSignatureMetrics.h> 21 + 22 + @implementation SHSignatureMetrics 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/SHStreamingSessionDriver.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/SHStreamingSessionDriver.h> 21 + 22 + @implementation SHStreamingSessionDriver 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/SHSyncedLyrics.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/SHSyncedLyrics.h> 21 + 22 + @implementation SHSyncedLyrics 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/SHTrackMO.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/SHTrackMO.h> 21 + 22 + @implementation SHTrackMO 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
+2773
src/frameworks/ShazamKit/src/ShazamKit.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 + 21 + #include <ShazamKit/ShazamKit.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + __attribute__((constructor)) 26 + static void initme(void) { 27 + verbose = getenv("STUB_VERBOSE") != NULL; 28 + } 29 + 30 + 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 + ) 568 + 569 + void *_ZN3gsl4spanIN6shazam11regresspairELln1EEC1INSt3__16vectorIS2_NS5_9allocatorIS2_EEEEvEERT_(void) { 570 + if (verbose) puts("STUB: _ZN3gsl4spanIN6shazam11regresspairELln1EEC1INSt3__16vectorIS2_NS5_9allocatorIS2_EEEEvEERT_ called"); 571 + return NULL; 572 + ) 573 + 574 + void *_ZN3gsl4spanIN6shazam11regresspairELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS2_T_(void) { 575 + if (verbose) puts("STUB: _ZN3gsl4spanIN6shazam11regresspairELln1EE12storage_typeINS_7details11extent_typeILln1EEEEC2IlEEPS2_T_ called"); 576 + return NULL; 577 + ) 578 + 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"); 581 + return NULL; 582 + ) 583 + 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"); 586 + 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 + ) 2773 +
+34
src/frameworks/ShazamKit/src/SigCrop.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/SigCrop.h> 21 + 22 + @implementation SigCrop 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/SigSonify.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/SigSonify.h> 21 + 22 + @implementation SigSonify 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/SigX.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/SigX.h> 21 + 22 + @implementation SigX 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
+25
src/frameworks/ShazamKit/src/UTType+SHShazamAdditions.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/UTType+SHShazamAdditions.h> 21 + #import <UniformTypeIdentifiers/UniformTypeIdentifiers.h> 22 + 23 + @implementation UTType (SHShazamAdditions) 24 + 25 + @end
+37
src/frameworks/UniformTypeIdentifiers/CMakeLists.txt
··· 1 + project(UniformTypeIdentifiers) 2 + 3 + remove_sdk_framework(UniformTypeIdentifiers) 4 + 5 + set(DYLIB_COMPAT_VERSION "1.0.0") 6 + set(DYLIB_CURRENT_VERSION "709.0.0") 7 + 8 + set(FRAMEWORK_VERSION "A") 9 + 10 + generate_sdk_framework(UniformTypeIdentifiers 11 + VERSION ${FRAMEWORK_VERSION} 12 + HEADER "include/UniformTypeIdentifiers" 13 + ) 14 + 15 + 16 + add_framework(UniformTypeIdentifiers 17 + FAT 18 + CURRENT_VERSION 19 + VERSION ${FRAMEWORK_VERSION} 20 + 21 + SOURCES 22 + src/UTType.m 23 + src/_UTConstantType.m 24 + src/_UTCoreType.m 25 + src/_UTRuntimeConstantType.m 26 + src/_UTTaggedType.m 27 + src/NSURL+UTAdditions.m 28 + src/NSItemProvider+UTType.m 29 + src/_UTCoreType+UTRefCounting.m 30 + src/NSString+UTAdditions.m 31 + src/UniformTypeIdentifiers.m 32 + 33 + DEPENDENCIES 34 + system 35 + objc 36 + Foundation 37 + )
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/NSItemProvider+UTType.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 NSItemProvider (UTType) 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/NSString+UTAdditions.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 NSString (UTAdditions) 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/NSURL+UTAdditions.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 NSURL (UTAdditions) 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/UTType.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 UTType : NSObject 23 + 24 + @end
+75
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/UniformTypeIdentifiers.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 + #ifndef _UNIFORMTYPEIDENTIFIERS_H_ 21 + #define _UNIFORMTYPEIDENTIFIERS_H_ 22 + 23 + #import <Foundation/Foundation.h> 24 + 25 + #import <UniformTypeIdentifiers/NSItemProvider+UTType.h> 26 + #import <UniformTypeIdentifiers/NSString+UTAdditions.h> 27 + #import <UniformTypeIdentifiers/NSURL+UTAdditions.h> 28 + #import <UniformTypeIdentifiers/UTType.h> 29 + #import <UniformTypeIdentifiers/_UTConstantType.h> 30 + #import <UniformTypeIdentifiers/_UTCoreType+UTRefCounting.h> 31 + #import <UniformTypeIdentifiers/_UTCoreType.h> 32 + #import <UniformTypeIdentifiers/_UTRuntimeConstantType.h> 33 + #import <UniformTypeIdentifiers/_UTTaggedType.h> 34 + 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); 69 + 70 + 71 + extern extern const void* UniformTypeIdentifiersVersionString; 72 + extern extern const void* UniformTypeIdentifiersVersionNumber; 73 + 74 + #endif 75 +
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/_UTConstantType.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 _UTConstantType : NSObject 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/_UTCoreType+UTRefCounting.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 _UTCoreType (UTRefCounting) 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/_UTCoreType.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 _UTCoreType : NSObject 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/_UTRuntimeConstantType.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 _UTRuntimeConstantType : NSObject 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/include/UniformTypeIdentifiers/_UTTaggedType.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 _UTTaggedType : NSObject 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/src/NSItemProvider+UTType.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 <UniformTypeIdentifiers/NSItemProvider+UTType.h> 21 + 22 + @implementation NSItemProvider (UTType) 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/src/NSString+UTAdditions.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 <UniformTypeIdentifiers/NSString+UTAdditions.h> 21 + 22 + @implementation NSString (UTAdditions) 23 + 24 + @end
+24
src/frameworks/UniformTypeIdentifiers/src/NSURL+UTAdditions.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 <UniformTypeIdentifiers/NSURL+UTAdditions.h> 21 + 22 + @implementation NSURL (UTAdditions) 23 + 24 + @end
+34
src/frameworks/UniformTypeIdentifiers/src/UTType.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 <UniformTypeIdentifiers/UTType.h> 21 + 22 + @implementation UTType 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
+198
src/frameworks/UniformTypeIdentifiers/src/UniformTypeIdentifiers.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 + 21 + #include <UniformTypeIdentifiers/UniformTypeIdentifiers.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + __attribute__((constructor)) 26 + static void initme(void) { 27 + verbose = getenv("STUB_VERBOSE") != NULL; 28 + } 29 + 30 + 31 + extern const void* UniformTypeIdentifiersVersionString = (void*)0; 32 + extern const void* UniformTypeIdentifiersVersionNumber = (void*)0; 33 + 34 + void *_ZN22UniformTypeIdentifiers9ModelCodeL26getDeviceTypeWithModelCodeEP8NSStringRKNSt3__18optionalI15UTHardwareColorEENS0_7OptionsE(void) { 35 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL26getDeviceTypeWithModelCodeEP8NSStringRKNSt3__18optionalI15UTHardwareColorEENS0_7OptionsE called"); 36 + return NULL; 37 + ) 38 + 39 + void *_ZN22UniformTypeIdentifiers9ModelCodeL71getDeviceTypeWithModelCodeAndHardwareColorWithoutResolvingCurrentDeviceEP8NSStringRKNSt3__18optionalI15UTHardwareColorEE(void) { 40 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL71getDeviceTypeWithModelCodeAndHardwareColorWithoutResolvingCurrentDeviceEP8NSStringRKNSt3__18optionalI15UTHardwareColorEE called"); 41 + return NULL; 42 + ) 43 + 44 + void *_ZN22UniformTypeIdentifiers9ModelCodeL26getCurrentDeviceModelCodesEv(void) { 45 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL26getCurrentDeviceModelCodesEv called"); 46 + return NULL; 47 + ) 48 + 49 + void *_ZN22UniformTypeIdentifiers9ModelCodeL32getHardwareColorForCurrentDeviceEv(void) { 50 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL32getHardwareColorForCurrentDeviceEv called"); 51 + return NULL; 52 + ) 53 + 54 + void *_ZN22UniformTypeIdentifiers9ModelCodeL22getHardwareColorSuffixERK15UTHardwareColor(void) { 55 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL22getHardwareColorSuffixERK15UTHardwareColor called"); 56 + return NULL; 57 + ) 58 + 59 + void *_ZNSt3__127__throw_bad_optional_accessEv(void) { 60 + if (verbose) puts("STUB: _ZNSt3__127__throw_bad_optional_accessEv called"); 61 + return NULL; 62 + ) 63 + 64 + void *_ZN22UniformTypeIdentifiers9ModelCodeL3logEv(void) { 65 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9ModelCodeL3logEv called"); 66 + return NULL; 67 + ) 68 + 69 + void *_ZN22UniformTypeIdentifiers9AccessoryL3logEv(void) { 70 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers9AccessoryL3logEv called"); 71 + return NULL; 72 + ) 73 + 74 + void *_ZL23_UTTypeGetForIdentifierP8NSStringa(void) { 75 + if (verbose) puts("STUB: _ZL23_UTTypeGetForIdentifierP8NSStringa called"); 76 + return NULL; 77 + ) 78 + 79 + void *_ZN22UniformTypeIdentifiers4TypeL24detachTypeRecordsInTypesIU8__strongP12NSMutableSetIP6UTTypeEEEvT_(void) { 80 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers4TypeL24detachTypeRecordsInTypesIU8__strongP12NSMutableSetIP6UTTypeEEEvT_ called"); 81 + return NULL; 82 + ) 83 + 84 + void *_UTDetachTypeRecords(void) { 85 + if (verbose) puts("STUB: _UTDetachTypeRecords called"); 86 + return NULL; 87 + ) 88 + 89 + void *_ZN22UniformTypeIdentifiers4TypeL10isTagValidEP8NSStringS2_(void) { 90 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers4TypeL10isTagValidEP8NSStringS2_ called"); 91 + return NULL; 92 + ) 93 + 94 + void *_ZN22UniformTypeIdentifiers4TypeL15getExportedTypeEP8NSStringP6UTTypeP8NSBundle(void) { 95 + if (verbose) puts("STUB: _ZN22UniformTypeIdentifiers4TypeL15getExportedTypeEP8NSStringP6UTTypeP8NSBundle called"); 96 + return NULL; 97 + ) 98 + 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"); 166 + return NULL; 167 + ) 168 + 169 + void *_typeIdentifierFromUTType(void) { 170 + if (verbose) puts("STUB: _typeIdentifierFromUTType called"); 171 + 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 + ) 198 +
+34
src/frameworks/UniformTypeIdentifiers/src/_UTConstantType.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 <UniformTypeIdentifiers/_UTConstantType.h> 21 + 22 + @implementation _UTConstantType 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
+24
src/frameworks/UniformTypeIdentifiers/src/_UTCoreType+UTRefCounting.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 <UniformTypeIdentifiers/_UTCoreType+UTRefCounting.h> 21 + 22 + @implementation _UTCoreType (UTRefCounting) 23 + 24 + @end
+34
src/frameworks/UniformTypeIdentifiers/src/_UTCoreType.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 <UniformTypeIdentifiers/_UTCoreType.h> 21 + 22 + @implementation _UTCoreType 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/UniformTypeIdentifiers/src/_UTRuntimeConstantType.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 <UniformTypeIdentifiers/_UTRuntimeConstantType.h> 21 + 22 + @implementation _UTRuntimeConstantType 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/UniformTypeIdentifiers/src/_UTTaggedType.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 <UniformTypeIdentifiers/_UTTaggedType.h> 21 + 22 + @implementation _UTTaggedType 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
src/private-frameworks/CMakeLists.txt
··· 68 68 add_subdirectory(InternationalSupport) 69 69 add_subdirectory(PerformanceAnalysis) 70 70 add_subdirectory(ServerInformation) 71 + add_subdirectory(ShazamCore) 72 + add_subdirectory(ShazamEvents) 73 + add_subdirectory(ShazamInsights) 74 + add_subdirectory(ShazamKitUI) 71 75 add_subdirectory(Spotlight) 72 76 add_subdirectory(SpotlightDaemon) 73 77 add_subdirectory(SpotlightReceiver)
+56
src/private-frameworks/ShazamCore/CMakeLists.txt
··· 1 + project(ShazamCore) 2 + 3 + remove_sdk_framework(ShazamCore 4 + PRIVATE 5 + ) 6 + 7 + set(DYLIB_COMPAT_VERSION "0.0.0") 8 + set(DYLIB_CURRENT_VERSION "195.12.0") 9 + 10 + set(FRAMEWORK_VERSION "A") 11 + 12 + generate_sdk_framework(ShazamCore 13 + PRIVATE 14 + VERSION ${FRAMEWORK_VERSION} 15 + HEADER "include/ShazamCore" 16 + ) 17 + 18 + 19 + add_framework(ShazamCore 20 + PRIVATE 21 + FAT 22 + CURRENT_VERSION 23 + VERSION ${FRAMEWORK_VERSION} 24 + 25 + SOURCES 26 + src/SHJSONLDataDetokenizer.m 27 + src/SHCampaignTokens.m 28 + src/SHJSONLFileReader.m 29 + src/SHCompression.m 30 + src/SHDefaultConfigurationValues.m 31 + src/SHRemoteConfiguration.m 32 + src/SHDataStreamOutput.m 33 + src/SHJSONLFileWriter.m 34 + src/SHHost.m 35 + src/SHTokenizedURL.m 36 + src/SHLocalization.m 37 + src/SHEndpoints.m 38 + src/SHAnalytics.m 39 + src/SHService.m 40 + src/SHMusicSubscriptionStatus.m 41 + src/SHEntitlements.m 42 + src/SHFeatureFlags.m 43 + src/SHDataStreamInput.m 44 + src/SHCoreError.m 45 + src/SHDataCompression.m 46 + src/SHBagContract.m 47 + src/SHStorefront.m 48 + src/NSData+Compression.m 49 + src/NSError+SHCoreError.m 50 + src/ShazamCore.m 51 + 52 + DEPENDENCIES 53 + system 54 + objc 55 + Foundation 56 + )
+24
src/private-frameworks/ShazamCore/include/ShazamCore/NSData+Compression.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 NSData (Compression) 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/NSError+SHCoreError.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 NSError (SHCoreError) 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHAnalytics.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 SHAnalytics : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHBagContract.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 SHBagContract : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHCampaignTokens.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 SHCampaignTokens : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHCompression.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 SHCompression : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHCoreError.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 SHCoreError : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHDataCompression.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 SHDataCompression : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHDataStream.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 SHDataStream 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHDataStreamInput.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 SHDataStreamInput : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHDataStreamOutput.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 SHDataStreamOutput : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHDefaultConfigurationValues.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 SHDefaultConfigurationValues : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHEndpoints.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 SHEndpoints : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHEntitlements.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 SHEntitlements : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHFeatureFlags.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 SHFeatureFlags : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHHost.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 SHHost : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHJSONLDataDetokenizer.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 SHJSONLDataDetokenizer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHJSONLFileReader.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 SHJSONLFileReader : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHJSONLFileWriter.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 SHJSONLFileWriter : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHLocalization.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 SHLocalization : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHMusicSubscriptionStatus.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 SHMusicSubscriptionStatus : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHRemoteConfiguration.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 SHRemoteConfiguration : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHService.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 SHService 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHStorefront.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 SHStorefront : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/include/ShazamCore/SHTokenizedURL.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 SHTokenizedURL : NSObject 23 + 24 + @end
+57
src/private-frameworks/ShazamCore/include/ShazamCore/ShazamCore.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 + #ifndef _SHAZAMCORE_H_ 21 + #define _SHAZAMCORE_H_ 22 + 23 + #import <Foundation/Foundation.h> 24 + 25 + #import <ShazamCore/NSData+Compression.h> 26 + #import <ShazamCore/NSError+SHCoreError.h> 27 + #import <ShazamCore/SHAnalytics.h> 28 + #import <ShazamCore/SHBagContract.h> 29 + #import <ShazamCore/SHCampaignTokens.h> 30 + #import <ShazamCore/SHCompression.h> 31 + #import <ShazamCore/SHCoreError.h> 32 + #import <ShazamCore/SHDataCompression.h> 33 + #import <ShazamCore/SHDataStream.h> 34 + #import <ShazamCore/SHDataStreamInput.h> 35 + #import <ShazamCore/SHDataStreamOutput.h> 36 + #import <ShazamCore/SHDefaultConfigurationValues.h> 37 + #import <ShazamCore/SHEndpoints.h> 38 + #import <ShazamCore/SHEntitlements.h> 39 + #import <ShazamCore/SHFeatureFlags.h> 40 + #import <ShazamCore/SHHost.h> 41 + #import <ShazamCore/SHJSONLDataDetokenizer.h> 42 + #import <ShazamCore/SHJSONLFileReader.h> 43 + #import <ShazamCore/SHJSONLFileWriter.h> 44 + #import <ShazamCore/SHLocalization.h> 45 + #import <ShazamCore/SHMusicSubscriptionStatus.h> 46 + #import <ShazamCore/SHRemoteConfiguration.h> 47 + #import <ShazamCore/SHService.h> 48 + #import <ShazamCore/SHService.h> 49 + #import <ShazamCore/SHStorefront.h> 50 + #import <ShazamCore/SHTokenizedURL.h> 51 + 52 + 53 + extern extern const void* ShazamCoreVersionString; 54 + extern extern const void* ShazamCoreVersionNumber; 55 + 56 + #endif 57 +
+24
src/private-frameworks/ShazamCore/src/NSData+Compression.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/NSData+Compression.h> 21 + 22 + @implementation NSData (Compression) 23 + 24 + @end
+24
src/private-frameworks/ShazamCore/src/NSError+SHCoreError.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/NSError+SHCoreError.h> 21 + 22 + @implementation NSError (SHCoreError) 23 + 24 + @end
+34
src/private-frameworks/ShazamCore/src/SHAnalytics.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/SHAnalytics.h> 21 + 22 + @implementation SHAnalytics 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/ShazamCore/src/SHBagContract.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/SHBagContract.h> 21 + 22 + @implementation SHBagContract 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/ShazamCore/src/SHCampaignTokens.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/SHCampaignTokens.h> 21 + 22 + @implementation SHCampaignTokens 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/ShazamCore/src/SHCompression.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/SHCompression.h> 21 + 22 + @implementation SHCompression 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/ShazamCore/src/SHCoreError.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/SHCoreError.h> 21 + 22 + @implementation SHCoreError 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/ShazamCore/src/SHDataCompression.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/SHDataCompression.h> 21 + 22 + @implementation SHDataCompression 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/ShazamCore/src/SHDataStreamInput.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/SHDataStreamInput.h> 21 + 22 + @implementation SHDataStreamInput 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/ShazamCore/src/SHDataStreamOutput.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/SHDataStreamOutput.h> 21 + 22 + @implementation SHDataStreamOutput 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/ShazamCore/src/SHDefaultConfigurationValues.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/SHDefaultConfigurationValues.h> 21 + 22 + @implementation SHDefaultConfigurationValues 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/ShazamCore/src/SHEndpoints.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/SHEndpoints.h> 21 + 22 + @implementation SHEndpoints 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/ShazamCore/src/SHEntitlements.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/SHEntitlements.h> 21 + 22 + @implementation SHEntitlements 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/ShazamCore/src/SHFeatureFlags.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/SHFeatureFlags.h> 21 + 22 + @implementation SHFeatureFlags 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/ShazamCore/src/SHHost.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/SHHost.h> 21 + 22 + @implementation SHHost 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/ShazamCore/src/SHJSONLDataDetokenizer.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/SHJSONLDataDetokenizer.h> 21 + 22 + @implementation SHJSONLDataDetokenizer 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/ShazamCore/src/SHJSONLFileReader.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/SHJSONLFileReader.h> 21 + 22 + @implementation SHJSONLFileReader 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/ShazamCore/src/SHJSONLFileWriter.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/SHJSONLFileWriter.h> 21 + 22 + @implementation SHJSONLFileWriter 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/ShazamCore/src/SHLocalization.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/SHLocalization.h> 21 + 22 + @implementation SHLocalization 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/ShazamCore/src/SHMusicSubscriptionStatus.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/SHMusicSubscriptionStatus.h> 21 + 22 + @implementation SHMusicSubscriptionStatus 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/ShazamCore/src/SHRemoteConfiguration.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/SHRemoteConfiguration.h> 21 + 22 + @implementation SHRemoteConfiguration 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
+19
src/private-frameworks/ShazamCore/src/SHService.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 +
+34
src/private-frameworks/ShazamCore/src/SHStorefront.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/SHStorefront.h> 21 + 22 + @implementation SHStorefront 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/ShazamCore/src/SHTokenizedURL.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/SHTokenizedURL.h> 21 + 22 + @implementation SHTokenizedURL 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
+32
src/private-frameworks/ShazamCore/src/ShazamCore.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 + 21 + #include <ShazamCore/ShazamCore.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + __attribute__((constructor)) 26 + static void initme(void) { 27 + verbose = getenv("STUB_VERBOSE") != NULL; 28 + } 29 + 30 + 31 + extern const void* ShazamCoreVersionString = (void*)0; 32 + extern const void* ShazamCoreVersionNumber = (void*)0;
+35
src/private-frameworks/ShazamEvents/CMakeLists.txt
··· 1 + project(ShazamEvents) 2 + 3 + remove_sdk_framework(ShazamEvents 4 + PRIVATE 5 + ) 6 + 7 + set(DYLIB_COMPAT_VERSION "1.0.0") 8 + set(DYLIB_CURRENT_VERSION "1.0.0") 9 + 10 + set(FRAMEWORK_VERSION "A") 11 + 12 + generate_sdk_framework(ShazamEvents 13 + PRIVATE 14 + VERSION ${FRAMEWORK_VERSION} 15 + HEADER "include/ShazamEvents" 16 + ) 17 + 18 + 19 + add_framework(ShazamEvents 20 + PRIVATE 21 + FAT 22 + CURRENT_VERSION 23 + VERSION ${FRAMEWORK_VERSION} 24 + 25 + SOURCES 26 + src/_TtC12ShazamEvents21LiveMusicEventFetcher.m 27 + src/SHShazamEventsServiceInterfaces.m 28 + src/_TtC12ShazamEvents24LiveMusicEventConnection.m 29 + src/ShazamEvents.m 30 + 31 + DEPENDENCIES 32 + system 33 + objc 34 + Foundation 35 + )
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/SHShazamEventsServiceInterfaces.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 SHShazamEventsServiceInterfaces : NSObject 23 + 24 + @end
+75
src/private-frameworks/ShazamEvents/include/ShazamEvents/ShazamEvents.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 + #ifndef _SHAZAMEVENTS_H_ 21 + #define _SHAZAMEVENTS_H_ 22 + 23 + #import <Foundation/Foundation.h> 24 + 25 + #import <ShazamEvents/SHShazamEventsServiceInterfaces.h> 26 + #import <ShazamEvents/_TtC12ShazamEvents21LiveMusicEventFetcher.h> 27 + #import <ShazamEvents/_TtC12ShazamEvents24LiveMusicEventConnection.h> 28 + #import <ShazamEvents/_TtP12ShazamEvents18ShazamEventsClient_.h> 29 + #import <ShazamEvents/_TtP12ShazamEvents18ShazamEventsServer_.h> 30 + 31 + 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); 66 + 67 + 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 + 74 + #endif 75 +
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtC12ShazamEvents21LiveMusicEventFetcher.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 _TtC12ShazamEvents21LiveMusicEventFetcher : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtC12ShazamEvents24LiveMusicEventConnection.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 _TtC12ShazamEvents24LiveMusicEventConnection : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtP12ShazamEvents18ShazamEventsClient_.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 _TtP12ShazamEvents18ShazamEventsClient_ 23 + 24 + @end
+24
src/private-frameworks/ShazamEvents/include/ShazamEvents/_TtP12ShazamEvents18ShazamEventsServer_.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 _TtP12ShazamEvents18ShazamEventsServer_ 23 + 24 + @end
+34
src/private-frameworks/ShazamEvents/src/SHShazamEventsServiceInterfaces.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/SHShazamEventsServiceInterfaces.h> 21 + 22 + @implementation SHShazamEventsServiceInterfaces 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
+206
src/private-frameworks/ShazamEvents/src/ShazamEvents.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 + 21 + #include <ShazamEvents/ShazamEvents.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + __attribute__((constructor)) 26 + static void initme(void) { 27 + verbose = getenv("STUB_VERBOSE") != NULL; 28 + } 29 + 30 + 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 + 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"); 124 + return NULL; 125 + ) 126 + 127 + void *__swift_memcpy104_8(void) { 128 + if (verbose) puts("STUB: __swift_memcpy104_8 called"); 129 + 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 + ) 206 +
+34
src/private-frameworks/ShazamEvents/src/_TtC12ShazamEvents21LiveMusicEventFetcher.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/_TtC12ShazamEvents21LiveMusicEventFetcher.h> 21 + 22 + @implementation _TtC12ShazamEvents21LiveMusicEventFetcher 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/_TtC12ShazamEvents24LiveMusicEventConnection.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/_TtC12ShazamEvents24LiveMusicEventConnection.h> 21 + 22 + @implementation _TtC12ShazamEvents24LiveMusicEventConnection 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
+62
src/private-frameworks/ShazamInsights/CMakeLists.txt
··· 1 + project(ShazamInsights) 2 + 3 + remove_sdk_framework(ShazamInsights 4 + PRIVATE 5 + ) 6 + 7 + set(DYLIB_COMPAT_VERSION "0.0.0") 8 + set(DYLIB_CURRENT_VERSION "195.12.0") 9 + 10 + set(FRAMEWORK_VERSION "A") 11 + 12 + generate_sdk_framework(ShazamInsights 13 + PRIVATE 14 + VERSION ${FRAMEWORK_VERSION} 15 + HEADER "include/ShazamInsights" 16 + ) 17 + 18 + 19 + add_framework(ShazamInsights 20 + PRIVATE 21 + FAT 22 + CURRENT_VERSION 23 + VERSION ${FRAMEWORK_VERSION} 24 + 25 + SOURCES 26 + src/SHSQLiteUtils.m 27 + src/SHCDNDataFetcher.m 28 + src/SHInsightsNetworkRequester.m 29 + src/SHDataFetcherFileInfo.m 30 + src/SHLocalDataFetcher.m 31 + src/SHClusterController.m 32 + src/SHClusterQuery.m 33 + src/SHInsightsConfiguration.m 34 + src/SHClusterLoader.m 35 + src/SHStubbedNetworkRequester.m 36 + src/SHRegion.m 37 + src/SHInsightsError.m 38 + src/SHTimeAndPlaceController.m 39 + src/SHClusterJSONLReader.m 40 + src/SHClusterMetadataQuery.m 41 + src/SHMediaItemPropertyCollection.m 42 + src/SHTimeAndPlaceAffinityGroup.m 43 + src/SHAffinityGroup.m 44 + src/SHClusterImporterUtils.m 45 + src/SHTimeAndPlaceServerResponseParser.m 46 + src/SHAffinityGroupQuery.m 47 + src/SHJSONLClusterImporter.m 48 + src/SHClusterStatus.m 49 + src/SHSQLiteClusterImporter.m 50 + src/SHClusterSQLiteDataStore.m 51 + src/SHClusterStatementRunner.m 52 + src/SHFileChecksum.m 53 + src/SHClusterMetadata.m 54 + src/SHClusterLoaderRequest.m 55 + src/CLLocation+Geohash.m 56 + src/ShazamInsights.m 57 + 58 + DEPENDENCIES 59 + system 60 + objc 61 + Foundation 62 + )
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/CLLocation+Geohash.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 CLLocation (Geohash) 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHAffinityGroup.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 SHAffinityGroup : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHAffinityGroupQuery.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 SHAffinityGroupQuery : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHCDNDataFetcher.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 SHCDNDataFetcher : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterController.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 SHClusterController : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterImporter.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 SHClusterImporter 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterImporterUtils.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 SHClusterImporterUtils : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterJSONLReader.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 SHClusterJSONLReader : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterLoader.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 SHClusterLoader : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterLoaderRequest.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 SHClusterLoaderRequest : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterMetadata.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 SHClusterMetadata : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterMetadataQuery.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 SHClusterMetadataQuery : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterQuery.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 SHClusterQuery : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterSQLiteDataStore.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 SHClusterSQLiteDataStore : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterStatementRunner.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 SHClusterStatementRunner : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHClusterStatus.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 SHClusterStatus : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHDataFetcher.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 SHDataFetcher 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHDataFetcherFileInfo.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 SHDataFetcherFileInfo : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHFileChecksum.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 SHFileChecksum : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHInsightsConfiguration.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 SHInsightsConfiguration : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHInsightsError.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 SHInsightsError : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHInsightsNetworkRequester.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 SHInsightsNetworkRequester : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHJSONLClusterImporter.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 SHJSONLClusterImporter : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHJSONLDataDetokenizerDelegate.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 SHJSONLDataDetokenizerDelegate 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHLocalDataFetcher.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 SHLocalDataFetcher : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHMediaItemPropertyCollection.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 SHMediaItemPropertyCollection : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHNetworkRequester.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 SHNetworkRequester 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHRegion.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 SHRegion : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHSQLiteClusterImporter.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 SHSQLiteClusterImporter : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHSQLiteUtils.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 SHSQLiteUtils : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHStubbedNetworkRequester.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 SHStubbedNetworkRequester : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHTimeAndPlaceAffinityGroup.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 SHTimeAndPlaceAffinityGroup : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHTimeAndPlaceController.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 SHTimeAndPlaceController : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamInsights/include/ShazamInsights/SHTimeAndPlaceServerResponseParser.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 SHTimeAndPlaceServerResponseParser : NSObject 23 + 24 + @end
+70
src/private-frameworks/ShazamInsights/include/ShazamInsights/ShazamInsights.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 + #ifndef _SHAZAMINSIGHTS_H_ 21 + #define _SHAZAMINSIGHTS_H_ 22 + 23 + #import <Foundation/Foundation.h> 24 + 25 + #import <ShazamInsights/CLLocation+Geohash.h> 26 + #import <ShazamInsights/SHAffinityGroup.h> 27 + #import <ShazamInsights/SHAffinityGroupQuery.h> 28 + #import <ShazamInsights/SHCDNDataFetcher.h> 29 + #import <ShazamInsights/SHClusterController.h> 30 + #import <ShazamInsights/SHClusterImporter.h> 31 + #import <ShazamInsights/SHClusterImporterUtils.h> 32 + #import <ShazamInsights/SHClusterJSONLReader.h> 33 + #import <ShazamInsights/SHClusterLoader.h> 34 + #import <ShazamInsights/SHClusterLoaderRequest.h> 35 + #import <ShazamInsights/SHClusterMetadata.h> 36 + #import <ShazamInsights/SHClusterMetadataQuery.h> 37 + #import <ShazamInsights/SHClusterQuery.h> 38 + #import <ShazamInsights/SHClusterSQLiteDataStore.h> 39 + #import <ShazamInsights/SHClusterStatementRunner.h> 40 + #import <ShazamInsights/SHClusterStatus.h> 41 + #import <ShazamInsights/SHDataFetcher.h> 42 + #import <ShazamInsights/SHDataFetcherFileInfo.h> 43 + #import <ShazamInsights/SHFileChecksum.h> 44 + #import <ShazamInsights/SHInsightsConfiguration.h> 45 + #import <ShazamInsights/SHInsightsError.h> 46 + #import <ShazamInsights/SHInsightsNetworkRequester.h> 47 + #import <ShazamInsights/SHJSONLClusterImporter.h> 48 + #import <ShazamInsights/SHJSONLDataDetokenizerDelegate.h> 49 + #import <ShazamInsights/SHLocalDataFetcher.h> 50 + #import <ShazamInsights/SHMediaItemPropertyCollection.h> 51 + #import <ShazamInsights/SHNetworkRequester.h> 52 + #import <ShazamInsights/SHRegion.h> 53 + #import <ShazamInsights/SHSQLiteClusterImporter.h> 54 + #import <ShazamInsights/SHSQLiteUtils.h> 55 + #import <ShazamInsights/SHStubbedNetworkRequester.h> 56 + #import <ShazamInsights/SHTimeAndPlaceAffinityGroup.h> 57 + #import <ShazamInsights/SHTimeAndPlaceController.h> 58 + #import <ShazamInsights/SHTimeAndPlaceServerResponseParser.h> 59 + 60 + 61 + void *sh_columnToText(void); 62 + void *sh_databaseErrorToNSError(void); 63 + void *sh_CaseDiacriticInsensitiveCollation(void); 64 + 65 + 66 + extern extern const void* ShazamInsightsVersionString; 67 + extern extern const void* ShazamInsightsVersionNumber; 68 + 69 + #endif 70 +
+24
src/private-frameworks/ShazamInsights/src/CLLocation+Geohash.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 <ShazamInsights/CLLocation+Geohash.h> 21 + 22 + @implementation CLLocation (Geohash) 23 + 24 + @end
+34
src/private-frameworks/ShazamInsights/src/SHAffinityGroup.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 <ShazamInsights/SHAffinityGroup.h> 21 + 22 + @implementation SHAffinityGroup 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/ShazamInsights/src/SHAffinityGroupQuery.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 <ShazamInsights/SHAffinityGroupQuery.h> 21 + 22 + @implementation SHAffinityGroupQuery 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/ShazamInsights/src/SHCDNDataFetcher.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 <ShazamInsights/SHCDNDataFetcher.h> 21 + 22 + @implementation SHCDNDataFetcher 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/ShazamInsights/src/SHClusterController.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 <ShazamInsights/SHClusterController.h> 21 + 22 + @implementation SHClusterController 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/ShazamInsights/src/SHClusterImporterUtils.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 <ShazamInsights/SHClusterImporterUtils.h> 21 + 22 + @implementation SHClusterImporterUtils 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/ShazamInsights/src/SHClusterJSONLReader.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 <ShazamInsights/SHClusterJSONLReader.h> 21 + 22 + @implementation SHClusterJSONLReader 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/ShazamInsights/src/SHClusterLoader.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 <ShazamInsights/SHClusterLoader.h> 21 + 22 + @implementation SHClusterLoader 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/ShazamInsights/src/SHClusterLoaderRequest.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 <ShazamInsights/SHClusterLoaderRequest.h> 21 + 22 + @implementation SHClusterLoaderRequest 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/ShazamInsights/src/SHClusterMetadata.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 <ShazamInsights/SHClusterMetadata.h> 21 + 22 + @implementation SHClusterMetadata 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/ShazamInsights/src/SHClusterMetadataQuery.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 <ShazamInsights/SHClusterMetadataQuery.h> 21 + 22 + @implementation SHClusterMetadataQuery 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/ShazamInsights/src/SHClusterQuery.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 <ShazamInsights/SHClusterQuery.h> 21 + 22 + @implementation SHClusterQuery 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/ShazamInsights/src/SHClusterSQLiteDataStore.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 <ShazamInsights/SHClusterSQLiteDataStore.h> 21 + 22 + @implementation SHClusterSQLiteDataStore 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/ShazamInsights/src/SHClusterStatementRunner.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 <ShazamInsights/SHClusterStatementRunner.h> 21 + 22 + @implementation SHClusterStatementRunner 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/ShazamInsights/src/SHClusterStatus.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 <ShazamInsights/SHClusterStatus.h> 21 + 22 + @implementation SHClusterStatus 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/ShazamInsights/src/SHDataFetcherFileInfo.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 <ShazamInsights/SHDataFetcherFileInfo.h> 21 + 22 + @implementation SHDataFetcherFileInfo 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/ShazamInsights/src/SHFileChecksum.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 <ShazamInsights/SHFileChecksum.h> 21 + 22 + @implementation SHFileChecksum 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/ShazamInsights/src/SHInsightsConfiguration.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 <ShazamInsights/SHInsightsConfiguration.h> 21 + 22 + @implementation SHInsightsConfiguration 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/ShazamInsights/src/SHInsightsError.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 <ShazamInsights/SHInsightsError.h> 21 + 22 + @implementation SHInsightsError 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/ShazamInsights/src/SHInsightsNetworkRequester.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 <ShazamInsights/SHInsightsNetworkRequester.h> 21 + 22 + @implementation SHInsightsNetworkRequester 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/ShazamInsights/src/SHJSONLClusterImporter.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 <ShazamInsights/SHJSONLClusterImporter.h> 21 + 22 + @implementation SHJSONLClusterImporter 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/ShazamInsights/src/SHLocalDataFetcher.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 <ShazamInsights/SHLocalDataFetcher.h> 21 + 22 + @implementation SHLocalDataFetcher 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/ShazamInsights/src/SHMediaItemPropertyCollection.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 <ShazamInsights/SHMediaItemPropertyCollection.h> 21 + 22 + @implementation SHMediaItemPropertyCollection 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/ShazamInsights/src/SHRegion.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 <ShazamInsights/SHRegion.h> 21 + 22 + @implementation SHRegion 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/ShazamInsights/src/SHSQLiteClusterImporter.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 <ShazamInsights/SHSQLiteClusterImporter.h> 21 + 22 + @implementation SHSQLiteClusterImporter 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/ShazamInsights/src/SHSQLiteUtils.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 <ShazamInsights/SHSQLiteUtils.h> 21 + 22 + @implementation SHSQLiteUtils 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/ShazamInsights/src/SHStubbedNetworkRequester.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 <ShazamInsights/SHStubbedNetworkRequester.h> 21 + 22 + @implementation SHStubbedNetworkRequester 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/ShazamInsights/src/SHTimeAndPlaceAffinityGroup.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 <ShazamInsights/SHTimeAndPlaceAffinityGroup.h> 21 + 22 + @implementation SHTimeAndPlaceAffinityGroup 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/ShazamInsights/src/SHTimeAndPlaceController.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 <ShazamInsights/SHTimeAndPlaceController.h> 21 + 22 + @implementation SHTimeAndPlaceController 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/ShazamInsights/src/SHTimeAndPlaceServerResponseParser.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 <ShazamInsights/SHTimeAndPlaceServerResponseParser.h> 21 + 22 + @implementation SHTimeAndPlaceServerResponseParser 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
+48
src/private-frameworks/ShazamInsights/src/ShazamInsights.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 + 21 + #include <ShazamInsights/ShazamInsights.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + __attribute__((constructor)) 26 + static void initme(void) { 27 + verbose = getenv("STUB_VERBOSE") != NULL; 28 + } 29 + 30 + 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 + ) 48 +
+51
src/private-frameworks/ShazamKitUI/CMakeLists.txt
··· 1 + project(ShazamKitUI) 2 + 3 + remove_sdk_framework(ShazamKitUI 4 + PRIVATE 5 + ) 6 + 7 + set(DYLIB_COMPAT_VERSION "1.0.0") 8 + set(DYLIB_CURRENT_VERSION "1.0.0") 9 + 10 + set(FRAMEWORK_VERSION "A") 11 + 12 + generate_sdk_framework(ShazamKitUI 13 + PRIVATE 14 + VERSION ${FRAMEWORK_VERSION} 15 + HEADER "include/ShazamKitUI" 16 + ) 17 + 18 + 19 + add_framework(ShazamKitUI 20 + PRIVATE 21 + FAT 22 + CURRENT_VERSION 23 + VERSION ${FRAMEWORK_VERSION} 24 + 25 + SOURCES 26 + src/SHPaletteLayer.m 27 + src/SHPalette.m 28 + src/SHMaths.m 29 + src/SHCustomBackgroundCompatiblePalette.m 30 + src/SHListeningLayer.m 31 + src/SHListeningViewHelperMethods.m 32 + src/SHListeningMediaTimingFunctionProvider.m 33 + src/SHListeningOuterCirclesLayer.m 34 + src/SHInnerCircleMaskLayer.m 35 + src/_TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView.m 36 + src/SHShazamKitUIServiceConnection.m 37 + src/SHShazamButtonLayer.m 38 + src/SHListeningAutoShadowLayer.m 39 + src/SHListeningInnerCircleLayer.m 40 + src/SHShazamKitUIServiceConnectionProvider.m 41 + src/SHListeningOuterCircleLayer.m 42 + src/SHListeningInnerCirclesLayer.m 43 + src/NSBundle+ResourcesBundle.m 44 + src/SHMediaItem+Presentation.m 45 + src/ShazamKitUI.m 46 + 47 + DEPENDENCIES 48 + system 49 + objc 50 + Foundation 51 + )
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/CAAnimationDelegate.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 CAAnimationDelegate 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/NSBundle+ResourcesBundle.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 NSBundle (ResourcesBundle) 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHCustomBackgroundCompatiblePalette.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 SHCustomBackgroundCompatiblePalette : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHInnerCircleMaskLayer.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 SHInnerCircleMaskLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHListeningAutoShadowLayer.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 SHListeningAutoShadowLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHListeningInnerCircleLayer.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 SHListeningInnerCircleLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHListeningInnerCirclesLayer.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 SHListeningInnerCirclesLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHListeningLayer.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 SHListeningLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHListeningMediaTimingFunctionProvider.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 SHListeningMediaTimingFunctionProvider : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHListeningOuterCircleLayer.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 SHListeningOuterCircleLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHListeningOuterCirclesLayer.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 SHListeningOuterCirclesLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHListeningViewHelperMethods.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 SHListeningViewHelperMethods : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHMaths.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 SHMaths : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHMediaItem+Presentation.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 SHMediaItem (Presentation) 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHMediaItemPresentation.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 SHMediaItemPresentation 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHPalette.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 SHPalette : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHPaletteLayer.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 SHPaletteLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHShazamButtonLayer.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 SHShazamButtonLayer : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHShazamButtonViewDelegate.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 SHShazamButtonViewDelegate 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHShazamKitUIService.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 SHShazamKitUIService 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHShazamKitUIServiceConnection.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 SHShazamKitUIServiceConnection : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/SHShazamKitUIServiceConnectionProvider.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 SHShazamKitUIServiceConnectionProvider 23 + 24 + @end
+70
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/ShazamKitUI.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 + #ifndef _SHAZAMKITUI_H_ 21 + #define _SHAZAMKITUI_H_ 22 + 23 + #import <Foundation/Foundation.h> 24 + 25 + #import <ShazamKitUI/CAAnimationDelegate.h> 26 + #import <ShazamKitUI/NSBundle+ResourcesBundle.h> 27 + #import <ShazamKitUI/SHCustomBackgroundCompatiblePalette.h> 28 + #import <ShazamKitUI/SHInnerCircleMaskLayer.h> 29 + #import <ShazamKitUI/SHListeningAutoShadowLayer.h> 30 + #import <ShazamKitUI/SHListeningInnerCircleLayer.h> 31 + #import <ShazamKitUI/SHListeningInnerCirclesLayer.h> 32 + #import <ShazamKitUI/SHListeningLayer.h> 33 + #import <ShazamKitUI/SHListeningMediaTimingFunctionProvider.h> 34 + #import <ShazamKitUI/SHListeningOuterCircleLayer.h> 35 + #import <ShazamKitUI/SHListeningOuterCirclesLayer.h> 36 + #import <ShazamKitUI/SHListeningViewHelperMethods.h> 37 + #import <ShazamKitUI/SHMaths.h> 38 + #import <ShazamKitUI/SHMediaItem+Presentation.h> 39 + #import <ShazamKitUI/SHMediaItemPresentation.h> 40 + #import <ShazamKitUI/SHPalette.h> 41 + #import <ShazamKitUI/SHPaletteLayer.h> 42 + #import <ShazamKitUI/SHShazamButtonLayer.h> 43 + #import <ShazamKitUI/SHShazamButtonViewDelegate.h> 44 + #import <ShazamKitUI/SHShazamKitUIService.h> 45 + #import <ShazamKitUI/SHShazamKitUIServiceConnection.h> 46 + #import <ShazamKitUI/SHShazamKitUIServiceConnectionProvider.h> 47 + #import <ShazamKitUI/SHShazamKitUIServiceConnectionProvider.h> 48 + #import <ShazamKitUI/_TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView.h> 49 + 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 + 64 + 65 + extern extern const void* ShazamKitUIVersionString; 66 + extern extern const void* ShazamKitUIVersionNumber; 67 + extern extern const void* __swift_reflection_version; 68 + 69 + #endif 70 +
+24
src/private-frameworks/ShazamKitUI/include/ShazamKitUI/_TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView.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 _TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView : NSObject 23 + 24 + @end
+24
src/private-frameworks/ShazamKitUI/src/NSBundle+ResourcesBundle.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 <ShazamKitUI/NSBundle+ResourcesBundle.h> 21 + 22 + @implementation NSBundle (ResourcesBundle) 23 + 24 + @end
+34
src/private-frameworks/ShazamKitUI/src/SHCustomBackgroundCompatiblePalette.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 <ShazamKitUI/SHCustomBackgroundCompatiblePalette.h> 21 + 22 + @implementation SHCustomBackgroundCompatiblePalette 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/ShazamKitUI/src/SHInnerCircleMaskLayer.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 <ShazamKitUI/SHInnerCircleMaskLayer.h> 21 + 22 + @implementation SHInnerCircleMaskLayer 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/ShazamKitUI/src/SHListeningAutoShadowLayer.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 <ShazamKitUI/SHListeningAutoShadowLayer.h> 21 + 22 + @implementation SHListeningAutoShadowLayer 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/ShazamKitUI/src/SHListeningInnerCircleLayer.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 <ShazamKitUI/SHListeningInnerCircleLayer.h> 21 + 22 + @implementation SHListeningInnerCircleLayer 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/ShazamKitUI/src/SHListeningInnerCirclesLayer.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 <ShazamKitUI/SHListeningInnerCirclesLayer.h> 21 + 22 + @implementation SHListeningInnerCirclesLayer 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/ShazamKitUI/src/SHListeningLayer.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 <ShazamKitUI/SHListeningLayer.h> 21 + 22 + @implementation SHListeningLayer 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/ShazamKitUI/src/SHListeningMediaTimingFunctionProvider.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 <ShazamKitUI/SHListeningMediaTimingFunctionProvider.h> 21 + 22 + @implementation SHListeningMediaTimingFunctionProvider 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/ShazamKitUI/src/SHListeningOuterCircleLayer.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 <ShazamKitUI/SHListeningOuterCircleLayer.h> 21 + 22 + @implementation SHListeningOuterCircleLayer 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/ShazamKitUI/src/SHListeningOuterCirclesLayer.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 <ShazamKitUI/SHListeningOuterCirclesLayer.h> 21 + 22 + @implementation SHListeningOuterCirclesLayer 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/ShazamKitUI/src/SHListeningViewHelperMethods.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 <ShazamKitUI/SHListeningViewHelperMethods.h> 21 + 22 + @implementation SHListeningViewHelperMethods 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/ShazamKitUI/src/SHMaths.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 <ShazamKitUI/SHMaths.h> 21 + 22 + @implementation SHMaths 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
+24
src/private-frameworks/ShazamKitUI/src/SHMediaItem+Presentation.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 <ShazamKitUI/SHMediaItem+Presentation.h> 21 + 22 + @implementation SHMediaItem (Presentation) 23 + 24 + @end
+34
src/private-frameworks/ShazamKitUI/src/SHPalette.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 <ShazamKitUI/SHPalette.h> 21 + 22 + @implementation SHPalette 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/ShazamKitUI/src/SHPaletteLayer.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 <ShazamKitUI/SHPaletteLayer.h> 21 + 22 + @implementation SHPaletteLayer 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/ShazamKitUI/src/SHShazamButtonLayer.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 <ShazamKitUI/SHShazamButtonLayer.h> 21 + 22 + @implementation SHShazamButtonLayer 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/ShazamKitUI/src/SHShazamKitUIServiceConnection.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 <ShazamKitUI/SHShazamKitUIServiceConnection.h> 21 + 22 + @implementation SHShazamKitUIServiceConnection 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
+19
src/private-frameworks/ShazamKitUI/src/SHShazamKitUIServiceConnectionProvider.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 +
+94
src/private-frameworks/ShazamKitUI/src/ShazamKitUI.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 + 21 + #include <ShazamKitUI/ShazamKitUI.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + __attribute__((constructor)) 26 + static void initme(void) { 27 + verbose = getenv("STUB_VERBOSE") != NULL; 28 + } 29 + 30 + 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 +
+34
src/private-frameworks/ShazamKitUI/src/_TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView.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 <ShazamKitUI/_TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView.h> 21 + 22 + @implementation _TtCV11ShazamKitUI29ListeningLayerPlatformWrapper15ListeningNSView 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