this repo has no description
1
fork

Configure Feed

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

CoreTelephony framework stubs

+10908
+1
src/frameworks/CMakeLists.txt
··· 22 22 add_subdirectory(CoreMedia) 23 23 add_subdirectory(CoreMediaIO) 24 24 add_subdirectory(CoreServices) 25 + add_subdirectory(CoreTelephony) 25 26 add_subdirectory(CoreVideo) 26 27 add_subdirectory(CoreWLAN) 27 28 add_subdirectory(CryptoTokenKit)
+99
src/frameworks/CoreTelephony/CMakeLists.txt
··· 1 + project(CoreTelephony) 2 + 3 + set(DYLIB_COMPAT_VERSION "1.0.0") 4 + set(DYLIB_CURRENT_VERSION "0.0.0") 5 + 6 + add_framework(CoreTelephony 7 + FAT 8 + CURRENT_VERSION 9 + VERSION "A" 10 + 11 + SOURCES 12 + src/CoreTelephony.m 13 + src/CTIMSRegistrationStatus.m 14 + src/CTAsciiAddress.m 15 + src/CTRadioAccessTechnology.m 16 + src/CTBundle.m 17 + src/CTMessage.m 18 + src/CTSimLabel.m 19 + src/CTPhoneNumber.m 20 + src/CTSupportedMaxDataRates.m 21 + src/CTRegistrationDisplayStatus.m 22 + src/CTCallCapabilities.m 23 + src/CTMmsRegistrationFailureInfoType.m 24 + src/CTDataStatus.m 25 + src/CTMessageCenter.m 26 + src/CTMmsEncoder.m 27 + src/CTEncryptionStatusInfo.m 28 + src/CTMessagePart.m 29 + src/CTIMSRegistrationTransportInfo.m 30 + src/CTCallCenter.m 31 + src/CTPhoneBookEntry.m 32 + src/CTSuppServicesNotificationData.m 33 + src/CTCallForwardingValue.m 34 + src/CTMessageStatus.m 35 + src/CTVoicemailInfoType.m 36 + src/CTTelephonyNetworkInfo.m 37 + src/CTEmailAddress.m 38 + src/CTEmergencyMode.m 39 + src/CTMobileEquipmentInfo.m 40 + src/CTMobileEquipmentInfoList.m 41 + src/CTSubscriberInfo.m 42 + src/CTEmergencyModeResult.m 43 + src/CTXPCServiceSubscriptionContext.m 44 + src/CTXPCServiceSubscriptionInfo.m 45 + src/CTXPCSimLessContextInfo.m 46 + src/CTXPCSimLessContexts.m 47 + src/CTXPCContextInfo.m 48 + src/CTXPCContexts.m 49 + src/CTDataSettings.m 50 + src/CTAudioCodecInfo.m 51 + src/CTCarrier.m 52 + src/CTSignalStrengthInfo.m 53 + src/CTSignalStrengthMeasurements.m 54 + src/CTCellInfo.m 55 + src/CTCall.m 56 + src/CTCellIdInfo.m 57 + src/CTBinarySMS.m 58 + src/CTDataConnectionAvailabilityStatus.m 59 + src/CTDataUsage.m 60 + src/CTDataUsed.m 61 + src/CTAppDataUsage.m 62 + src/CTPerAppDataUsage.m 63 + src/CTDeviceDataUsage.m 64 + src/CTServiceDescriptor.m 65 + src/CTServiceDescriptorContainer.m 66 + src/CTCellularPlanProvisioningRequest.m 67 + src/CTVoiceLinkQualityMetric.m 68 + src/CTEnhancedLinkQualityMetric.m 69 + src/CTEnhancedDataLinkQualityMetric.m 70 + src/CoreTelephonyClientRemoteAsyncProxy.m 71 + src/CTNetworkList.m 72 + src/CoreTelephonyClientDelegateProxy.m 73 + src/CTXPCError.m 74 + src/CTNetwork.m 75 + src/CTDataConnectionStatus.m 76 + src/CTPNRDataType.m 77 + src/CTPNRRequestType.m 78 + src/CTPNRRequestSentInfo.m 79 + src/CTPNRContextInfo.m 80 + src/MuxNotificationSink.m 81 + src/CoreTelephonyClientMux.m 82 + src/CTSubscriberAlgorithm.m 83 + src/CTSubscriberAlgorithmEAPSIM.m 84 + src/CTSubscriberAlgorithmEAPAKA.m 85 + src/CTSubscriberAuthRequest.m 86 + src/CTSubscriberAuthResult.m 87 + src/CoreTelephonyClient.m 88 + src/CTNetworkSelectionInfo.m 89 + src/CTCellularPlanManagerCameraScanAction.m 90 + src/CTSubscriberAuthDataHolder.m 91 + src/CTPhoneNumberInfo.m 92 + src/CTPriVersion.m 93 + src/CTSMSDataType.m 94 + 95 + DEPENDENCIES 96 + system 97 + objc 98 + Foundation 99 + )
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTAppDataUsage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTAppDataUsage : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTAsciiAddress.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTAsciiAddress : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTAudioCodecInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTAudioCodecInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTBinarySMS.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTBinarySMS : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTBundle.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTBundle : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCall.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCall : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCapabilities.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCallCapabilities : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCallCenter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCallCenter : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCallForwardingValue.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCallForwardingValue : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCarrier.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCarrier : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCellIdInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCellIdInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCellInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCellInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCellularPlanManagerCameraScanAction.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCellularPlanManagerCameraScanAction : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTCellularPlanProvisioningRequest.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTCellularPlanProvisioningRequest : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTDataConnectionAvailabilityStatus.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTDataConnectionAvailabilityStatus : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTDataConnectionStatus.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTDataConnectionStatus : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTDataSettings.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTDataSettings : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTDataStatus.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTDataStatus : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTDataUsage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTDataUsage : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTDataUsed.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTDataUsed : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTDeviceDataUsage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTDeviceDataUsage : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTEmailAddress.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTEmailAddress : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTEmergencyMode.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTEmergencyMode : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTEmergencyModeResult.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTEmergencyModeResult : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTEncryptionStatusInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTEncryptionStatusInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTEnhancedDataLinkQualityMetric.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTEnhancedDataLinkQualityMetric : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTEnhancedLinkQualityMetric.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTEnhancedLinkQualityMetric : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTIMSRegistrationStatus.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTIMSRegistrationStatus : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTIMSRegistrationTransportInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTIMSRegistrationTransportInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMessage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMessage : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageAddress.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMessageAddress 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageCenter.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMessageCenter : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMessagePart.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMessagePart : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMessageStatus.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMessageStatus : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMmsEncoder.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMmsEncoder : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMmsRegistrationFailureInfoType.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMmsRegistrationFailureInfoType : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMobileEquipmentInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMobileEquipmentInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTMobileEquipmentInfoList.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTMobileEquipmentInfoList : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTNetwork.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTNetwork : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTNetworkList.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTNetworkList : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTNetworkSelectionInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTNetworkSelectionInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRContextInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPNRContextInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRDataType.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPNRDataType : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRRequestSentInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPNRRequestSentInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPNRRequestType.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPNRRequestType : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPerAppDataUsage.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPerAppDataUsage : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneBookEntry.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPhoneBookEntry : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneNumber.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPhoneNumber : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPhoneNumberInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPhoneNumberInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTPriVersion.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTPriVersion : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTRadioAccessTechnology.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTRadioAccessTechnology : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTRegistrationDisplayStatus.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTRegistrationDisplayStatus : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSMSDataType.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSMSDataType : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTServiceDescriptor.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTServiceDescriptor : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTServiceDescriptorContainer.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTServiceDescriptorContainer : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSignalStrengthInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSignalStrengthInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSignalStrengthMeasurements.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSignalStrengthMeasurements : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSimLabel.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSimLabel : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithm.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSubscriberAlgorithm : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithmEAPAKA.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSubscriberAlgorithmEAPAKA : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAlgorithmEAPSIM.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSubscriberAlgorithmEAPSIM : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthDataHolder.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSubscriberAuthDataHolder : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthRequest.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSubscriberAuthRequest : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberAuthResult.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSubscriberAuthResult : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSubscriberInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSubscriberInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSuppServicesNotificationData.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSuppServicesNotificationData : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTSupportedMaxDataRates.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTSupportedMaxDataRates : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTTelephonyNetworkInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTTelephonyNetworkInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTVoiceLinkQualityMetric.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTVoiceLinkQualityMetric : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTVoicemailInfoType.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTVoicemailInfoType : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCContextInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCContextInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCContexts.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCContexts : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCError.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCError : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceAppDataUsageInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceAppDataUsageInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceBaseInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceBaseInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCallInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceCallInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCapabilitiesInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceCapabilitiesInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCarrierBundleInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceCarrierBundleInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCarrierServicesInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceCarrierServicesInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellMonitorInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceCellMonitorInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellularPlanManagerInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceCellularPlanManagerInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceCellularUsagePolicyInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceCellularUsagePolicyInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceDataInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceDataInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceDeviceManagementInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceDeviceManagementInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceEmergencyInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceEmergencyInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceFTInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceFTInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePNRInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServicePNRInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePhonebookInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServicePhonebookInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServicePostponementInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServicePostponementInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceRadioInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceRadioInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceRegistrationInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceRegistrationInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSMSInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceSMSInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriberInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceSubscriberInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriptionContext.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceSubscriptionContext : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSubscriptionInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceSubscriptionInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceSuppServicesInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceSuppServicesInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCServiceVoicemailInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCServiceVoicemailInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCSimLessContextInfo.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCSimLessContextInfo : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CTXPCSimLessContexts.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CTXPCSimLessContexts : NSObject 23 + 24 + @end
+859
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephony.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 + #ifndef _CoreTelephony_H_ 22 + #define _CoreTelephony_H_ 23 + 24 + #import <Foundation/Foundation.h> 25 + 26 + #import <CoreTelephony/CTMessageAddress.h> 27 + #import <CoreTelephony/CTXPCServiceAppDataUsageInterface.h> 28 + #import <CoreTelephony/CTXPCServiceBaseInterface.h> 29 + #import <CoreTelephony/CTXPCServiceCallInterface.h> 30 + #import <CoreTelephony/CTXPCServiceCapabilitiesInterface.h> 31 + #import <CoreTelephony/CTXPCServiceCarrierBundleInterface.h> 32 + #import <CoreTelephony/CTXPCServiceCarrierServicesInterface.h> 33 + #import <CoreTelephony/CTXPCServiceCellMonitorInterface.h> 34 + #import <CoreTelephony/CTXPCServiceCellularPlanManagerInterface.h> 35 + #import <CoreTelephony/CTXPCServiceCellularUsagePolicyInterface.h> 36 + #import <CoreTelephony/CTXPCServiceDataInterface.h> 37 + #import <CoreTelephony/CTXPCServiceDeviceManagementInterface.h> 38 + #import <CoreTelephony/CTXPCServiceEmergencyInterface.h> 39 + #import <CoreTelephony/CTXPCServiceFTInterface.h> 40 + #import <CoreTelephony/CTXPCServiceInterface.h> 41 + #import <CoreTelephony/CTXPCServicePNRInterface.h> 42 + #import <CoreTelephony/CTXPCServicePhonebookInterface.h> 43 + #import <CoreTelephony/CTXPCServicePostponementInterface.h> 44 + #import <CoreTelephony/CTXPCServiceRadioInterface.h> 45 + #import <CoreTelephony/CTXPCServiceRegistrationInterface.h> 46 + #import <CoreTelephony/CTXPCServiceSMSInterface.h> 47 + #import <CoreTelephony/CTXPCServiceSubscriberInterface.h> 48 + #import <CoreTelephony/CTXPCServiceSuppServicesInterface.h> 49 + #import <CoreTelephony/CTXPCServiceVoicemailInterface.h> 50 + #import <CoreTelephony/CoreTelephonyClientCallDelegateInternal.h> 51 + #import <CoreTelephony/CoreTelephonyClientCapabilitiesDelegateInternal.h> 52 + #import <CoreTelephony/CoreTelephonyClientCarrierBundleDelegateInternal.h> 53 + #import <CoreTelephony/CoreTelephonyClientCarrierServicesDelegateInternal.h> 54 + #import <CoreTelephony/CoreTelephonyClientCellularUsagePolicyDelegateInternal.h> 55 + #import <CoreTelephony/CoreTelephonyClientDataDelegateInternal.h> 56 + #import <CoreTelephony/CoreTelephonyClientDelegateInternal.h> 57 + #import <CoreTelephony/CoreTelephonyClientDelegateProxyInterface.h> 58 + #import <CoreTelephony/CoreTelephonyClientEmergencyDelegateInternal.h> 59 + #import <CoreTelephony/CoreTelephonyClientPNRDelegateInternal.h> 60 + #import <CoreTelephony/CoreTelephonyClientRegistrationDelegateInternal.h> 61 + #import <CoreTelephony/CoreTelephonyClientSMSDelegateInternal.h> 62 + #import <CoreTelephony/CoreTelephonyClientSubscriberDelegateInternal.h> 63 + #import <CoreTelephony/CoreTelephonyClientSuppServicesDelegateInternal.h> 64 + #import <CoreTelephony/CoreTelephonyClientVoicemailDelegateInternal.h> 65 + #import <CoreTelephony/MuxNotificationSinkDelegate.h> 66 + #import <CoreTelephony/CTIMSRegistrationStatus.h> 67 + #import <CoreTelephony/CTAsciiAddress.h> 68 + #import <CoreTelephony/CTRadioAccessTechnology.h> 69 + #import <CoreTelephony/CTBundle.h> 70 + #import <CoreTelephony/CTMessage.h> 71 + #import <CoreTelephony/CTSimLabel.h> 72 + #import <CoreTelephony/CTPhoneNumber.h> 73 + #import <CoreTelephony/CTSupportedMaxDataRates.h> 74 + #import <CoreTelephony/CTRegistrationDisplayStatus.h> 75 + #import <CoreTelephony/CTCallCapabilities.h> 76 + #import <CoreTelephony/CTMmsRegistrationFailureInfoType.h> 77 + #import <CoreTelephony/CTDataStatus.h> 78 + #import <CoreTelephony/CTMessageCenter.h> 79 + #import <CoreTelephony/CTMmsEncoder.h> 80 + #import <CoreTelephony/CTEncryptionStatusInfo.h> 81 + #import <CoreTelephony/CTMessagePart.h> 82 + #import <CoreTelephony/CTIMSRegistrationTransportInfo.h> 83 + #import <CoreTelephony/CTCallCenter.h> 84 + #import <CoreTelephony/CTPhoneBookEntry.h> 85 + #import <CoreTelephony/CTSuppServicesNotificationData.h> 86 + #import <CoreTelephony/CTCallForwardingValue.h> 87 + #import <CoreTelephony/CTMessageStatus.h> 88 + #import <CoreTelephony/CTVoicemailInfoType.h> 89 + #import <CoreTelephony/CTTelephonyNetworkInfo.h> 90 + #import <CoreTelephony/CTEmailAddress.h> 91 + #import <CoreTelephony/CTEmergencyMode.h> 92 + #import <CoreTelephony/CTMobileEquipmentInfo.h> 93 + #import <CoreTelephony/CTMobileEquipmentInfoList.h> 94 + #import <CoreTelephony/CTSubscriberInfo.h> 95 + #import <CoreTelephony/CTEmergencyModeResult.h> 96 + #import <CoreTelephony/CTXPCServiceSubscriptionContext.h> 97 + #import <CoreTelephony/CTXPCServiceSubscriptionInfo.h> 98 + #import <CoreTelephony/CTXPCSimLessContextInfo.h> 99 + #import <CoreTelephony/CTXPCSimLessContexts.h> 100 + #import <CoreTelephony/CTXPCContextInfo.h> 101 + #import <CoreTelephony/CTXPCContexts.h> 102 + #import <CoreTelephony/CTDataSettings.h> 103 + #import <CoreTelephony/CTAudioCodecInfo.h> 104 + #import <CoreTelephony/CTCarrier.h> 105 + #import <CoreTelephony/CTSignalStrengthInfo.h> 106 + #import <CoreTelephony/CTSignalStrengthMeasurements.h> 107 + #import <CoreTelephony/CTCellInfo.h> 108 + #import <CoreTelephony/CTCall.h> 109 + #import <CoreTelephony/CTCellIdInfo.h> 110 + #import <CoreTelephony/CTBinarySMS.h> 111 + #import <CoreTelephony/CTDataConnectionAvailabilityStatus.h> 112 + #import <CoreTelephony/CTDataUsage.h> 113 + #import <CoreTelephony/CTDataUsed.h> 114 + #import <CoreTelephony/CTAppDataUsage.h> 115 + #import <CoreTelephony/CTPerAppDataUsage.h> 116 + #import <CoreTelephony/CTDeviceDataUsage.h> 117 + #import <CoreTelephony/CTServiceDescriptor.h> 118 + #import <CoreTelephony/CTServiceDescriptorContainer.h> 119 + #import <CoreTelephony/CTCellularPlanProvisioningRequest.h> 120 + #import <CoreTelephony/CTVoiceLinkQualityMetric.h> 121 + #import <CoreTelephony/CTEnhancedLinkQualityMetric.h> 122 + #import <CoreTelephony/CTEnhancedDataLinkQualityMetric.h> 123 + #import <CoreTelephony/CoreTelephonyClientRemoteAsyncProxy.h> 124 + #import <CoreTelephony/CTNetworkList.h> 125 + #import <CoreTelephony/CoreTelephonyClientDelegateProxy.h> 126 + #import <CoreTelephony/CTXPCError.h> 127 + #import <CoreTelephony/CTNetwork.h> 128 + #import <CoreTelephony/CTDataConnectionStatus.h> 129 + #import <CoreTelephony/CTPNRDataType.h> 130 + #import <CoreTelephony/CTPNRRequestType.h> 131 + #import <CoreTelephony/CTPNRRequestSentInfo.h> 132 + #import <CoreTelephony/CTPNRContextInfo.h> 133 + #import <CoreTelephony/MuxNotificationSink.h> 134 + #import <CoreTelephony/CoreTelephonyClientMux.h> 135 + #import <CoreTelephony/CTSubscriberAlgorithm.h> 136 + #import <CoreTelephony/CTSubscriberAlgorithmEAPSIM.h> 137 + #import <CoreTelephony/CTSubscriberAlgorithmEAPAKA.h> 138 + #import <CoreTelephony/CTSubscriberAuthRequest.h> 139 + #import <CoreTelephony/CTSubscriberAuthResult.h> 140 + #import <CoreTelephony/CoreTelephonyClient.h> 141 + #import <CoreTelephony/CTNetworkSelectionInfo.h> 142 + #import <CoreTelephony/CTCellularPlanManagerCameraScanAction.h> 143 + #import <CoreTelephony/CTSubscriberAuthDataHolder.h> 144 + #import <CoreTelephony/CTPhoneNumberInfo.h> 145 + #import <CoreTelephony/CTPriVersion.h> 146 + #import <CoreTelephony/CTSMSDataType.h> 147 + 148 + void* CTCallAddressBlocked(void); 149 + void* CTCallAnswer(void); 150 + void* CTCallAnswerEndingActive(void); 151 + void* CTCallAnswerEndingActiveWithSourceIdentifier(void); 152 + void* CTCallAnswerEndingHeld(void); 153 + void* CTCallAnswerWithOptions(void); 154 + void* CTCallAnswerWithSourceIdentifier(void); 155 + void* CTCallCopyAddress(void); 156 + void* CTCallCopyCountryCode(void); 157 + void* CTCallCopyISOCountryCode(void); 158 + void* CTCallCopyName(void); 159 + void* CTCallCopyNetworkCode(void); 160 + void* CTCallCopyUUID(void); 161 + void* CTCallCopyUniqueStringID(void); 162 + void* CTCallCreateCallRef(void); 163 + void* CTCallCreateFromSerializedData(void); 164 + void* CTCallDial(void); 165 + void* CTCallDialAny(void); 166 + void* CTCallDialEmergency(void); 167 + void* CTCallDialService(void); 168 + void* CTCallDialVoicemail(void); 169 + void* CTCallDialWithAssist(void); 170 + void* CTCallDialWithID(void); 171 + void* CTCallDialWithIDAndSourceIdentifier(void); 172 + void* CTCallDialWithOptions(void); 173 + void* CTCallDialWithSourceIdentifier(void); 174 + void* CTCallDidDeviceOriginateEnd(void); 175 + void* CTCallDisconnect(void); 176 + void* CTCallDisconnectWithCauseCode(void); 177 + void* CTCallEndVideoConference(void); 178 + void* CTCallGetCallSubType(void); 179 + void* CTCallGetCallType(void); 180 + void* CTCallGetCauseCode(void); 181 + void* CTCallGetCauseCodeString(void); 182 + void* CTCallGetDuration(void); 183 + void* CTCallGetEmergencyStatus(void); 184 + void* CTCallGetMultiPartyCallCountMax(void); 185 + void* CTCallGetStartTime(void); 186 + void* CTCallGetStatus(void); 187 + void* CTCallGetTypeID(void); 188 + void* CTCallHold(void); 189 + void* CTCallIsAlerting(void); 190 + void* CTCallIsCallHandoffPossible(void); 191 + void* CTCallIsConferenced(void); 192 + void* CTCallIsOutgoing(void); 193 + void* CTCallIsToVoicemail(void); 194 + void* CTCallIsWaiting(void); 195 + void* CTCallJoinConference(void); 196 + void* CTCallLeaveConference(void); 197 + void* CTCallListDisconnect(void); 198 + void* CTCallListDisconnectAll(void); 199 + void* CTCallMediaStatusIsActive(void); 200 + void* CTCallPhoneNumberIsMmiOrUssd(void); 201 + void* CTCallPullCallFromOtherDevice(void); 202 + void* CTCallResume(void); 203 + void* CTCallSetCallEndTime(void); 204 + void* CTCallSetCallInfo(void); 205 + void* CTCallSetCallStartTime(void); 206 + void* CTCallSetCallStatus(void); 207 + void* CTCallShouldPlayAudioTone(void); 208 + void* CTCallShouldSetupAudioInterruption(void); 209 + void* CTCallStartVideoConference(void); 210 + void* CTCallSwap(void); 211 + void* CTCallSwitchCallSource(void); 212 + void* CTCallSwitchCallSourceAll(void); 213 + void* CTCellularDataPlanAccountUpdated(void); 214 + void* CTCellularDataPlanActivationFailed(void); 215 + void* CTCellularDataPlanCopyAccountUrlString(void); 216 + void* CTCellularDataPlanCopyDeviceInfo(void); 217 + void* CTCellularDataPlanGetIsEnabled(void); 218 + void* CTCellularDataPlanSetIsEnabled(void); 219 + void* CTCellularDataPlanSetWebsheetVisibility(void); 220 + void* CTCopyCallManagementState(void); 221 + void* CTCopyCurrentCalls(void); 222 + void* CTCopyCurrentCallsWithTypes(void); 223 + void* CTCreateCallInfoForHandoffCall(void); 224 + void* CTDTMFCancelHardPause(void); 225 + void* CTDTMFCopyHardPauseDigits(void); 226 + void* CTDTMFPlayStart(void); 227 + void* CTDTMFPlayStop(void); 228 + void* CTDTMFSendDigitsNow(void); 229 + void* CTDataRateAsString(void); 230 + void* CTEmergencyModeTypeAsString(void); 231 + void* CTEnhancedLQMIndicationTypeAsString(void); 232 + void* CTEsimCapabilityAsString(void); 233 + void* CTGetCurrentCallCount(void); 234 + void* CTGetCurrentCallCountWithTypes(void); 235 + void* CTGetEmergencyWiFiConfig(void); 236 + void* CTGetSignalStrength(void); 237 + void* CTIndicatorsCopyVoicemailStatus(void); 238 + void* CTIndicatorsGetSignalStrength(void); 239 + void* CTNetworkSelectionModeAsString(void); 240 + void* CTNetworkSelectionStateAsString(void); 241 + void* CTRegistrationAutomaticallySelectNetwork(void); 242 + void* CTRegistrationCellularDataPlanAccountUpdated(void); 243 + void* CTRegistrationCopyAbbreviatedOperatorName(void); 244 + void* CTRegistrationCopyDataStatus(void); 245 + void* CTRegistrationCopyISOCountryCodeForMobileCountryCode(void); 246 + void* CTRegistrationCopyLocalizedOperatorName(void); 247 + void* CTRegistrationCopyManualNetworkSelection(void); 248 + void* CTRegistrationCopyOperatorName(void); 249 + void* CTRegistrationCopySupportedDataRates(void); 250 + void* CTRegistrationDataCounterGetLastResetTime(void); 251 + void* CTRegistrationGetCDMAInternationalRoaming(void); 252 + void* CTRegistrationGetCurrentMaxAllowedDataRate(void); 253 + void* CTRegistrationGetDataAttached(void); 254 + void* CTRegistrationGetDataContextActive(void); 255 + void* CTRegistrationGetDataIndicator(void); 256 + void* CTRegistrationGetEULocalBreakOutEnabled(void); 257 + void* CTRegistrationGetEmergencyCallBackMode(void); 258 + void* CTRegistrationGetInternationalDataAccessStatus(void); 259 + void* CTRegistrationGetNetworkSelectionMode(void); 260 + void* CTRegistrationGetNetworkSelectionState(void); 261 + void* CTRegistrationGetStatus(void); 262 + void* CTRegistrationIsCDMAInternationalRoamingSettingAllowed(void); 263 + void* CTRegistrationIsEULocalBreakOutAvailable(void); 264 + void* CTRegistrationIsInE911OverLTEMode(void); 265 + void* CTRegistrationManuallySelectNetwork(void); 266 + void* CTRegistrationNetworkSelectionMenuAvailable(void); 267 + void* CTRegistrationRequestNetworkList(void); 268 + void* CTRegistrationSetCDMAInternationalRoaming(void); 269 + void* CTRegistrationSetDataContextActive(void); 270 + void* CTRegistrationSetEULocalBreakOutEnabled(void); 271 + void* CTRegistrationSetInternationalDataAccessStatus(void); 272 + void* CTSIMSupportCopyMobileSubscriberCountryCode(void); 273 + void* CTSIMSupportCopyMobileSubscriberIdentity(void); 274 + void* CTSIMSupportCopyMobileSubscriberNetworkCode(void); 275 + void* CTSIMSupportGetRemainingPINAttempts(void); 276 + void* CTSIMSupportGetRemainingPUKAttempts(void); 277 + void* CTSIMSupportGetSIMStatus(void); 278 + void* CTSIMSupportPINUnlock(void); 279 + void* CTSIMSupportPUKUnlock(void); 280 + void* CTServerConnectionDualSimCapabilityAsString(void); 281 + void* CTSettingCopyDualIPBringUp(void); 282 + void* CTSettingCopyEPDGAddress(void); 283 + void* CTSettingCopyEffectiveSimInfo(void); 284 + void* CTSettingCopyFakePrimaryDNSKey(void); 285 + void* CTSettingCopyFakeSecondaryDNSKey(void); 286 + void* CTSettingCopyMyPhoneNumber(void); 287 + void* CTSettingCopyMyPhoneNumberExtended(void); 288 + void* CTSettingCopyPCSCFAddress(void); 289 + void* CTSettingCopyShowVoLTEStatusIndicator(void); 290 + void* CTSettingCopyVerifyAPN(void); 291 + void* CTSettingCopyVerifyCarrierBundles(void); 292 + void* CTSettingCopyWiFiCallingInCallHandover(void); 293 + void* CTSettingRequest(void); 294 + void* CTSettingSave(void); 295 + void* CTSettingSetDualIPBringUp(void); 296 + void* CTSettingSetEPDGAddress(void); 297 + void* CTSettingSetFakePrimaryDNSKey(void); 298 + void* CTSettingSetFakeSecondaryDNSKey(void); 299 + void* CTSettingSetIMSIOverride(void); 300 + void* CTSettingSetPCSCFAddress(void); 301 + void* CTSettingSetShowVoLTEStatusIndicator(void); 302 + void* CTSettingSetVerifyAPN(void); 303 + void* CTSettingSetVerifyCarrierBundles(void); 304 + void* CTSettingSetWiFiCallingInCallHandover(void); 305 + void* CTSettingsCopyiWlanGatewayAddress(void); 306 + void* CTStartManualOTASP(void); 307 + void* CTStartOTASP(void); 308 + void* CTSubscriptionSlotAsString(void); 309 + void* CTSubscriptionSlotAsUUID(void); 310 + void* CTSweetgumConvertDataUnits(void); 311 + void* CTSweetgumDataUnitsAsString(void); 312 + void* CTSweetgumDeviceTypeAsString(void); 313 + void* CTSweetgumPlanCategoryAsString(void); 314 + void* CTSweetgumPlanPurchaseStatusAsString(void); 315 + void* CTSweetgumPlanStatusAsString(void); 316 + void* CTSweetgumRegistrationStatusAsString(void); 317 + void* CTTelephonyCenterAddObserver(void); 318 + void* CTTelephonyCenterGetDefault(void); 319 + void* CTTelephonyCenterGetRunLoop(void); 320 + void* CTTelephonyCenterRemoveEveryObserver(void); 321 + void* CTTelephonyCenterRemoveObserver(void); 322 + void* CTTelephonyCenterSendBarrier(void); 323 + void* CTTelephonyCenterSetDefaultDispatchQueue(void); 324 + void* CTTelephonyCenterSetDefaultDispatchQueuePermanently(void); 325 + void* CTTelephonyCenterSetDefaultRunloop(void); 326 + void* CTTelephonyCenterSetDefaultRunloopPermanently(void); 327 + void* CTUSSDSessionCancel(void); 328 + void* CTUSSDSessionSendResponse(void); 329 + void* ConvertAccountQueryTypesToMask(void); 330 + void* GetCarrierEntitlementNameById(void); 331 + void* GetCarrierEntitlementResultString(void); 332 + void* HexToString(void); 333 + void* VMCopyDictionaryForNotificationString(void); 334 + void* _CFDataCreateFromHexString(void); 335 + void* _CFStringCopyMCCMNCFromIMSI(void); 336 + void* _CFStringCreateHexFromBinary(void); 337 + void* _CFStringGetMobileUser(void); 338 + void* _CFStringGetOrCreateCString(void); 339 + void* _CFStringGetWirelessUser(void); 340 + void* _CFStringHasPrefixCaseInsensitive(void); 341 + void* _CTCallCopyCurrentCalls(void); 342 + void* _CTCallHistoryStoreCallTimersGetAll(void); 343 + void* _CTCallHistoryStoreGetCountOfMissedCallSince(void); 344 + void* _CTCallHistoryStoreGetCountOfMissedCallWithTypesSince(void); 345 + void* _CTServerConnectionAddIdentifierException(void); 346 + void* _CTServerConnectionAddToRunLoop(void); 347 + void* _CTServerConnectionAddVictimFreq(void); 348 + void* _CTServerConnectionAudioSampleRateSwitchDidComplete(void); 349 + void* _CTServerConnectionAutomaticallySelectNetwork(void); 350 + void* _CTServerConnectionBlockBBFreqReport(void); 351 + void* _CTServerConnectionCanSetCapability(void); 352 + void* _CTServerConnectionCanSetCapabilityExtended(void); 353 + void* _CTServerConnectionCarrierSettingsCopyValue(void); 354 + void* _CTServerConnectionCarrierSettingsCopyValueForPreferredDataSIM(void); 355 + void* _CTServerConnectionCellMonitorCopyCellInfo(void); 356 + void* _CTServerConnectionCellMonitorGetCellCount(void); 357 + void* _CTServerConnectionCellMonitorGetCellInfo(void); 358 + void* _CTServerConnectionCellMonitorGetUmtsCellCount(void); 359 + void* _CTServerConnectionCellMonitorGetUmtsCellInfo(void); 360 + void* _CTServerConnectionCellMonitorStart(void); 361 + void* _CTServerConnectionCellMonitorStop(void); 362 + void* _CTServerConnectionCellularDataPlanAccountUpdated(void); 363 + void* _CTServerConnectionCellularDataPlanActivationFailed(void); 364 + void* _CTServerConnectionCleanBasebandLogs(void); 365 + void* _CTServerConnectionClearVictimFreq(void); 366 + void* _CTServerConnectionConfigAndCopyTxController(void); 367 + void* _CTServerConnectionConfigMaxRadioPower(void); 368 + void* _CTServerConnectionConfigMaxTransmitPower(void); 369 + void* _CTServerConnectionConfigureLogging(void); 370 + void* _CTServerConnectionCopyAbbreviatedOperatorName(void); 371 + void* _CTServerConnectionCopyAccountInformation(void); 372 + void* _CTServerConnectionCopyActiveAndSupportedBands(void); 373 + void* _CTServerConnectionCopyAudioVocoderInfo(void); 374 + void* _CTServerConnectionCopyBandInfo(void); 375 + void* _CTServerConnectionCopyBasebandSettings(void); 376 + void* _CTServerConnectionCopyBasebandThumbprint(void); 377 + void* _CTServerConnectionCopyCallManagementState(void); 378 + void* _CTServerConnectionCopyCarrierBundleInfoArray(void); 379 + void* _CTServerConnectionCopyCellBroadcastAlertTypes(void); 380 + void* _CTServerConnectionCopyCellularTransmitState(void); 381 + void* _CTServerConnectionCopyCellularUsagePolicy(void); 382 + void* _CTServerConnectionCopyCellularUsageWorkspaceInfo(void); 383 + void* _CTServerConnectionCopyCompanionPhoneNumber(void); 384 + void* _CTServerConnectionCopyCountryCode(void); 385 + void* _CTServerConnectionCopyCurrentMTU(void); 386 + void* _CTServerConnectionCopyDataActivityAssertionProcesses(void); 387 + void* _CTServerConnectionCopyDataStatus(void); 388 + void* _CTServerConnectionCopyDataUsageForSubscriber(void); 389 + void* _CTServerConnectionCopyDualSimCapability(void); 390 + void* _CTServerConnectionCopyEffectiveSimInfo(void); 391 + void* _CTServerConnectionCopyFirmwareBaselineVersion(void); 392 + void* _CTServerConnectionCopyFirmwareManifestData(void); 393 + void* _CTServerConnectionCopyFirmwareManifestStatus(void); 394 + void* _CTServerConnectionCopyFirmwareNonce(void); 395 + void* _CTServerConnectionCopyFirmwarePreflightInfo(void); 396 + void* _CTServerConnectionCopyFirmwareSecurityInfo(void); 397 + void* _CTServerConnectionCopyFirmwareUpdateInfo(void); 398 + void* _CTServerConnectionCopyFirmwareVersion(void); 399 + void* _CTServerConnectionCopyISOForMCC(void); 400 + void* _CTServerConnectionCopyLastKnownCountryCode(void); 401 + void* _CTServerConnectionCopyLastKnownMobileCountryCode(void); 402 + void* _CTServerConnectionCopyLastKnownMobileSubscriberCountryCode(void); 403 + void* _CTServerConnectionCopyListVictimFreq(void); 404 + void* _CTServerConnectionCopyLocalizedOperatorName(void); 405 + void* _CTServerConnectionCopyManualNetworkSelection(void); 406 + void* _CTServerConnectionCopyMobileCountryCode(void); 407 + void* _CTServerConnectionCopyMobileEquipmentInfo(void); 408 + void* _CTServerConnectionCopyMobileNetworkCode(void); 409 + void* _CTServerConnectionCopyMobileSubscriberAndIsoCountryCodes(void); 410 + void* _CTServerConnectionCopyMobileSubscriberCountryCode(void); 411 + void* _CTServerConnectionCopyMobileSubscriberHomeCountryList(void); 412 + void* _CTServerConnectionCopyMobileSubscriberIdentity(void); 413 + void* _CTServerConnectionCopyMobileSubscriberNetworkCode(void); 414 + void* _CTServerConnectionCopyNetworkCode(void); 415 + void* _CTServerConnectionCopyNetworkList(void); 416 + void* _CTServerConnectionCopyNextCall(void); 417 + void* _CTServerConnectionCopyNumericNetworkCode(void); 418 + void* _CTServerConnectionCopyOperatorName(void); 419 + void* _CTServerConnectionCopyPacketContextInterfaceName(void); 420 + void* _CTServerConnectionCopyPacketContextInterfaceNameByServiceType(void); 421 + void* _CTServerConnectionCopyPhoneBookEntry(void); 422 + void* _CTServerConnectionCopyPhoneNumber(void); 423 + void* _CTServerConnectionCopyPhoneNumberSignature(void); 424 + void* _CTServerConnectionCopyPhoneServiceDeviceList(void); 425 + void* _CTServerConnectionCopyPostponementStatus(void); 426 + void* _CTServerConnectionCopyProviderNameUsingCarrierBundle(void); 427 + void* _CTServerConnectionCopyRegistrationInfo(void); 428 + void* _CTServerConnectionCopyReliableNetworkFallbackSettings(void); 429 + void* _CTServerConnectionCopySIMIdentity(void); 430 + void* _CTServerConnectionCopySIMToolkitList(void); 431 + void* _CTServerConnectionCopySIMToolkitMenu(void); 432 + void* _CTServerConnectionCopyServiceCenterAddressValue(void); 433 + void* _CTServerConnectionCopyServingPLMN(void); 434 + void* _CTServerConnectionCopyStartDateOfCellularDataUsageRecords(void); 435 + void* _CTServerConnectionCopySupportedDataRates(void); 436 + void* _CTServerConnectionCopySystemCapabilities(void); 437 + void* _CTServerConnectionCopyTraceProperty(void); 438 + void* _CTServerConnectionCopyUSSDString(void); 439 + void* _CTServerConnectionCopyUsageAlertParameters(void); 440 + void* _CTServerConnectionCopyVoiceCarrierBundleValue(void); 441 + void* _CTServerConnectionCopyVoiceMailInfo(void); 442 + void* _CTServerConnectionCreate(void); 443 + void* _CTServerConnectionCreateAndLaunchWithIdentifier(void); 444 + void* _CTServerConnectionCreateEncryptedIdentity(void); 445 + void* _CTServerConnectionCreateOnRunLoop(void); 446 + void* _CTServerConnectionCreateOnTargetQueue(void); 447 + void* _CTServerConnectionCreateWithIdentifier(void); 448 + void* _CTServerConnectionDataActivationPopupAssertionCreate(void); 449 + void* _CTServerConnectionDeviceManagementUpdate(void); 450 + void* _CTServerConnectionDisablePCMChannel(void); 451 + void* _CTServerConnectionDisableRegistration(void); 452 + void* _CTServerConnectionDoCSIPropertyOperation(void); 453 + void* _CTServerConnectionDoModuleOperation(void); 454 + void* _CTServerConnectionDormancySuspendAssertionCreate(void); 455 + void* _CTServerConnectionDormancySuspendAssertionCreateWithExpirationCB(void); 456 + void* _CTServerConnectionDropIPPackets(void); 457 + void* _CTServerConnectionDumpBasebandState(void); 458 + void* _CTServerConnectionDumpMemory(void); 459 + void* _CTServerConnectionDumpState(void); 460 + void* _CTServerConnectionEchoCancelationAndNoiseReduction(void); 461 + void* _CTServerConnectionEnableEmergencyCallBackMode(void); 462 + void* _CTServerConnectionEnableHAC(void); 463 + void* _CTServerConnectionEnableMediaToDownlink(void); 464 + void* _CTServerConnectionEnablePCMChannel(void); 465 + void* _CTServerConnectionEnableRegistration(void); 466 + void* _CTServerConnectionEnableRemoteDiagnostics(void); 467 + void* _CTServerConnectionEnableVoicePrivacy(void); 468 + void* _CTServerConnectionEntitlementsClearSecondaryIccids(void); 469 + void* _CTServerConnectionEntitlementsGetPreferredRoamingNetworks(void); 470 + void* _CTServerConnectionEntitlementsGetSIMStatus(void); 471 + void* _CTServerConnectionEntitlementsSetPreferredRoamingNetworks(void); 472 + void* _CTServerConnectionEntitlementsSetSecondaryIccids(void); 473 + void* _CTServerConnectionEntitlementsSignUpSIMService(void); 474 + void* _CTServerConnectionEraseAllUserProfiles(void); 475 + void* _CTServerConnectionEraseBasebandSettings(void); 476 + void* _CTServerConnectionEraseCellularDataUsageRecords(void); 477 + void* _CTServerConnectionEraseCellularDataUsageRecordsEx(void); 478 + void* _CTServerConnectionEraseCommCentersPreferences(void); 479 + void* _CTServerConnectionEraseNetworkSettings(void); 480 + void* _CTServerConnectionEvaluateMobileSubscriberIdentity(void); 481 + void* _CTServerConnectionExecuteCommand(void); 482 + void* _CTServerConnectionFetchNetworkList(void); 483 + void* _CTServerConnectionFetchPhonebook(void); 484 + void* _CTServerConnectionFetchTimeFromNetwork(void); 485 + void* _CTServerConnectionGetAPNConfiguration(void); 486 + void* _CTServerConnectionGetActiveWirelessTechnology(void); 487 + void* _CTServerConnectionGetAllowedRadioMode(void); 488 + void* _CTServerConnectionGetAttachAPNSettings(void); 489 + void* _CTServerConnectionGetAudioLoggingEnabled(void); 490 + void* _CTServerConnectionGetCDMAInternationalRoaming(void); 491 + void* _CTServerConnectionGetCDRXWithLTEState(void); 492 + void* _CTServerConnectionGetCapabilityStatus(void); 493 + void* _CTServerConnectionGetCapabilityStatusExtended(void); 494 + void* _CTServerConnectionGetCarrierEntitlements(void); 495 + void* _CTServerConnectionGetCarrierSpaceUpdates(void); 496 + void* _CTServerConnectionGetCellBroadcastSettingForAlertType(void); 497 + void* _CTServerConnectionGetCellID(void); 498 + void* _CTServerConnectionGetCellularDataIsDisallowed(void); 499 + void* _CTServerConnectionGetCellularDataIsEnabled(void); 500 + void* _CTServerConnectionGetCellularDataIsEnabledEx(void); 501 + void* _CTServerConnectionGetCellularDataSettings(void); 502 + void* _CTServerConnectionGetCellularUsagePolicyEx(void); 503 + void* _CTServerConnectionGetCellularUsagePolicyMirroring(void); 504 + void* _CTServerConnectionGetCellularUsageWorkspaceInfoEx(void); 505 + void* _CTServerConnectionGetCommCenterInitializationState(void); 506 + void* _CTServerConnectionGetCurrentMaxAllowedDataRate(void); 507 + void* _CTServerConnectionGetDTMFType(void); 508 + void* _CTServerConnectionGetDataServiceAvailability(void); 509 + void* _CTServerConnectionGetDisallowTelephonyFeature(void); 510 + void* _CTServerConnectionGetE911OverLTEModeStatus(void); 511 + void* _CTServerConnectionGetE911OverWifiModeStatus(void); 512 + void* _CTServerConnectionGetEMBMSSAIListInfo(void); 513 + void* _CTServerConnectionGetEMBMSSigInfo(void); 514 + void* _CTServerConnectionGetEMBMSStatus(void); 515 + void* _CTServerConnectionGetEmergencyCallBackMode(void); 516 + void* _CTServerConnectionGetEmergencyCallStatus(void); 517 + void* _CTServerConnectionGetEnableOnlyHomeNetwork(void); 518 + void* _CTServerConnectionGetEnhancedVoiceLinkQualityMetric(void); 519 + void* _CTServerConnectionGetHACState(void); 520 + void* _CTServerConnectionGetInterfaceFamilies(void); 521 + void* _CTServerConnectionGetInternationalDataAccessStatus(void); 522 + void* _CTServerConnectionGetLocationAreaCode(void); 523 + void* _CTServerConnectionGetManagedCellularProfile(void); 524 + void* _CTServerConnectionGetMultiPartyCallCountMaximum(void); 525 + void* _CTServerConnectionGetNATTKeepAliveOverCell(void); 526 + void* _CTServerConnectionGetNetworkSelectionMode(void); 527 + void* _CTServerConnectionGetNetworkSelectionState(void); 528 + void* _CTServerConnectionGetOTAServerOverride(void); 529 + void* _CTServerConnectionGetPLMNPriorityInfo(void); 530 + void* _CTServerConnectionGetPacketContextActive(void); 531 + void* _CTServerConnectionGetPacketContextActiveByServiceType(void); 532 + void* _CTServerConnectionGetPacketContextActiveByServiceTypeExtended(void); 533 + void* _CTServerConnectionGetPacketContextCount(void); 534 + void* _CTServerConnectionGetPacketContextStatistics(void); 535 + void* _CTServerConnectionGetPacketDataLoadInfo(void); 536 + void* _CTServerConnectionGetPhonebookEntryCount(void); 537 + void* _CTServerConnectionGetRATSelection(void); 538 + void* _CTServerConnectionGetRadioAccessTechnology(void); 539 + void* _CTServerConnectionGetRadioAccessTechnologyForPreferredDataSIM(void); 540 + void* _CTServerConnectionGetRadioModuleIsDead(void); 541 + void* _CTServerConnectionGetRadioState(void); 542 + void* _CTServerConnectionGetRegistrationCauseCode(void); 543 + void* _CTServerConnectionGetRegistrationStatus(void); 544 + void* _CTServerConnectionGetRemainingPINAttemptCount(void); 545 + void* _CTServerConnectionGetRemainingPUKAttemptCount(void); 546 + void* _CTServerConnectionGetRemoteBundleInfo(void); 547 + void* _CTServerConnectionGetRemoteServerURL(void); 548 + void* _CTServerConnectionGetResetCellularAccountSettingsIsAllowed(void); 549 + void* _CTServerConnectionGetResetState(void); 550 + void* _CTServerConnectionGetSIMStatus(void); 551 + void* _CTServerConnectionGetSIMTrayStatus(void); 552 + void* _CTServerConnectionGetShowUsageAlert(void); 553 + void* _CTServerConnectionGetSignalStrength(void); 554 + void* _CTServerConnectionGetSignalStrengthDisplayValue(void); 555 + void* _CTServerConnectionGetSupportedEnhancedLinkQualityMetric(void); 556 + void* _CTServerConnectionGetTTYMode(void); 557 + void* _CTServerConnectionGetTemperature(void); 558 + void* _CTServerConnectionGetTestModeFunction(void); 559 + void* _CTServerConnectionGetThumperName(void); 560 + void* _CTServerConnectionGetTypeID(void); 561 + void* _CTServerConnectionGetUIConfiguredApns(void); 562 + void* _CTServerConnectionGetUpdatedCarrierBundle(void); 563 + void* _CTServerConnectionGetUplinkFreq(void); 564 + void* _CTServerConnectionGetVoiceLinkQualityMetric(void); 565 + void* _CTServerConnectionGetVoiceMailAvailable(void); 566 + void* _CTServerConnectionGetVoiceMute(void); 567 + void* _CTServerConnectionGetVoicePrivacy(void); 568 + void* _CTServerConnectionGetXpcConnection(void); 569 + void* _CTServerConnectionHandleReply(void); 570 + void* _CTServerConnectionHideDataIndicator(void); 571 + void* _CTServerConnectionHideRatIndicator(void); 572 + void* _CTServerConnectionICloudAccountReset(void); 573 + void* _CTServerConnectionInjectCellBroadcastMessage(void); 574 + void* _CTServerConnectionInjectCellBroadcastMessageWithWac(void); 575 + void* _CTServerConnectionInstallCarrierBundle(void); 576 + void* _CTServerConnectionIsAnyCallActiveOrHeld(void); 577 + void* _CTServerConnectionIsCDMAInternationalRoamingSettingAllowed(void); 578 + void* _CTServerConnectionIsDataAttached(void); 579 + void* _CTServerConnectionIsDataAttachedForPreferredDataSIM(void); 580 + void* _CTServerConnectionIsDefaultConnection(void); 581 + void* _CTServerConnectionIsEmergencyNumber(void); 582 + void* _CTServerConnectionIsEmergencyNumberWithWhitelistIncluded(void); 583 + void* _CTServerConnectionIsEncryptedIdentitySupported(void); 584 + void* _CTServerConnectionIsInHomeCountry(void); 585 + void* _CTServerConnectionIsInHomeCountryForPreferredDataSIM(void); 586 + void* _CTServerConnectionIsPhoneNumberCredentialValid(void); 587 + void* _CTServerConnectionIsPhoneNumberRegistrationSupported(void); 588 + void* _CTServerConnectionIsServiceOverPublicInternet(void); 589 + void* _CTServerConnectionIsSilenceAssertionBarred(void); 590 + void* _CTServerConnectionIsUserIdentityModuleRequired(void); 591 + void* _CTServerConnectionIsValidEmergencyNumber(void); 592 + void* _CTServerConnectionKeepAliveAssertionCreate(void); 593 + void* _CTServerConnectionLoadManagedCellularProfile(void); 594 + void* _CTServerConnectionLockPostponementTicket(void); 595 + void* _CTServerConnectionModifyAttachAPNSettings(void); 596 + void* _CTServerConnectionNetworkMonitorCreateLogChannel(void); 597 + void* _CTServerConnectionNetworkSelectionMenuAvailable(void); 598 + void* _CTServerConnectionOTAActivationAssertionCreate(void); 599 + void* _CTServerConnectionPINUnlock(void); 600 + void* _CTServerConnectionPUKUnlock(void); 601 + void* _CTServerConnectionPacketContextAssertionCreate(void); 602 + void* _CTServerConnectionPerformInternalVinylOperation(void); 603 + void* _CTServerConnectionPerformMigration(void); 604 + void* _CTServerConnectionPhoneServicesAccountStatusChanged(void); 605 + void* _CTServerConnectionPhoneServicesAddDevice(void); 606 + void* _CTServerConnectionPhoneServicesDisableDevice(void); 607 + void* _CTServerConnectionPhoneServicesEnableDevice(void); 608 + void* _CTServerConnectionPhoneServicesGetDeviceInfo(void); 609 + void* _CTServerConnectionPhoneServicesGetDeviceList(void); 610 + void* _CTServerConnectionPhoneServicesRemoveDevice(void); 611 + void* _CTServerConnectionQueryAccountInformation(void); 612 + void* _CTServerConnectionQueryEnhancedLinkQualityMetric(void); 613 + void* _CTServerConnectionRegisterBlockForNotification(void); 614 + void* _CTServerConnectionRegisterForEvent(void); 615 + void* _CTServerConnectionRegisterForNotification(void); 616 + void* _CTServerConnectionRegisterSilentHoursCallback(void); 617 + void* _CTServerConnectionRegisterSupportedEnhancedLinkQualityMetric(void); 618 + void* _CTServerConnectionRegistrationNotificationAssertionCreate(void); 619 + void* _CTServerConnectionReleaseQOS(void); 620 + void* _CTServerConnectionRemoveVictimFreq(void); 621 + void* _CTServerConnectionRequestQOS(void); 622 + void* _CTServerConnectionResetCarrierBundle(void); 623 + void* _CTServerConnectionResetModem(void); 624 + void* _CTServerConnectionResetModemWithCrashLogs(void); 625 + void* _CTServerConnectionResetPacketContextSettings(void); 626 + void* _CTServerConnectionResetPacketContextStatistics(void); 627 + void* _CTServerConnectionResetUIConfiguredApns(void); 628 + void* _CTServerConnectionResumePacketContextSettings(void); 629 + void* _CTServerConnectionSIMToolkitDisplayReady(void); 630 + void* _CTServerConnectionSavePhonebookEntry(void); 631 + void* _CTServerConnectionSelectNetwork(void); 632 + void* _CTServerConnectionSelectPhonebook(void); 633 + void* _CTServerConnectionSelectSIMToolkitListItem(void); 634 + void* _CTServerConnectionSelectSIMToolkitMenuItem(void); 635 + void* _CTServerConnectionSendAwdQueriableMetric(void); 636 + void* _CTServerConnectionSendBarrier(void); 637 + void* _CTServerConnectionSendEnhancedLinkQualityTrafficInfo(void); 638 + void* _CTServerConnectionSendRemoteRestoreToDefault(void); 639 + void* _CTServerConnectionSendSIMToolkitBooleanResponse(void); 640 + void* _CTServerConnectionSendSIMToolkitResponse(void); 641 + void* _CTServerConnectionSendSIMToolkitStringResponse(void); 642 + void* _CTServerConnectionSendUSSDResponse(void); 643 + void* _CTServerConnectionSendUserActivity(void); 644 + void* _CTServerConnectionSetActiveAudioSystemConfiguration(void); 645 + void* _CTServerConnectionSetAudioLoggingEnabled(void); 646 + void* _CTServerConnectionSetAudioPath(void); 647 + void* _CTServerConnectionSetBandInfo(void); 648 + void* _CTServerConnectionSetBasebandSettings(void); 649 + void* _CTServerConnectionSetCDMAInternationalRoaming(void); 650 + void* _CTServerConnectionSetCampOnlyMode(void); 651 + void* _CTServerConnectionSetCapability(void); 652 + void* _CTServerConnectionSetCapabilityExtended(void); 653 + void* _CTServerConnectionSetCellBroadcastSettingForAlertType(void); 654 + void* _CTServerConnectionSetCellularDataIsDisallowed(void); 655 + void* _CTServerConnectionSetCellularDataIsEnabled(void); 656 + void* _CTServerConnectionSetCellularDataIsEnabledEx(void); 657 + void* _CTServerConnectionSetCellularUsagePolicy(void); 658 + void* _CTServerConnectionSetCellularUsagePolicyEx(void); 659 + void* _CTServerConnectionSetCellularUsagePolicyMirroring(void); 660 + void* _CTServerConnectionSetCellularUsagePolicyOsVersion(void); 661 + void* _CTServerConnectionSetChannelMute(void); 662 + void* _CTServerConnectionSetCivicInfoBasedOnCurrentLocation(void); 663 + void* _CTServerConnectionSetDTMFType(void); 664 + void* _CTServerConnectionSetDefaultConnection(void); 665 + void* _CTServerConnectionSetDisallowTelephonyFeature(void); 666 + void* _CTServerConnectionSetEMBMSActive(void); 667 + void* _CTServerConnectionSetEMBMSSAIInterestedInfo(void); 668 + void* _CTServerConnectionSetEnableOnlyHomeNetwork(void); 669 + void* _CTServerConnectionSetI2SFormat(void); 670 + void* _CTServerConnectionSetInternalManagedState(void); 671 + void* _CTServerConnectionSetInternationalDataAccessStatus(void); 672 + void* _CTServerConnectionSetMasterMute(void); 673 + void* _CTServerConnectionSetMaxAllowedDataRate(void); 674 + void* _CTServerConnectionSetMaxTemperature(void); 675 + void* _CTServerConnectionSetMaxTransmitPower(void); 676 + void* _CTServerConnectionSetMixState(void); 677 + void* _CTServerConnectionSetOTAServerOverride(void); 678 + void* _CTServerConnectionSetPacketContextActive(void); 679 + void* _CTServerConnectionSetPacketContextActiveByServiceType(void); 680 + void* _CTServerConnectionSetPacketNotificationFilter(void); 681 + void* _CTServerConnectionSetPacketProtocolActiveByInterface(void); 682 + void* _CTServerConnectionSetPacketProtocolActiveByServiceType(void); 683 + void* _CTServerConnectionSetPeriodicTemperatureUpdate(void); 684 + void* _CTServerConnectionSetPostponementTicket(void); 685 + void* _CTServerConnectionSetRATSelection(void); 686 + void* _CTServerConnectionSetReliableNetworkFallbackToCellular(void); 687 + void* _CTServerConnectionSetShowUsageAlert(void); 688 + void* _CTServerConnectionSetSourceGain(void); 689 + void* _CTServerConnectionSetTTYMode(void); 690 + void* _CTServerConnectionSetTargetQueue(void); 691 + void* _CTServerConnectionSetTestModeFunction(void); 692 + void* _CTServerConnectionSetTimeCacheValidityPeriod(void); 693 + void* _CTServerConnectionSetTraceProperty(void); 694 + void* _CTServerConnectionSetUIConfiguredApns(void); 695 + void* _CTServerConnectionSetUsageAlertParameters(void); 696 + void* _CTServerConnectionSetVibratorState(void); 697 + void* _CTServerConnectionSetVoiceMute(void); 698 + void* _CTServerConnectionShouldDiscourageDisableLteDataRate(void); 699 + void* _CTServerConnectionShouldWarnDisabledLteMayImpactService(void); 700 + void* _CTServerConnectionSilenceAssertionCreate(void); 701 + void* _CTServerConnectionSimRefresh(void); 702 + void* _CTServerConnectionStartAudioTone(void); 703 + void* _CTServerConnectionStopAudioTone(void); 704 + void* _CTServerConnectionSuspendPacketContextSettings(void); 705 + void* _CTServerConnectionTetheringAssertionCreate(void); 706 + void* _CTServerConnectionUIMAuthenticate(void); 707 + void* _CTServerConnectionUnloadManagedCellularProfile(void); 708 + void* _CTServerConnectionUnlockPostponementTicket(void); 709 + void* _CTServerConnectionUnregisterForAllNotifications(void); 710 + void* _CTServerConnectionUnregisterForEvent(void); 711 + void* _CTServerConnectionUnregisterForNotification(void); 712 + void* _CTServerConnectionUnregisterSilentHoursCallback(void); 713 + void* _CTServerConnectionUpdateAccountWithFeatureOrService(void); 714 + void* _CTServerConnectionUpdateCarrierPushToken(void); 715 + void* _CTServerConnectionUpdateProtocolQualityOfService(void); 716 + void* _CTServerConnectionUpdateQualityOfService(void); 717 + void* _CTServerConnectionVerifyCarrierEntitlements(void); 718 + void* _CTServerEnableFastDormancy(void); 719 + void* _CTServerForceFastDormancy(void); 720 + void* _CTServerIsFastDormancyEnabled(void); 721 + void* _CTServerSetSupportsVoiceCall(void); 722 + void* _ConvertBinaryToHex(void); 723 + void* _CreateDirectoriesToPath(void); 724 + void* _GetMobileUserDirectory(void); 725 + void* _GetMobileUserGID(void); 726 + void* _GetMobileUserUID(void); 727 + void* _GetWirelessUserDirectory(void); 728 + void* _GetWirelessUserGID(void); 729 + void* _GetWirelessUserUID(void); 730 + void* _SynchronizeCommCenterPreferences(void); 731 + void* _Z10asCFString24EntitlementAuthTokenType(void); 732 + void* _Z10createPLMNRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_(void); 733 + void* _Z10createPLMNii(void); 734 + void* _Z10createPLMNiib(void); 735 + void* _Z12createCFPLMNRK3MCCRK3MNC(void); 736 + void* _Z15TTYTypeAsString7TTYType(void); 737 + void* _Z17isEmergencyNumberRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(void); 738 + void* _Z18EmCallTypeAsString23CTCallEmergencyCallType(void); 739 + void* _Z22CTGetRootVersionStringv(void); 740 + void* _Z22callSourceModeAsString16CCCallSourceMode(void); 741 + void* _Z8asString20EntitlementTopicType(void); 742 + void* _Z8asString24EntitlementAuthTokenType(void); 743 + void* _Z8asStringN19NetworkNotification16NotificationTypeE(void); 744 + void* _Z8formPLMNRK3MCCRK3MNC(void); 745 + void* _ZN14CSIPhoneNumber13setBaseNumberEPKc(void); 746 + void* _ZN14CSIPhoneNumber13setBaseNumberERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 747 + void* _ZN14CSIPhoneNumber13setDtmfStringERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 748 + void* _ZN14CSIPhoneNumber15setTypeOfNumberE15PhoneNumberType(void); 749 + void* _ZN14CSIPhoneNumber16setTypeOfAddressEi(void); 750 + void* _ZN14CSIPhoneNumber19setCLIRRequestStateE16CLIRRequestState(void); 751 + void* _ZN14CSIPhoneNumber20setEmergencyCategoryEj(void); 752 + void* _ZN14CSIPhoneNumber22setIsListedAsEmergencyEb(void); 753 + void* _ZN14CSIPhoneNumber23setIsEmSMSTextSupportedEb(void); 754 + void* _ZN14CSIPhoneNumber27convertLettersToPhoneNumberEv(void); 755 + void* _ZN14CSIPhoneNumberC1EPKc(void); 756 + void* _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 757 + void* _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType(void); 758 + void* _ZN14CSIPhoneNumberC1EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 759 + void* _ZN14CSIPhoneNumberC1Ev(void); 760 + void* _ZN14CSIPhoneNumberC2EPKc(void); 761 + void* _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 762 + void* _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType(void); 763 + void* _ZN14CSIPhoneNumberC2EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 764 + void* _ZN14CSIPhoneNumberC2Ev(void); 765 + void* _ZN19NetworkNotification14_ConvertToBoolEPK10__CFStringRPKv(void); 766 + void* _ZN19NetworkNotification14_ConvertToDateEPK10__CFStringRPKv(void); 767 + void* _ZN19NetworkNotification14setValueForKeyEPK10__CFStringS2_NS_24NotificationTrackChangesE(void); 768 + void* _ZN19NetworkNotification15_GetTypeForNameEPK10__CFString(void); 769 + void* _ZN19NetworkNotification16_ConvertToNumberEPK10__CFStringRPKv(void); 770 + void* _ZN19NetworkNotification18notificationStringEv(void); 771 + void* _ZN19NetworkNotification18parsedNotificationEv(void); 772 + void* _ZN19NetworkNotification21_GetFinalFormForValueEPK10__CFStringS2_RPKv(void); 773 + void* _ZN19NetworkNotification24_parseNotificationStringEv(void); 774 + void* _ZN19NetworkNotification30_NotificationKeyIsValidForTypeEPK10__CFString(void); 775 + void* _ZN19NetworkNotification3urlEv(void); 776 + void* _ZN19NetworkNotification4nameEv(void); 777 + void* _ZN19NetworkNotification4typeEv(void); 778 + void* _ZN19NetworkNotificationC1EPK10__CFString(void); 779 + void* _ZN19NetworkNotificationC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 780 + void* _ZN19NetworkNotificationC2EPK10__CFString(void); 781 + void* _ZN19NetworkNotificationC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 782 + void* _ZN19NetworkNotificationD1Ev(void); 783 + void* _ZN19NetworkNotificationD2Ev(void); 784 + void* _ZN3MCC5clearEv(void); 785 + void* _ZN3MCCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 786 + void* _ZN3MCCC1Et(void); 787 + void* _ZN3MCCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 788 + void* _ZN3MCCC1Ev(void); 789 + void* _ZN3MCCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 790 + void* _ZN3MCCC2Et(void); 791 + void* _ZN3MCCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 792 + void* _ZN3MCCC2Ev(void); 793 + void* _ZN3MCCaSERKS_(void); 794 + void* _ZN3MNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 795 + void* _ZN3MNCC1EtRK3MCC(void); 796 + void* _ZN3MNCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 797 + void* _ZN3MNCC1Ev(void); 798 + void* _ZN3MNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 799 + void* _ZN3MNCC2EtRK3MCC(void); 800 + void* _ZN3MNCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 801 + void* _ZN3MNCC2Ev(void); 802 + void* _ZN9MCCAndMNCC1ERK3MCCRK3MNC(void); 803 + void* _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 804 + void* _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_(void); 805 + void* _ZN9MCCAndMNCC1Ett(void); 806 + void* _ZN9MCCAndMNCC1Ev(void); 807 + void* _ZN9MCCAndMNCC2ERK3MCCRK3MNC(void); 808 + void* _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 809 + void* _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_(void); 810 + void* _ZN9MCCAndMNCC2Ett(void); 811 + void* _ZN9MCCAndMNCC2Ev(void); 812 + void* _ZNK14CSIPhoneNumber12getFormattedEv(void); 813 + void* _ZNK14CSIPhoneNumber13getBaseNumberEv(void); 814 + void* _ZNK14CSIPhoneNumber13getDtmfStringEv(void); 815 + void* _ZNK14CSIPhoneNumber13getFullNumberEv(void); 816 + void* _ZNK14CSIPhoneNumber15getTypeOfNumberEv(void); 817 + void* _ZNK14CSIPhoneNumber16getTypeOfAddressEv(void); 818 + void* _ZNK14CSIPhoneNumber17hasSameBaseNumberERKS_(void); 819 + void* _ZNK14CSIPhoneNumber19getCLIRRequestStateEv(void); 820 + void* _ZNK14CSIPhoneNumber19getFullNumberHelperENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void); 821 + void* _ZNK14CSIPhoneNumber20getEmergencyCategoryEv(void); 822 + void* _ZNK14CSIPhoneNumber21getFullOriginalNumberEv(void); 823 + void* _ZNK14CSIPhoneNumber22getIsListedAsEmergencyEv(void); 824 + void* _ZNK14CSIPhoneNumber23getIsEmSMSTextSupportedEv(void); 825 + void* _ZNK14CSIPhoneNumber23hasEmergencyCategorySetEv(void); 826 + void* _ZNK14CSIPhoneNumber26getBaseNumberNoPauseDigitsEv(void); 827 + void* _ZNK14CSIPhoneNumber26getFullNumberNoPauseDigitsEv(void); 828 + void* _ZNK14CSIPhoneNumber8getIsMMIEv(void); 829 + void* _ZNK14CSIPhoneNumber9getIsUSSDEv(void); 830 + void* _ZNK14CSIPhoneNumbereqERKS_(void); 831 + void* _ZNK14CSIPhoneNumberneERKS_(void); 832 + void* _ZNK19NetworkNotification24copyUnparsedNotificationEv(void); 833 + void* _ZNK3MCC11getIntValueEv(void); 834 + void* _ZNK3MCC14getStringValueEv(void); 835 + void* _ZNK3MCC5validEv(void); 836 + void* _ZNK3MCCeqERKS_(void); 837 + void* _ZNK3MCCgtERKS_(void); 838 + void* _ZNK3MCCltERKS_(void); 839 + void* _ZNK3MCCneERKS_(void); 840 + void* _ZNK3MNC12isThreeDigitEv(void); 841 + void* _ZNK3MNC15getIntegerWidthEv(void); 842 + void* _ZNK9MCCAndMNC14getStringValueEv(void); 843 + void* _ZNK9MCCAndMNC6getMccEv(void); 844 + void* _ZNK9MCCAndMNC6getMncEv(void); 845 + void* _ZNK9MCCAndMNCeqERKS_(void); 846 + void* _ZNK9MCCAndMNCltERKS_(void); 847 + void* _ZNK9MCCAndMNCneERKS_(void); 848 + void* _ZlsRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERK9MCCAndMNC(void); 849 + void* _is3DigitMNCWithIMSI(void); 850 + void* _is3DigitMNCWithMCC(void); 851 + void* asString(void); 852 + void* createUuidBytes(void); 853 + void* getClientKeyForEntitlementType(void); 854 + void* getEntitlementTypeFromClientKey(void); 855 + void* kCTDataConnectionServiceTypeFromIndex(void); 856 + void* kCTDataConnectionTypeFromString(void); 857 + void* radioStateAsString(void); 858 + 859 + #endif
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClient.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClient : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCallDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientCallDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCapabilitiesDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientCapabilitiesDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCarrierBundleDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientCarrierBundleDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCarrierServicesDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientCarrierServicesDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientCellularUsagePolicyDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientCellularUsagePolicyDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDataDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientDataDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateProxy.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientDelegateProxy : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientDelegateProxyInterface.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientDelegateProxyInterface 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientEmergencyDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientEmergencyDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientMux.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientMux : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientPNRDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientPNRDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientRegistrationDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientRegistrationDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientRemoteAsyncProxy.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientRemoteAsyncProxy : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSMSDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientSMSDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSubscriberDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientSubscriberDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientSuppServicesDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientSuppServicesDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/CoreTelephonyClientVoicemailDelegateInternal.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 CoreTelephonyClientVoicemailDelegateInternal 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/MuxNotificationSink.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 MuxNotificationSink : NSObject 23 + 24 + @end
+24
src/frameworks/CoreTelephony/include/CoreTelephony/MuxNotificationSinkDelegate.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 MuxNotificationSinkDelegate 23 + 24 + @end
+34
src/frameworks/CoreTelephony/src/CTAppDataUsage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTAppDataUsage.h> 21 + 22 + @implementation CTAppDataUsage 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/CoreTelephony/src/CTAsciiAddress.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTAsciiAddress.h> 21 + 22 + @implementation CTAsciiAddress 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/CoreTelephony/src/CTAudioCodecInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTAudioCodecInfo.h> 21 + 22 + @implementation CTAudioCodecInfo 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/CoreTelephony/src/CTBinarySMS.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTBinarySMS.h> 21 + 22 + @implementation CTBinarySMS 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/CoreTelephony/src/CTBundle.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTBundle.h> 21 + 22 + @implementation CTBundle 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/CoreTelephony/src/CTCall.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCall.h> 21 + 22 + @implementation CTCall 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/CoreTelephony/src/CTCallCapabilities.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCallCapabilities.h> 21 + 22 + @implementation CTCallCapabilities 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/CoreTelephony/src/CTCallCenter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCallCenter.h> 21 + 22 + @implementation CTCallCenter 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/CoreTelephony/src/CTCallForwardingValue.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCallForwardingValue.h> 21 + 22 + @implementation CTCallForwardingValue 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/CoreTelephony/src/CTCarrier.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCarrier.h> 21 + 22 + @implementation CTCarrier 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/CoreTelephony/src/CTCellIdInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCellIdInfo.h> 21 + 22 + @implementation CTCellIdInfo 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/CoreTelephony/src/CTCellInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCellInfo.h> 21 + 22 + @implementation CTCellInfo 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/CoreTelephony/src/CTCellularPlanManagerCameraScanAction.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCellularPlanManagerCameraScanAction.h> 21 + 22 + @implementation CTCellularPlanManagerCameraScanAction 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/CoreTelephony/src/CTCellularPlanProvisioningRequest.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTCellularPlanProvisioningRequest.h> 21 + 22 + @implementation CTCellularPlanProvisioningRequest 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/CoreTelephony/src/CTDataConnectionAvailabilityStatus.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTDataConnectionAvailabilityStatus.h> 21 + 22 + @implementation CTDataConnectionAvailabilityStatus 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/CoreTelephony/src/CTDataConnectionStatus.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTDataConnectionStatus.h> 21 + 22 + @implementation CTDataConnectionStatus 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/CoreTelephony/src/CTDataSettings.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTDataSettings.h> 21 + 22 + @implementation CTDataSettings 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/CoreTelephony/src/CTDataStatus.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTDataStatus.h> 21 + 22 + @implementation CTDataStatus 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/CoreTelephony/src/CTDataUsage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTDataUsage.h> 21 + 22 + @implementation CTDataUsage 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/CoreTelephony/src/CTDataUsed.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTDataUsed.h> 21 + 22 + @implementation CTDataUsed 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/CoreTelephony/src/CTDeviceDataUsage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTDeviceDataUsage.h> 21 + 22 + @implementation CTDeviceDataUsage 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/CoreTelephony/src/CTEmailAddress.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTEmailAddress.h> 21 + 22 + @implementation CTEmailAddress 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/CoreTelephony/src/CTEmergencyMode.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTEmergencyMode.h> 21 + 22 + @implementation CTEmergencyMode 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/CoreTelephony/src/CTEmergencyModeResult.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTEmergencyModeResult.h> 21 + 22 + @implementation CTEmergencyModeResult 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/CoreTelephony/src/CTEncryptionStatusInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTEncryptionStatusInfo.h> 21 + 22 + @implementation CTEncryptionStatusInfo 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/CoreTelephony/src/CTEnhancedDataLinkQualityMetric.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTEnhancedDataLinkQualityMetric.h> 21 + 22 + @implementation CTEnhancedDataLinkQualityMetric 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/CoreTelephony/src/CTEnhancedLinkQualityMetric.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTEnhancedLinkQualityMetric.h> 21 + 22 + @implementation CTEnhancedLinkQualityMetric 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/CoreTelephony/src/CTIMSRegistrationStatus.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTIMSRegistrationStatus.h> 21 + 22 + @implementation CTIMSRegistrationStatus 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/CoreTelephony/src/CTIMSRegistrationTransportInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTIMSRegistrationTransportInfo.h> 21 + 22 + @implementation CTIMSRegistrationTransportInfo 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/CoreTelephony/src/CTMessage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTMessage.h> 21 + 22 + @implementation CTMessage 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/CoreTelephony/src/CTMessageCenter.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTMessageCenter.h> 21 + 22 + @implementation CTMessageCenter 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/CoreTelephony/src/CTMessagePart.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTMessagePart.h> 21 + 22 + @implementation CTMessagePart 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/CoreTelephony/src/CTMessageStatus.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTMessageStatus.h> 21 + 22 + @implementation CTMessageStatus 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/CoreTelephony/src/CTMmsEncoder.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTMmsEncoder.h> 21 + 22 + @implementation CTMmsEncoder 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/CoreTelephony/src/CTMmsRegistrationFailureInfoType.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTMmsRegistrationFailureInfoType.h> 21 + 22 + @implementation CTMmsRegistrationFailureInfoType 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/CoreTelephony/src/CTMobileEquipmentInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTMobileEquipmentInfo.h> 21 + 22 + @implementation CTMobileEquipmentInfo 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/CoreTelephony/src/CTMobileEquipmentInfoList.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTMobileEquipmentInfoList.h> 21 + 22 + @implementation CTMobileEquipmentInfoList 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/CoreTelephony/src/CTNetwork.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTNetwork.h> 21 + 22 + @implementation CTNetwork 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/CoreTelephony/src/CTNetworkList.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTNetworkList.h> 21 + 22 + @implementation CTNetworkList 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/CoreTelephony/src/CTNetworkSelectionInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTNetworkSelectionInfo.h> 21 + 22 + @implementation CTNetworkSelectionInfo 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/CoreTelephony/src/CTPNRContextInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPNRContextInfo.h> 21 + 22 + @implementation CTPNRContextInfo 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/CoreTelephony/src/CTPNRDataType.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPNRDataType.h> 21 + 22 + @implementation CTPNRDataType 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/CoreTelephony/src/CTPNRRequestSentInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPNRRequestSentInfo.h> 21 + 22 + @implementation CTPNRRequestSentInfo 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/CoreTelephony/src/CTPNRRequestType.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPNRRequestType.h> 21 + 22 + @implementation CTPNRRequestType 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/CoreTelephony/src/CTPerAppDataUsage.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPerAppDataUsage.h> 21 + 22 + @implementation CTPerAppDataUsage 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/CoreTelephony/src/CTPhoneBookEntry.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPhoneBookEntry.h> 21 + 22 + @implementation CTPhoneBookEntry 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/CoreTelephony/src/CTPhoneNumber.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPhoneNumber.h> 21 + 22 + @implementation CTPhoneNumber 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/CoreTelephony/src/CTPhoneNumberInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPhoneNumberInfo.h> 21 + 22 + @implementation CTPhoneNumberInfo 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/CoreTelephony/src/CTPriVersion.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTPriVersion.h> 21 + 22 + @implementation CTPriVersion 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/CoreTelephony/src/CTRadioAccessTechnology.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTRadioAccessTechnology.h> 21 + 22 + @implementation CTRadioAccessTechnology 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/CoreTelephony/src/CTRegistrationDisplayStatus.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTRegistrationDisplayStatus.h> 21 + 22 + @implementation CTRegistrationDisplayStatus 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/CoreTelephony/src/CTSMSDataType.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSMSDataType.h> 21 + 22 + @implementation CTSMSDataType 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/CoreTelephony/src/CTServiceDescriptor.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTServiceDescriptor.h> 21 + 22 + @implementation CTServiceDescriptor 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/CoreTelephony/src/CTServiceDescriptorContainer.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTServiceDescriptorContainer.h> 21 + 22 + @implementation CTServiceDescriptorContainer 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/CoreTelephony/src/CTSignalStrengthInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSignalStrengthInfo.h> 21 + 22 + @implementation CTSignalStrengthInfo 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/CoreTelephony/src/CTSignalStrengthMeasurements.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSignalStrengthMeasurements.h> 21 + 22 + @implementation CTSignalStrengthMeasurements 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/CoreTelephony/src/CTSimLabel.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSimLabel.h> 21 + 22 + @implementation CTSimLabel 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/CoreTelephony/src/CTSubscriberAlgorithm.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSubscriberAlgorithm.h> 21 + 22 + @implementation CTSubscriberAlgorithm 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/CoreTelephony/src/CTSubscriberAlgorithmEAPAKA.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSubscriberAlgorithmEAPAKA.h> 21 + 22 + @implementation CTSubscriberAlgorithmEAPAKA 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/CoreTelephony/src/CTSubscriberAlgorithmEAPSIM.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSubscriberAlgorithmEAPSIM.h> 21 + 22 + @implementation CTSubscriberAlgorithmEAPSIM 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/CoreTelephony/src/CTSubscriberAuthDataHolder.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSubscriberAuthDataHolder.h> 21 + 22 + @implementation CTSubscriberAuthDataHolder 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/CoreTelephony/src/CTSubscriberAuthRequest.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSubscriberAuthRequest.h> 21 + 22 + @implementation CTSubscriberAuthRequest 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/CoreTelephony/src/CTSubscriberAuthResult.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSubscriberAuthResult.h> 21 + 22 + @implementation CTSubscriberAuthResult 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/CoreTelephony/src/CTSubscriberInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSubscriberInfo.h> 21 + 22 + @implementation CTSubscriberInfo 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/CoreTelephony/src/CTSuppServicesNotificationData.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSuppServicesNotificationData.h> 21 + 22 + @implementation CTSuppServicesNotificationData 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/CoreTelephony/src/CTSupportedMaxDataRates.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTSupportedMaxDataRates.h> 21 + 22 + @implementation CTSupportedMaxDataRates 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/CoreTelephony/src/CTTelephonyNetworkInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTTelephonyNetworkInfo.h> 21 + 22 + @implementation CTTelephonyNetworkInfo 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/CoreTelephony/src/CTVoiceLinkQualityMetric.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTVoiceLinkQualityMetric.h> 21 + 22 + @implementation CTVoiceLinkQualityMetric 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/CoreTelephony/src/CTVoicemailInfoType.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTVoicemailInfoType.h> 21 + 22 + @implementation CTVoicemailInfoType 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/CoreTelephony/src/CTXPCContextInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTXPCContextInfo.h> 21 + 22 + @implementation CTXPCContextInfo 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/CoreTelephony/src/CTXPCContexts.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTXPCContexts.h> 21 + 22 + @implementation CTXPCContexts 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/CoreTelephony/src/CTXPCError.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTXPCError.h> 21 + 22 + @implementation CTXPCError 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/CoreTelephony/src/CTXPCServiceSubscriptionContext.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTXPCServiceSubscriptionContext.h> 21 + 22 + @implementation CTXPCServiceSubscriptionContext 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/CoreTelephony/src/CTXPCServiceSubscriptionInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTXPCServiceSubscriptionInfo.h> 21 + 22 + @implementation CTXPCServiceSubscriptionInfo 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/CoreTelephony/src/CTXPCSimLessContextInfo.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTXPCSimLessContextInfo.h> 21 + 22 + @implementation CTXPCSimLessContextInfo 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/CoreTelephony/src/CTXPCSimLessContexts.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CTXPCSimLessContexts.h> 21 + 22 + @implementation CTXPCSimLessContexts 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
+4290
src/frameworks/CoreTelephony/src/CoreTelephony.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CoreTelephony.h> 22 + #include <stdlib.h> 23 + #include <stdio.h> 24 + 25 + static int verbose = 0; 26 + 27 + __attribute__((constructor)) 28 + static void initme(void) { 29 + verbose = getenv("STUB_VERBOSE") != NULL; 30 + } 31 + 32 + void* CTCallAddressBlocked(void) 33 + { 34 + if (verbose) puts("STUB: CTCallAddressBlocked called"); 35 + return NULL; 36 + } 37 + 38 + void* CTCallAnswer(void) 39 + { 40 + if (verbose) puts("STUB: CTCallAnswer called"); 41 + return NULL; 42 + } 43 + 44 + void* CTCallAnswerEndingActive(void) 45 + { 46 + if (verbose) puts("STUB: CTCallAnswerEndingActive called"); 47 + return NULL; 48 + } 49 + 50 + void* CTCallAnswerEndingActiveWithSourceIdentifier(void) 51 + { 52 + if (verbose) puts("STUB: CTCallAnswerEndingActiveWithSourceIdentifier called"); 53 + return NULL; 54 + } 55 + 56 + void* CTCallAnswerEndingHeld(void) 57 + { 58 + if (verbose) puts("STUB: CTCallAnswerEndingHeld called"); 59 + return NULL; 60 + } 61 + 62 + void* CTCallAnswerWithOptions(void) 63 + { 64 + if (verbose) puts("STUB: CTCallAnswerWithOptions called"); 65 + return NULL; 66 + } 67 + 68 + void* CTCallAnswerWithSourceIdentifier(void) 69 + { 70 + if (verbose) puts("STUB: CTCallAnswerWithSourceIdentifier called"); 71 + return NULL; 72 + } 73 + 74 + void* CTCallCopyAddress(void) 75 + { 76 + if (verbose) puts("STUB: CTCallCopyAddress called"); 77 + return NULL; 78 + } 79 + 80 + void* CTCallCopyCountryCode(void) 81 + { 82 + if (verbose) puts("STUB: CTCallCopyCountryCode called"); 83 + return NULL; 84 + } 85 + 86 + void* CTCallCopyISOCountryCode(void) 87 + { 88 + if (verbose) puts("STUB: CTCallCopyISOCountryCode called"); 89 + return NULL; 90 + } 91 + 92 + void* CTCallCopyName(void) 93 + { 94 + if (verbose) puts("STUB: CTCallCopyName called"); 95 + return NULL; 96 + } 97 + 98 + void* CTCallCopyNetworkCode(void) 99 + { 100 + if (verbose) puts("STUB: CTCallCopyNetworkCode called"); 101 + return NULL; 102 + } 103 + 104 + void* CTCallCopyUUID(void) 105 + { 106 + if (verbose) puts("STUB: CTCallCopyUUID called"); 107 + return NULL; 108 + } 109 + 110 + void* CTCallCopyUniqueStringID(void) 111 + { 112 + if (verbose) puts("STUB: CTCallCopyUniqueStringID called"); 113 + return NULL; 114 + } 115 + 116 + void* CTCallCreateCallRef(void) 117 + { 118 + if (verbose) puts("STUB: CTCallCreateCallRef called"); 119 + return NULL; 120 + } 121 + 122 + void* CTCallCreateFromSerializedData(void) 123 + { 124 + if (verbose) puts("STUB: CTCallCreateFromSerializedData called"); 125 + return NULL; 126 + } 127 + 128 + void* CTCallDial(void) 129 + { 130 + if (verbose) puts("STUB: CTCallDial called"); 131 + return NULL; 132 + } 133 + 134 + void* CTCallDialAny(void) 135 + { 136 + if (verbose) puts("STUB: CTCallDialAny called"); 137 + return NULL; 138 + } 139 + 140 + void* CTCallDialEmergency(void) 141 + { 142 + if (verbose) puts("STUB: CTCallDialEmergency called"); 143 + return NULL; 144 + } 145 + 146 + void* CTCallDialService(void) 147 + { 148 + if (verbose) puts("STUB: CTCallDialService called"); 149 + return NULL; 150 + } 151 + 152 + void* CTCallDialVoicemail(void) 153 + { 154 + if (verbose) puts("STUB: CTCallDialVoicemail called"); 155 + return NULL; 156 + } 157 + 158 + void* CTCallDialWithAssist(void) 159 + { 160 + if (verbose) puts("STUB: CTCallDialWithAssist called"); 161 + return NULL; 162 + } 163 + 164 + void* CTCallDialWithID(void) 165 + { 166 + if (verbose) puts("STUB: CTCallDialWithID called"); 167 + return NULL; 168 + } 169 + 170 + void* CTCallDialWithIDAndSourceIdentifier(void) 171 + { 172 + if (verbose) puts("STUB: CTCallDialWithIDAndSourceIdentifier called"); 173 + return NULL; 174 + } 175 + 176 + void* CTCallDialWithOptions(void) 177 + { 178 + if (verbose) puts("STUB: CTCallDialWithOptions called"); 179 + return NULL; 180 + } 181 + 182 + void* CTCallDialWithSourceIdentifier(void) 183 + { 184 + if (verbose) puts("STUB: CTCallDialWithSourceIdentifier called"); 185 + return NULL; 186 + } 187 + 188 + void* CTCallDidDeviceOriginateEnd(void) 189 + { 190 + if (verbose) puts("STUB: CTCallDidDeviceOriginateEnd called"); 191 + return NULL; 192 + } 193 + 194 + void* CTCallDisconnect(void) 195 + { 196 + if (verbose) puts("STUB: CTCallDisconnect called"); 197 + return NULL; 198 + } 199 + 200 + void* CTCallDisconnectWithCauseCode(void) 201 + { 202 + if (verbose) puts("STUB: CTCallDisconnectWithCauseCode called"); 203 + return NULL; 204 + } 205 + 206 + void* CTCallEndVideoConference(void) 207 + { 208 + if (verbose) puts("STUB: CTCallEndVideoConference called"); 209 + return NULL; 210 + } 211 + 212 + void* CTCallGetCallSubType(void) 213 + { 214 + if (verbose) puts("STUB: CTCallGetCallSubType called"); 215 + return NULL; 216 + } 217 + 218 + void* CTCallGetCallType(void) 219 + { 220 + if (verbose) puts("STUB: CTCallGetCallType called"); 221 + return NULL; 222 + } 223 + 224 + void* CTCallGetCauseCode(void) 225 + { 226 + if (verbose) puts("STUB: CTCallGetCauseCode called"); 227 + return NULL; 228 + } 229 + 230 + void* CTCallGetCauseCodeString(void) 231 + { 232 + if (verbose) puts("STUB: CTCallGetCauseCodeString called"); 233 + return NULL; 234 + } 235 + 236 + void* CTCallGetDuration(void) 237 + { 238 + if (verbose) puts("STUB: CTCallGetDuration called"); 239 + return NULL; 240 + } 241 + 242 + void* CTCallGetEmergencyStatus(void) 243 + { 244 + if (verbose) puts("STUB: CTCallGetEmergencyStatus called"); 245 + return NULL; 246 + } 247 + 248 + void* CTCallGetMultiPartyCallCountMax(void) 249 + { 250 + if (verbose) puts("STUB: CTCallGetMultiPartyCallCountMax called"); 251 + return NULL; 252 + } 253 + 254 + void* CTCallGetStartTime(void) 255 + { 256 + if (verbose) puts("STUB: CTCallGetStartTime called"); 257 + return NULL; 258 + } 259 + 260 + void* CTCallGetStatus(void) 261 + { 262 + if (verbose) puts("STUB: CTCallGetStatus called"); 263 + return NULL; 264 + } 265 + 266 + void* CTCallGetTypeID(void) 267 + { 268 + if (verbose) puts("STUB: CTCallGetTypeID called"); 269 + return NULL; 270 + } 271 + 272 + void* CTCallHold(void) 273 + { 274 + if (verbose) puts("STUB: CTCallHold called"); 275 + return NULL; 276 + } 277 + 278 + void* CTCallIsAlerting(void) 279 + { 280 + if (verbose) puts("STUB: CTCallIsAlerting called"); 281 + return NULL; 282 + } 283 + 284 + void* CTCallIsCallHandoffPossible(void) 285 + { 286 + if (verbose) puts("STUB: CTCallIsCallHandoffPossible called"); 287 + return NULL; 288 + } 289 + 290 + void* CTCallIsConferenced(void) 291 + { 292 + if (verbose) puts("STUB: CTCallIsConferenced called"); 293 + return NULL; 294 + } 295 + 296 + void* CTCallIsOutgoing(void) 297 + { 298 + if (verbose) puts("STUB: CTCallIsOutgoing called"); 299 + return NULL; 300 + } 301 + 302 + void* CTCallIsToVoicemail(void) 303 + { 304 + if (verbose) puts("STUB: CTCallIsToVoicemail called"); 305 + return NULL; 306 + } 307 + 308 + void* CTCallIsWaiting(void) 309 + { 310 + if (verbose) puts("STUB: CTCallIsWaiting called"); 311 + return NULL; 312 + } 313 + 314 + void* CTCallJoinConference(void) 315 + { 316 + if (verbose) puts("STUB: CTCallJoinConference called"); 317 + return NULL; 318 + } 319 + 320 + void* CTCallLeaveConference(void) 321 + { 322 + if (verbose) puts("STUB: CTCallLeaveConference called"); 323 + return NULL; 324 + } 325 + 326 + void* CTCallListDisconnect(void) 327 + { 328 + if (verbose) puts("STUB: CTCallListDisconnect called"); 329 + return NULL; 330 + } 331 + 332 + void* CTCallListDisconnectAll(void) 333 + { 334 + if (verbose) puts("STUB: CTCallListDisconnectAll called"); 335 + return NULL; 336 + } 337 + 338 + void* CTCallMediaStatusIsActive(void) 339 + { 340 + if (verbose) puts("STUB: CTCallMediaStatusIsActive called"); 341 + return NULL; 342 + } 343 + 344 + void* CTCallPhoneNumberIsMmiOrUssd(void) 345 + { 346 + if (verbose) puts("STUB: CTCallPhoneNumberIsMmiOrUssd called"); 347 + return NULL; 348 + } 349 + 350 + void* CTCallPullCallFromOtherDevice(void) 351 + { 352 + if (verbose) puts("STUB: CTCallPullCallFromOtherDevice called"); 353 + return NULL; 354 + } 355 + 356 + void* CTCallResume(void) 357 + { 358 + if (verbose) puts("STUB: CTCallResume called"); 359 + return NULL; 360 + } 361 + 362 + void* CTCallSetCallEndTime(void) 363 + { 364 + if (verbose) puts("STUB: CTCallSetCallEndTime called"); 365 + return NULL; 366 + } 367 + 368 + void* CTCallSetCallInfo(void) 369 + { 370 + if (verbose) puts("STUB: CTCallSetCallInfo called"); 371 + return NULL; 372 + } 373 + 374 + void* CTCallSetCallStartTime(void) 375 + { 376 + if (verbose) puts("STUB: CTCallSetCallStartTime called"); 377 + return NULL; 378 + } 379 + 380 + void* CTCallSetCallStatus(void) 381 + { 382 + if (verbose) puts("STUB: CTCallSetCallStatus called"); 383 + return NULL; 384 + } 385 + 386 + void* CTCallShouldPlayAudioTone(void) 387 + { 388 + if (verbose) puts("STUB: CTCallShouldPlayAudioTone called"); 389 + return NULL; 390 + } 391 + 392 + void* CTCallShouldSetupAudioInterruption(void) 393 + { 394 + if (verbose) puts("STUB: CTCallShouldSetupAudioInterruption called"); 395 + return NULL; 396 + } 397 + 398 + void* CTCallStartVideoConference(void) 399 + { 400 + if (verbose) puts("STUB: CTCallStartVideoConference called"); 401 + return NULL; 402 + } 403 + 404 + void* CTCallSwap(void) 405 + { 406 + if (verbose) puts("STUB: CTCallSwap called"); 407 + return NULL; 408 + } 409 + 410 + void* CTCallSwitchCallSource(void) 411 + { 412 + if (verbose) puts("STUB: CTCallSwitchCallSource called"); 413 + return NULL; 414 + } 415 + 416 + void* CTCallSwitchCallSourceAll(void) 417 + { 418 + if (verbose) puts("STUB: CTCallSwitchCallSourceAll called"); 419 + return NULL; 420 + } 421 + 422 + void* CTCellularDataPlanAccountUpdated(void) 423 + { 424 + if (verbose) puts("STUB: CTCellularDataPlanAccountUpdated called"); 425 + return NULL; 426 + } 427 + 428 + void* CTCellularDataPlanActivationFailed(void) 429 + { 430 + if (verbose) puts("STUB: CTCellularDataPlanActivationFailed called"); 431 + return NULL; 432 + } 433 + 434 + void* CTCellularDataPlanCopyAccountUrlString(void) 435 + { 436 + if (verbose) puts("STUB: CTCellularDataPlanCopyAccountUrlString called"); 437 + return NULL; 438 + } 439 + 440 + void* CTCellularDataPlanCopyDeviceInfo(void) 441 + { 442 + if (verbose) puts("STUB: CTCellularDataPlanCopyDeviceInfo called"); 443 + return NULL; 444 + } 445 + 446 + void* CTCellularDataPlanGetIsEnabled(void) 447 + { 448 + if (verbose) puts("STUB: CTCellularDataPlanGetIsEnabled called"); 449 + return NULL; 450 + } 451 + 452 + void* CTCellularDataPlanSetIsEnabled(void) 453 + { 454 + if (verbose) puts("STUB: CTCellularDataPlanSetIsEnabled called"); 455 + return NULL; 456 + } 457 + 458 + void* CTCellularDataPlanSetWebsheetVisibility(void) 459 + { 460 + if (verbose) puts("STUB: CTCellularDataPlanSetWebsheetVisibility called"); 461 + return NULL; 462 + } 463 + 464 + void* CTCopyCallManagementState(void) 465 + { 466 + if (verbose) puts("STUB: CTCopyCallManagementState called"); 467 + return NULL; 468 + } 469 + 470 + void* CTCopyCurrentCalls(void) 471 + { 472 + if (verbose) puts("STUB: CTCopyCurrentCalls called"); 473 + return NULL; 474 + } 475 + 476 + void* CTCopyCurrentCallsWithTypes(void) 477 + { 478 + if (verbose) puts("STUB: CTCopyCurrentCallsWithTypes called"); 479 + return NULL; 480 + } 481 + 482 + void* CTCreateCallInfoForHandoffCall(void) 483 + { 484 + if (verbose) puts("STUB: CTCreateCallInfoForHandoffCall called"); 485 + return NULL; 486 + } 487 + 488 + void* CTDTMFCancelHardPause(void) 489 + { 490 + if (verbose) puts("STUB: CTDTMFCancelHardPause called"); 491 + return NULL; 492 + } 493 + 494 + void* CTDTMFCopyHardPauseDigits(void) 495 + { 496 + if (verbose) puts("STUB: CTDTMFCopyHardPauseDigits called"); 497 + return NULL; 498 + } 499 + 500 + void* CTDTMFPlayStart(void) 501 + { 502 + if (verbose) puts("STUB: CTDTMFPlayStart called"); 503 + return NULL; 504 + } 505 + 506 + void* CTDTMFPlayStop(void) 507 + { 508 + if (verbose) puts("STUB: CTDTMFPlayStop called"); 509 + return NULL; 510 + } 511 + 512 + void* CTDTMFSendDigitsNow(void) 513 + { 514 + if (verbose) puts("STUB: CTDTMFSendDigitsNow called"); 515 + return NULL; 516 + } 517 + 518 + void* CTDataRateAsString(void) 519 + { 520 + if (verbose) puts("STUB: CTDataRateAsString called"); 521 + return NULL; 522 + } 523 + 524 + void* CTEmergencyModeTypeAsString(void) 525 + { 526 + if (verbose) puts("STUB: CTEmergencyModeTypeAsString called"); 527 + return NULL; 528 + } 529 + 530 + void* CTEnhancedLQMIndicationTypeAsString(void) 531 + { 532 + if (verbose) puts("STUB: CTEnhancedLQMIndicationTypeAsString called"); 533 + return NULL; 534 + } 535 + 536 + void* CTEsimCapabilityAsString(void) 537 + { 538 + if (verbose) puts("STUB: CTEsimCapabilityAsString called"); 539 + return NULL; 540 + } 541 + 542 + void* CTGetCurrentCallCount(void) 543 + { 544 + if (verbose) puts("STUB: CTGetCurrentCallCount called"); 545 + return NULL; 546 + } 547 + 548 + void* CTGetCurrentCallCountWithTypes(void) 549 + { 550 + if (verbose) puts("STUB: CTGetCurrentCallCountWithTypes called"); 551 + return NULL; 552 + } 553 + 554 + void* CTGetEmergencyWiFiConfig(void) 555 + { 556 + if (verbose) puts("STUB: CTGetEmergencyWiFiConfig called"); 557 + return NULL; 558 + } 559 + 560 + void* CTGetSignalStrength(void) 561 + { 562 + if (verbose) puts("STUB: CTGetSignalStrength called"); 563 + return NULL; 564 + } 565 + 566 + void* CTIndicatorsCopyVoicemailStatus(void) 567 + { 568 + if (verbose) puts("STUB: CTIndicatorsCopyVoicemailStatus called"); 569 + return NULL; 570 + } 571 + 572 + void* CTIndicatorsGetSignalStrength(void) 573 + { 574 + if (verbose) puts("STUB: CTIndicatorsGetSignalStrength called"); 575 + return NULL; 576 + } 577 + 578 + void* CTNetworkSelectionModeAsString(void) 579 + { 580 + if (verbose) puts("STUB: CTNetworkSelectionModeAsString called"); 581 + return NULL; 582 + } 583 + 584 + void* CTNetworkSelectionStateAsString(void) 585 + { 586 + if (verbose) puts("STUB: CTNetworkSelectionStateAsString called"); 587 + return NULL; 588 + } 589 + 590 + void* CTRegistrationAutomaticallySelectNetwork(void) 591 + { 592 + if (verbose) puts("STUB: CTRegistrationAutomaticallySelectNetwork called"); 593 + return NULL; 594 + } 595 + 596 + void* CTRegistrationCellularDataPlanAccountUpdated(void) 597 + { 598 + if (verbose) puts("STUB: CTRegistrationCellularDataPlanAccountUpdated called"); 599 + return NULL; 600 + } 601 + 602 + void* CTRegistrationCopyAbbreviatedOperatorName(void) 603 + { 604 + if (verbose) puts("STUB: CTRegistrationCopyAbbreviatedOperatorName called"); 605 + return NULL; 606 + } 607 + 608 + void* CTRegistrationCopyDataStatus(void) 609 + { 610 + if (verbose) puts("STUB: CTRegistrationCopyDataStatus called"); 611 + return NULL; 612 + } 613 + 614 + void* CTRegistrationCopyISOCountryCodeForMobileCountryCode(void) 615 + { 616 + if (verbose) puts("STUB: CTRegistrationCopyISOCountryCodeForMobileCountryCode called"); 617 + return NULL; 618 + } 619 + 620 + void* CTRegistrationCopyLocalizedOperatorName(void) 621 + { 622 + if (verbose) puts("STUB: CTRegistrationCopyLocalizedOperatorName called"); 623 + return NULL; 624 + } 625 + 626 + void* CTRegistrationCopyManualNetworkSelection(void) 627 + { 628 + if (verbose) puts("STUB: CTRegistrationCopyManualNetworkSelection called"); 629 + return NULL; 630 + } 631 + 632 + void* CTRegistrationCopyOperatorName(void) 633 + { 634 + if (verbose) puts("STUB: CTRegistrationCopyOperatorName called"); 635 + return NULL; 636 + } 637 + 638 + void* CTRegistrationCopySupportedDataRates(void) 639 + { 640 + if (verbose) puts("STUB: CTRegistrationCopySupportedDataRates called"); 641 + return NULL; 642 + } 643 + 644 + void* CTRegistrationDataCounterGetLastResetTime(void) 645 + { 646 + if (verbose) puts("STUB: CTRegistrationDataCounterGetLastResetTime called"); 647 + return NULL; 648 + } 649 + 650 + void* CTRegistrationGetCDMAInternationalRoaming(void) 651 + { 652 + if (verbose) puts("STUB: CTRegistrationGetCDMAInternationalRoaming called"); 653 + return NULL; 654 + } 655 + 656 + void* CTRegistrationGetCurrentMaxAllowedDataRate(void) 657 + { 658 + if (verbose) puts("STUB: CTRegistrationGetCurrentMaxAllowedDataRate called"); 659 + return NULL; 660 + } 661 + 662 + void* CTRegistrationGetDataAttached(void) 663 + { 664 + if (verbose) puts("STUB: CTRegistrationGetDataAttached called"); 665 + return NULL; 666 + } 667 + 668 + void* CTRegistrationGetDataContextActive(void) 669 + { 670 + if (verbose) puts("STUB: CTRegistrationGetDataContextActive called"); 671 + return NULL; 672 + } 673 + 674 + void* CTRegistrationGetDataIndicator(void) 675 + { 676 + if (verbose) puts("STUB: CTRegistrationGetDataIndicator called"); 677 + return NULL; 678 + } 679 + 680 + void* CTRegistrationGetEULocalBreakOutEnabled(void) 681 + { 682 + if (verbose) puts("STUB: CTRegistrationGetEULocalBreakOutEnabled called"); 683 + return NULL; 684 + } 685 + 686 + void* CTRegistrationGetEmergencyCallBackMode(void) 687 + { 688 + if (verbose) puts("STUB: CTRegistrationGetEmergencyCallBackMode called"); 689 + return NULL; 690 + } 691 + 692 + void* CTRegistrationGetInternationalDataAccessStatus(void) 693 + { 694 + if (verbose) puts("STUB: CTRegistrationGetInternationalDataAccessStatus called"); 695 + return NULL; 696 + } 697 + 698 + void* CTRegistrationGetNetworkSelectionMode(void) 699 + { 700 + if (verbose) puts("STUB: CTRegistrationGetNetworkSelectionMode called"); 701 + return NULL; 702 + } 703 + 704 + void* CTRegistrationGetNetworkSelectionState(void) 705 + { 706 + if (verbose) puts("STUB: CTRegistrationGetNetworkSelectionState called"); 707 + return NULL; 708 + } 709 + 710 + void* CTRegistrationGetStatus(void) 711 + { 712 + if (verbose) puts("STUB: CTRegistrationGetStatus called"); 713 + return NULL; 714 + } 715 + 716 + void* CTRegistrationIsCDMAInternationalRoamingSettingAllowed(void) 717 + { 718 + if (verbose) puts("STUB: CTRegistrationIsCDMAInternationalRoamingSettingAllowed called"); 719 + return NULL; 720 + } 721 + 722 + void* CTRegistrationIsEULocalBreakOutAvailable(void) 723 + { 724 + if (verbose) puts("STUB: CTRegistrationIsEULocalBreakOutAvailable called"); 725 + return NULL; 726 + } 727 + 728 + void* CTRegistrationIsInE911OverLTEMode(void) 729 + { 730 + if (verbose) puts("STUB: CTRegistrationIsInE911OverLTEMode called"); 731 + return NULL; 732 + } 733 + 734 + void* CTRegistrationManuallySelectNetwork(void) 735 + { 736 + if (verbose) puts("STUB: CTRegistrationManuallySelectNetwork called"); 737 + return NULL; 738 + } 739 + 740 + void* CTRegistrationNetworkSelectionMenuAvailable(void) 741 + { 742 + if (verbose) puts("STUB: CTRegistrationNetworkSelectionMenuAvailable called"); 743 + return NULL; 744 + } 745 + 746 + void* CTRegistrationRequestNetworkList(void) 747 + { 748 + if (verbose) puts("STUB: CTRegistrationRequestNetworkList called"); 749 + return NULL; 750 + } 751 + 752 + void* CTRegistrationSetCDMAInternationalRoaming(void) 753 + { 754 + if (verbose) puts("STUB: CTRegistrationSetCDMAInternationalRoaming called"); 755 + return NULL; 756 + } 757 + 758 + void* CTRegistrationSetDataContextActive(void) 759 + { 760 + if (verbose) puts("STUB: CTRegistrationSetDataContextActive called"); 761 + return NULL; 762 + } 763 + 764 + void* CTRegistrationSetEULocalBreakOutEnabled(void) 765 + { 766 + if (verbose) puts("STUB: CTRegistrationSetEULocalBreakOutEnabled called"); 767 + return NULL; 768 + } 769 + 770 + void* CTRegistrationSetInternationalDataAccessStatus(void) 771 + { 772 + if (verbose) puts("STUB: CTRegistrationSetInternationalDataAccessStatus called"); 773 + return NULL; 774 + } 775 + 776 + void* CTSIMSupportCopyMobileSubscriberCountryCode(void) 777 + { 778 + if (verbose) puts("STUB: CTSIMSupportCopyMobileSubscriberCountryCode called"); 779 + return NULL; 780 + } 781 + 782 + void* CTSIMSupportCopyMobileSubscriberIdentity(void) 783 + { 784 + if (verbose) puts("STUB: CTSIMSupportCopyMobileSubscriberIdentity called"); 785 + return NULL; 786 + } 787 + 788 + void* CTSIMSupportCopyMobileSubscriberNetworkCode(void) 789 + { 790 + if (verbose) puts("STUB: CTSIMSupportCopyMobileSubscriberNetworkCode called"); 791 + return NULL; 792 + } 793 + 794 + void* CTSIMSupportGetRemainingPINAttempts(void) 795 + { 796 + if (verbose) puts("STUB: CTSIMSupportGetRemainingPINAttempts called"); 797 + return NULL; 798 + } 799 + 800 + void* CTSIMSupportGetRemainingPUKAttempts(void) 801 + { 802 + if (verbose) puts("STUB: CTSIMSupportGetRemainingPUKAttempts called"); 803 + return NULL; 804 + } 805 + 806 + void* CTSIMSupportGetSIMStatus(void) 807 + { 808 + if (verbose) puts("STUB: CTSIMSupportGetSIMStatus called"); 809 + return NULL; 810 + } 811 + 812 + void* CTSIMSupportPINUnlock(void) 813 + { 814 + if (verbose) puts("STUB: CTSIMSupportPINUnlock called"); 815 + return NULL; 816 + } 817 + 818 + void* CTSIMSupportPUKUnlock(void) 819 + { 820 + if (verbose) puts("STUB: CTSIMSupportPUKUnlock called"); 821 + return NULL; 822 + } 823 + 824 + void* CTServerConnectionDualSimCapabilityAsString(void) 825 + { 826 + if (verbose) puts("STUB: CTServerConnectionDualSimCapabilityAsString called"); 827 + return NULL; 828 + } 829 + 830 + void* CTSettingCopyDualIPBringUp(void) 831 + { 832 + if (verbose) puts("STUB: CTSettingCopyDualIPBringUp called"); 833 + return NULL; 834 + } 835 + 836 + void* CTSettingCopyEPDGAddress(void) 837 + { 838 + if (verbose) puts("STUB: CTSettingCopyEPDGAddress called"); 839 + return NULL; 840 + } 841 + 842 + void* CTSettingCopyEffectiveSimInfo(void) 843 + { 844 + if (verbose) puts("STUB: CTSettingCopyEffectiveSimInfo called"); 845 + return NULL; 846 + } 847 + 848 + void* CTSettingCopyFakePrimaryDNSKey(void) 849 + { 850 + if (verbose) puts("STUB: CTSettingCopyFakePrimaryDNSKey called"); 851 + return NULL; 852 + } 853 + 854 + void* CTSettingCopyFakeSecondaryDNSKey(void) 855 + { 856 + if (verbose) puts("STUB: CTSettingCopyFakeSecondaryDNSKey called"); 857 + return NULL; 858 + } 859 + 860 + void* CTSettingCopyMyPhoneNumber(void) 861 + { 862 + if (verbose) puts("STUB: CTSettingCopyMyPhoneNumber called"); 863 + return NULL; 864 + } 865 + 866 + void* CTSettingCopyMyPhoneNumberExtended(void) 867 + { 868 + if (verbose) puts("STUB: CTSettingCopyMyPhoneNumberExtended called"); 869 + return NULL; 870 + } 871 + 872 + void* CTSettingCopyPCSCFAddress(void) 873 + { 874 + if (verbose) puts("STUB: CTSettingCopyPCSCFAddress called"); 875 + return NULL; 876 + } 877 + 878 + void* CTSettingCopyShowVoLTEStatusIndicator(void) 879 + { 880 + if (verbose) puts("STUB: CTSettingCopyShowVoLTEStatusIndicator called"); 881 + return NULL; 882 + } 883 + 884 + void* CTSettingCopyVerifyAPN(void) 885 + { 886 + if (verbose) puts("STUB: CTSettingCopyVerifyAPN called"); 887 + return NULL; 888 + } 889 + 890 + void* CTSettingCopyVerifyCarrierBundles(void) 891 + { 892 + if (verbose) puts("STUB: CTSettingCopyVerifyCarrierBundles called"); 893 + return NULL; 894 + } 895 + 896 + void* CTSettingCopyWiFiCallingInCallHandover(void) 897 + { 898 + if (verbose) puts("STUB: CTSettingCopyWiFiCallingInCallHandover called"); 899 + return NULL; 900 + } 901 + 902 + void* CTSettingRequest(void) 903 + { 904 + if (verbose) puts("STUB: CTSettingRequest called"); 905 + return NULL; 906 + } 907 + 908 + void* CTSettingSave(void) 909 + { 910 + if (verbose) puts("STUB: CTSettingSave called"); 911 + return NULL; 912 + } 913 + 914 + void* CTSettingSetDualIPBringUp(void) 915 + { 916 + if (verbose) puts("STUB: CTSettingSetDualIPBringUp called"); 917 + return NULL; 918 + } 919 + 920 + void* CTSettingSetEPDGAddress(void) 921 + { 922 + if (verbose) puts("STUB: CTSettingSetEPDGAddress called"); 923 + return NULL; 924 + } 925 + 926 + void* CTSettingSetFakePrimaryDNSKey(void) 927 + { 928 + if (verbose) puts("STUB: CTSettingSetFakePrimaryDNSKey called"); 929 + return NULL; 930 + } 931 + 932 + void* CTSettingSetFakeSecondaryDNSKey(void) 933 + { 934 + if (verbose) puts("STUB: CTSettingSetFakeSecondaryDNSKey called"); 935 + return NULL; 936 + } 937 + 938 + void* CTSettingSetIMSIOverride(void) 939 + { 940 + if (verbose) puts("STUB: CTSettingSetIMSIOverride called"); 941 + return NULL; 942 + } 943 + 944 + void* CTSettingSetPCSCFAddress(void) 945 + { 946 + if (verbose) puts("STUB: CTSettingSetPCSCFAddress called"); 947 + return NULL; 948 + } 949 + 950 + void* CTSettingSetShowVoLTEStatusIndicator(void) 951 + { 952 + if (verbose) puts("STUB: CTSettingSetShowVoLTEStatusIndicator called"); 953 + return NULL; 954 + } 955 + 956 + void* CTSettingSetVerifyAPN(void) 957 + { 958 + if (verbose) puts("STUB: CTSettingSetVerifyAPN called"); 959 + return NULL; 960 + } 961 + 962 + void* CTSettingSetVerifyCarrierBundles(void) 963 + { 964 + if (verbose) puts("STUB: CTSettingSetVerifyCarrierBundles called"); 965 + return NULL; 966 + } 967 + 968 + void* CTSettingSetWiFiCallingInCallHandover(void) 969 + { 970 + if (verbose) puts("STUB: CTSettingSetWiFiCallingInCallHandover called"); 971 + return NULL; 972 + } 973 + 974 + void* CTSettingsCopyiWlanGatewayAddress(void) 975 + { 976 + if (verbose) puts("STUB: CTSettingsCopyiWlanGatewayAddress called"); 977 + return NULL; 978 + } 979 + 980 + void* CTStartManualOTASP(void) 981 + { 982 + if (verbose) puts("STUB: CTStartManualOTASP called"); 983 + return NULL; 984 + } 985 + 986 + void* CTStartOTASP(void) 987 + { 988 + if (verbose) puts("STUB: CTStartOTASP called"); 989 + return NULL; 990 + } 991 + 992 + void* CTSubscriptionSlotAsString(void) 993 + { 994 + if (verbose) puts("STUB: CTSubscriptionSlotAsString called"); 995 + return NULL; 996 + } 997 + 998 + void* CTSubscriptionSlotAsUUID(void) 999 + { 1000 + if (verbose) puts("STUB: CTSubscriptionSlotAsUUID called"); 1001 + return NULL; 1002 + } 1003 + 1004 + void* CTSweetgumConvertDataUnits(void) 1005 + { 1006 + if (verbose) puts("STUB: CTSweetgumConvertDataUnits called"); 1007 + return NULL; 1008 + } 1009 + 1010 + void* CTSweetgumDataUnitsAsString(void) 1011 + { 1012 + if (verbose) puts("STUB: CTSweetgumDataUnitsAsString called"); 1013 + return NULL; 1014 + } 1015 + 1016 + void* CTSweetgumDeviceTypeAsString(void) 1017 + { 1018 + if (verbose) puts("STUB: CTSweetgumDeviceTypeAsString called"); 1019 + return NULL; 1020 + } 1021 + 1022 + void* CTSweetgumPlanCategoryAsString(void) 1023 + { 1024 + if (verbose) puts("STUB: CTSweetgumPlanCategoryAsString called"); 1025 + return NULL; 1026 + } 1027 + 1028 + void* CTSweetgumPlanPurchaseStatusAsString(void) 1029 + { 1030 + if (verbose) puts("STUB: CTSweetgumPlanPurchaseStatusAsString called"); 1031 + return NULL; 1032 + } 1033 + 1034 + void* CTSweetgumPlanStatusAsString(void) 1035 + { 1036 + if (verbose) puts("STUB: CTSweetgumPlanStatusAsString called"); 1037 + return NULL; 1038 + } 1039 + 1040 + void* CTSweetgumRegistrationStatusAsString(void) 1041 + { 1042 + if (verbose) puts("STUB: CTSweetgumRegistrationStatusAsString called"); 1043 + return NULL; 1044 + } 1045 + 1046 + void* CTTelephonyCenterAddObserver(void) 1047 + { 1048 + if (verbose) puts("STUB: CTTelephonyCenterAddObserver called"); 1049 + return NULL; 1050 + } 1051 + 1052 + void* CTTelephonyCenterGetDefault(void) 1053 + { 1054 + if (verbose) puts("STUB: CTTelephonyCenterGetDefault called"); 1055 + return NULL; 1056 + } 1057 + 1058 + void* CTTelephonyCenterGetRunLoop(void) 1059 + { 1060 + if (verbose) puts("STUB: CTTelephonyCenterGetRunLoop called"); 1061 + return NULL; 1062 + } 1063 + 1064 + void* CTTelephonyCenterRemoveEveryObserver(void) 1065 + { 1066 + if (verbose) puts("STUB: CTTelephonyCenterRemoveEveryObserver called"); 1067 + return NULL; 1068 + } 1069 + 1070 + void* CTTelephonyCenterRemoveObserver(void) 1071 + { 1072 + if (verbose) puts("STUB: CTTelephonyCenterRemoveObserver called"); 1073 + return NULL; 1074 + } 1075 + 1076 + void* CTTelephonyCenterSendBarrier(void) 1077 + { 1078 + if (verbose) puts("STUB: CTTelephonyCenterSendBarrier called"); 1079 + return NULL; 1080 + } 1081 + 1082 + void* CTTelephonyCenterSetDefaultDispatchQueue(void) 1083 + { 1084 + if (verbose) puts("STUB: CTTelephonyCenterSetDefaultDispatchQueue called"); 1085 + return NULL; 1086 + } 1087 + 1088 + void* CTTelephonyCenterSetDefaultDispatchQueuePermanently(void) 1089 + { 1090 + if (verbose) puts("STUB: CTTelephonyCenterSetDefaultDispatchQueuePermanently called"); 1091 + return NULL; 1092 + } 1093 + 1094 + void* CTTelephonyCenterSetDefaultRunloop(void) 1095 + { 1096 + if (verbose) puts("STUB: CTTelephonyCenterSetDefaultRunloop called"); 1097 + return NULL; 1098 + } 1099 + 1100 + void* CTTelephonyCenterSetDefaultRunloopPermanently(void) 1101 + { 1102 + if (verbose) puts("STUB: CTTelephonyCenterSetDefaultRunloopPermanently called"); 1103 + return NULL; 1104 + } 1105 + 1106 + void* CTUSSDSessionCancel(void) 1107 + { 1108 + if (verbose) puts("STUB: CTUSSDSessionCancel called"); 1109 + return NULL; 1110 + } 1111 + 1112 + void* CTUSSDSessionSendResponse(void) 1113 + { 1114 + if (verbose) puts("STUB: CTUSSDSessionSendResponse called"); 1115 + return NULL; 1116 + } 1117 + 1118 + void* ConvertAccountQueryTypesToMask(void) 1119 + { 1120 + if (verbose) puts("STUB: ConvertAccountQueryTypesToMask called"); 1121 + return NULL; 1122 + } 1123 + 1124 + void* GetCarrierEntitlementNameById(void) 1125 + { 1126 + if (verbose) puts("STUB: GetCarrierEntitlementNameById called"); 1127 + return NULL; 1128 + } 1129 + 1130 + void* GetCarrierEntitlementResultString(void) 1131 + { 1132 + if (verbose) puts("STUB: GetCarrierEntitlementResultString called"); 1133 + return NULL; 1134 + } 1135 + 1136 + void* HexToString(void) 1137 + { 1138 + if (verbose) puts("STUB: HexToString called"); 1139 + return NULL; 1140 + } 1141 + 1142 + void* VMCopyDictionaryForNotificationString(void) 1143 + { 1144 + if (verbose) puts("STUB: VMCopyDictionaryForNotificationString called"); 1145 + return NULL; 1146 + } 1147 + 1148 + void* _CFDataCreateFromHexString(void) 1149 + { 1150 + if (verbose) puts("STUB: _CFDataCreateFromHexString called"); 1151 + return NULL; 1152 + } 1153 + 1154 + void* _CFStringCopyMCCMNCFromIMSI(void) 1155 + { 1156 + if (verbose) puts("STUB: _CFStringCopyMCCMNCFromIMSI called"); 1157 + return NULL; 1158 + } 1159 + 1160 + void* _CFStringCreateHexFromBinary(void) 1161 + { 1162 + if (verbose) puts("STUB: _CFStringCreateHexFromBinary called"); 1163 + return NULL; 1164 + } 1165 + 1166 + void* _CFStringGetMobileUser(void) 1167 + { 1168 + if (verbose) puts("STUB: _CFStringGetMobileUser called"); 1169 + return NULL; 1170 + } 1171 + 1172 + void* _CFStringGetOrCreateCString(void) 1173 + { 1174 + if (verbose) puts("STUB: _CFStringGetOrCreateCString called"); 1175 + return NULL; 1176 + } 1177 + 1178 + void* _CFStringGetWirelessUser(void) 1179 + { 1180 + if (verbose) puts("STUB: _CFStringGetWirelessUser called"); 1181 + return NULL; 1182 + } 1183 + 1184 + void* _CFStringHasPrefixCaseInsensitive(void) 1185 + { 1186 + if (verbose) puts("STUB: _CFStringHasPrefixCaseInsensitive called"); 1187 + return NULL; 1188 + } 1189 + 1190 + void* _CTCallCopyCurrentCalls(void) 1191 + { 1192 + if (verbose) puts("STUB: _CTCallCopyCurrentCalls called"); 1193 + return NULL; 1194 + } 1195 + 1196 + void* _CTCallHistoryStoreCallTimersGetAll(void) 1197 + { 1198 + if (verbose) puts("STUB: _CTCallHistoryStoreCallTimersGetAll called"); 1199 + return NULL; 1200 + } 1201 + 1202 + void* _CTCallHistoryStoreGetCountOfMissedCallSince(void) 1203 + { 1204 + if (verbose) puts("STUB: _CTCallHistoryStoreGetCountOfMissedCallSince called"); 1205 + return NULL; 1206 + } 1207 + 1208 + void* _CTCallHistoryStoreGetCountOfMissedCallWithTypesSince(void) 1209 + { 1210 + if (verbose) puts("STUB: _CTCallHistoryStoreGetCountOfMissedCallWithTypesSince called"); 1211 + return NULL; 1212 + } 1213 + 1214 + void* _CTServerConnectionAddIdentifierException(void) 1215 + { 1216 + if (verbose) puts("STUB: _CTServerConnectionAddIdentifierException called"); 1217 + return NULL; 1218 + } 1219 + 1220 + void* _CTServerConnectionAddToRunLoop(void) 1221 + { 1222 + if (verbose) puts("STUB: _CTServerConnectionAddToRunLoop called"); 1223 + return NULL; 1224 + } 1225 + 1226 + void* _CTServerConnectionAddVictimFreq(void) 1227 + { 1228 + if (verbose) puts("STUB: _CTServerConnectionAddVictimFreq called"); 1229 + return NULL; 1230 + } 1231 + 1232 + void* _CTServerConnectionAudioSampleRateSwitchDidComplete(void) 1233 + { 1234 + if (verbose) puts("STUB: _CTServerConnectionAudioSampleRateSwitchDidComplete called"); 1235 + return NULL; 1236 + } 1237 + 1238 + void* _CTServerConnectionAutomaticallySelectNetwork(void) 1239 + { 1240 + if (verbose) puts("STUB: _CTServerConnectionAutomaticallySelectNetwork called"); 1241 + return NULL; 1242 + } 1243 + 1244 + void* _CTServerConnectionBlockBBFreqReport(void) 1245 + { 1246 + if (verbose) puts("STUB: _CTServerConnectionBlockBBFreqReport called"); 1247 + return NULL; 1248 + } 1249 + 1250 + void* _CTServerConnectionCanSetCapability(void) 1251 + { 1252 + if (verbose) puts("STUB: _CTServerConnectionCanSetCapability called"); 1253 + return NULL; 1254 + } 1255 + 1256 + void* _CTServerConnectionCanSetCapabilityExtended(void) 1257 + { 1258 + if (verbose) puts("STUB: _CTServerConnectionCanSetCapabilityExtended called"); 1259 + return NULL; 1260 + } 1261 + 1262 + void* _CTServerConnectionCarrierSettingsCopyValue(void) 1263 + { 1264 + if (verbose) puts("STUB: _CTServerConnectionCarrierSettingsCopyValue called"); 1265 + return NULL; 1266 + } 1267 + 1268 + void* _CTServerConnectionCarrierSettingsCopyValueForPreferredDataSIM(void) 1269 + { 1270 + if (verbose) puts("STUB: _CTServerConnectionCarrierSettingsCopyValueForPreferredDataSIM called"); 1271 + return NULL; 1272 + } 1273 + 1274 + void* _CTServerConnectionCellMonitorCopyCellInfo(void) 1275 + { 1276 + if (verbose) puts("STUB: _CTServerConnectionCellMonitorCopyCellInfo called"); 1277 + return NULL; 1278 + } 1279 + 1280 + void* _CTServerConnectionCellMonitorGetCellCount(void) 1281 + { 1282 + if (verbose) puts("STUB: _CTServerConnectionCellMonitorGetCellCount called"); 1283 + return NULL; 1284 + } 1285 + 1286 + void* _CTServerConnectionCellMonitorGetCellInfo(void) 1287 + { 1288 + if (verbose) puts("STUB: _CTServerConnectionCellMonitorGetCellInfo called"); 1289 + return NULL; 1290 + } 1291 + 1292 + void* _CTServerConnectionCellMonitorGetUmtsCellCount(void) 1293 + { 1294 + if (verbose) puts("STUB: _CTServerConnectionCellMonitorGetUmtsCellCount called"); 1295 + return NULL; 1296 + } 1297 + 1298 + void* _CTServerConnectionCellMonitorGetUmtsCellInfo(void) 1299 + { 1300 + if (verbose) puts("STUB: _CTServerConnectionCellMonitorGetUmtsCellInfo called"); 1301 + return NULL; 1302 + } 1303 + 1304 + void* _CTServerConnectionCellMonitorStart(void) 1305 + { 1306 + if (verbose) puts("STUB: _CTServerConnectionCellMonitorStart called"); 1307 + return NULL; 1308 + } 1309 + 1310 + void* _CTServerConnectionCellMonitorStop(void) 1311 + { 1312 + if (verbose) puts("STUB: _CTServerConnectionCellMonitorStop called"); 1313 + return NULL; 1314 + } 1315 + 1316 + void* _CTServerConnectionCellularDataPlanAccountUpdated(void) 1317 + { 1318 + if (verbose) puts("STUB: _CTServerConnectionCellularDataPlanAccountUpdated called"); 1319 + return NULL; 1320 + } 1321 + 1322 + void* _CTServerConnectionCellularDataPlanActivationFailed(void) 1323 + { 1324 + if (verbose) puts("STUB: _CTServerConnectionCellularDataPlanActivationFailed called"); 1325 + return NULL; 1326 + } 1327 + 1328 + void* _CTServerConnectionCleanBasebandLogs(void) 1329 + { 1330 + if (verbose) puts("STUB: _CTServerConnectionCleanBasebandLogs called"); 1331 + return NULL; 1332 + } 1333 + 1334 + void* _CTServerConnectionClearVictimFreq(void) 1335 + { 1336 + if (verbose) puts("STUB: _CTServerConnectionClearVictimFreq called"); 1337 + return NULL; 1338 + } 1339 + 1340 + void* _CTServerConnectionConfigAndCopyTxController(void) 1341 + { 1342 + if (verbose) puts("STUB: _CTServerConnectionConfigAndCopyTxController called"); 1343 + return NULL; 1344 + } 1345 + 1346 + void* _CTServerConnectionConfigMaxRadioPower(void) 1347 + { 1348 + if (verbose) puts("STUB: _CTServerConnectionConfigMaxRadioPower called"); 1349 + return NULL; 1350 + } 1351 + 1352 + void* _CTServerConnectionConfigMaxTransmitPower(void) 1353 + { 1354 + if (verbose) puts("STUB: _CTServerConnectionConfigMaxTransmitPower called"); 1355 + return NULL; 1356 + } 1357 + 1358 + void* _CTServerConnectionConfigureLogging(void) 1359 + { 1360 + if (verbose) puts("STUB: _CTServerConnectionConfigureLogging called"); 1361 + return NULL; 1362 + } 1363 + 1364 + void* _CTServerConnectionCopyAbbreviatedOperatorName(void) 1365 + { 1366 + if (verbose) puts("STUB: _CTServerConnectionCopyAbbreviatedOperatorName called"); 1367 + return NULL; 1368 + } 1369 + 1370 + void* _CTServerConnectionCopyAccountInformation(void) 1371 + { 1372 + if (verbose) puts("STUB: _CTServerConnectionCopyAccountInformation called"); 1373 + return NULL; 1374 + } 1375 + 1376 + void* _CTServerConnectionCopyActiveAndSupportedBands(void) 1377 + { 1378 + if (verbose) puts("STUB: _CTServerConnectionCopyActiveAndSupportedBands called"); 1379 + return NULL; 1380 + } 1381 + 1382 + void* _CTServerConnectionCopyAudioVocoderInfo(void) 1383 + { 1384 + if (verbose) puts("STUB: _CTServerConnectionCopyAudioVocoderInfo called"); 1385 + return NULL; 1386 + } 1387 + 1388 + void* _CTServerConnectionCopyBandInfo(void) 1389 + { 1390 + if (verbose) puts("STUB: _CTServerConnectionCopyBandInfo called"); 1391 + return NULL; 1392 + } 1393 + 1394 + void* _CTServerConnectionCopyBasebandSettings(void) 1395 + { 1396 + if (verbose) puts("STUB: _CTServerConnectionCopyBasebandSettings called"); 1397 + return NULL; 1398 + } 1399 + 1400 + void* _CTServerConnectionCopyBasebandThumbprint(void) 1401 + { 1402 + if (verbose) puts("STUB: _CTServerConnectionCopyBasebandThumbprint called"); 1403 + return NULL; 1404 + } 1405 + 1406 + void* _CTServerConnectionCopyCallManagementState(void) 1407 + { 1408 + if (verbose) puts("STUB: _CTServerConnectionCopyCallManagementState called"); 1409 + return NULL; 1410 + } 1411 + 1412 + void* _CTServerConnectionCopyCarrierBundleInfoArray(void) 1413 + { 1414 + if (verbose) puts("STUB: _CTServerConnectionCopyCarrierBundleInfoArray called"); 1415 + return NULL; 1416 + } 1417 + 1418 + void* _CTServerConnectionCopyCellBroadcastAlertTypes(void) 1419 + { 1420 + if (verbose) puts("STUB: _CTServerConnectionCopyCellBroadcastAlertTypes called"); 1421 + return NULL; 1422 + } 1423 + 1424 + void* _CTServerConnectionCopyCellularTransmitState(void) 1425 + { 1426 + if (verbose) puts("STUB: _CTServerConnectionCopyCellularTransmitState called"); 1427 + return NULL; 1428 + } 1429 + 1430 + void* _CTServerConnectionCopyCellularUsagePolicy(void) 1431 + { 1432 + if (verbose) puts("STUB: _CTServerConnectionCopyCellularUsagePolicy called"); 1433 + return NULL; 1434 + } 1435 + 1436 + void* _CTServerConnectionCopyCellularUsageWorkspaceInfo(void) 1437 + { 1438 + if (verbose) puts("STUB: _CTServerConnectionCopyCellularUsageWorkspaceInfo called"); 1439 + return NULL; 1440 + } 1441 + 1442 + void* _CTServerConnectionCopyCompanionPhoneNumber(void) 1443 + { 1444 + if (verbose) puts("STUB: _CTServerConnectionCopyCompanionPhoneNumber called"); 1445 + return NULL; 1446 + } 1447 + 1448 + void* _CTServerConnectionCopyCountryCode(void) 1449 + { 1450 + if (verbose) puts("STUB: _CTServerConnectionCopyCountryCode called"); 1451 + return NULL; 1452 + } 1453 + 1454 + void* _CTServerConnectionCopyCurrentMTU(void) 1455 + { 1456 + if (verbose) puts("STUB: _CTServerConnectionCopyCurrentMTU called"); 1457 + return NULL; 1458 + } 1459 + 1460 + void* _CTServerConnectionCopyDataActivityAssertionProcesses(void) 1461 + { 1462 + if (verbose) puts("STUB: _CTServerConnectionCopyDataActivityAssertionProcesses called"); 1463 + return NULL; 1464 + } 1465 + 1466 + void* _CTServerConnectionCopyDataStatus(void) 1467 + { 1468 + if (verbose) puts("STUB: _CTServerConnectionCopyDataStatus called"); 1469 + return NULL; 1470 + } 1471 + 1472 + void* _CTServerConnectionCopyDataUsageForSubscriber(void) 1473 + { 1474 + if (verbose) puts("STUB: _CTServerConnectionCopyDataUsageForSubscriber called"); 1475 + return NULL; 1476 + } 1477 + 1478 + void* _CTServerConnectionCopyDualSimCapability(void) 1479 + { 1480 + if (verbose) puts("STUB: _CTServerConnectionCopyDualSimCapability called"); 1481 + return NULL; 1482 + } 1483 + 1484 + void* _CTServerConnectionCopyEffectiveSimInfo(void) 1485 + { 1486 + if (verbose) puts("STUB: _CTServerConnectionCopyEffectiveSimInfo called"); 1487 + return NULL; 1488 + } 1489 + 1490 + void* _CTServerConnectionCopyFirmwareBaselineVersion(void) 1491 + { 1492 + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareBaselineVersion called"); 1493 + return NULL; 1494 + } 1495 + 1496 + void* _CTServerConnectionCopyFirmwareManifestData(void) 1497 + { 1498 + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareManifestData called"); 1499 + return NULL; 1500 + } 1501 + 1502 + void* _CTServerConnectionCopyFirmwareManifestStatus(void) 1503 + { 1504 + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareManifestStatus called"); 1505 + return NULL; 1506 + } 1507 + 1508 + void* _CTServerConnectionCopyFirmwareNonce(void) 1509 + { 1510 + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareNonce called"); 1511 + return NULL; 1512 + } 1513 + 1514 + void* _CTServerConnectionCopyFirmwarePreflightInfo(void) 1515 + { 1516 + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwarePreflightInfo called"); 1517 + return NULL; 1518 + } 1519 + 1520 + void* _CTServerConnectionCopyFirmwareSecurityInfo(void) 1521 + { 1522 + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareSecurityInfo called"); 1523 + return NULL; 1524 + } 1525 + 1526 + void* _CTServerConnectionCopyFirmwareUpdateInfo(void) 1527 + { 1528 + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareUpdateInfo called"); 1529 + return NULL; 1530 + } 1531 + 1532 + void* _CTServerConnectionCopyFirmwareVersion(void) 1533 + { 1534 + if (verbose) puts("STUB: _CTServerConnectionCopyFirmwareVersion called"); 1535 + return NULL; 1536 + } 1537 + 1538 + void* _CTServerConnectionCopyISOForMCC(void) 1539 + { 1540 + if (verbose) puts("STUB: _CTServerConnectionCopyISOForMCC called"); 1541 + return NULL; 1542 + } 1543 + 1544 + void* _CTServerConnectionCopyLastKnownCountryCode(void) 1545 + { 1546 + if (verbose) puts("STUB: _CTServerConnectionCopyLastKnownCountryCode called"); 1547 + return NULL; 1548 + } 1549 + 1550 + void* _CTServerConnectionCopyLastKnownMobileCountryCode(void) 1551 + { 1552 + if (verbose) puts("STUB: _CTServerConnectionCopyLastKnownMobileCountryCode called"); 1553 + return NULL; 1554 + } 1555 + 1556 + void* _CTServerConnectionCopyLastKnownMobileSubscriberCountryCode(void) 1557 + { 1558 + if (verbose) puts("STUB: _CTServerConnectionCopyLastKnownMobileSubscriberCountryCode called"); 1559 + return NULL; 1560 + } 1561 + 1562 + void* _CTServerConnectionCopyListVictimFreq(void) 1563 + { 1564 + if (verbose) puts("STUB: _CTServerConnectionCopyListVictimFreq called"); 1565 + return NULL; 1566 + } 1567 + 1568 + void* _CTServerConnectionCopyLocalizedOperatorName(void) 1569 + { 1570 + if (verbose) puts("STUB: _CTServerConnectionCopyLocalizedOperatorName called"); 1571 + return NULL; 1572 + } 1573 + 1574 + void* _CTServerConnectionCopyManualNetworkSelection(void) 1575 + { 1576 + if (verbose) puts("STUB: _CTServerConnectionCopyManualNetworkSelection called"); 1577 + return NULL; 1578 + } 1579 + 1580 + void* _CTServerConnectionCopyMobileCountryCode(void) 1581 + { 1582 + if (verbose) puts("STUB: _CTServerConnectionCopyMobileCountryCode called"); 1583 + return NULL; 1584 + } 1585 + 1586 + void* _CTServerConnectionCopyMobileEquipmentInfo(void) 1587 + { 1588 + if (verbose) puts("STUB: _CTServerConnectionCopyMobileEquipmentInfo called"); 1589 + return NULL; 1590 + } 1591 + 1592 + void* _CTServerConnectionCopyMobileNetworkCode(void) 1593 + { 1594 + if (verbose) puts("STUB: _CTServerConnectionCopyMobileNetworkCode called"); 1595 + return NULL; 1596 + } 1597 + 1598 + void* _CTServerConnectionCopyMobileSubscriberAndIsoCountryCodes(void) 1599 + { 1600 + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberAndIsoCountryCodes called"); 1601 + return NULL; 1602 + } 1603 + 1604 + void* _CTServerConnectionCopyMobileSubscriberCountryCode(void) 1605 + { 1606 + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberCountryCode called"); 1607 + return NULL; 1608 + } 1609 + 1610 + void* _CTServerConnectionCopyMobileSubscriberHomeCountryList(void) 1611 + { 1612 + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberHomeCountryList called"); 1613 + return NULL; 1614 + } 1615 + 1616 + void* _CTServerConnectionCopyMobileSubscriberIdentity(void) 1617 + { 1618 + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberIdentity called"); 1619 + return NULL; 1620 + } 1621 + 1622 + void* _CTServerConnectionCopyMobileSubscriberNetworkCode(void) 1623 + { 1624 + if (verbose) puts("STUB: _CTServerConnectionCopyMobileSubscriberNetworkCode called"); 1625 + return NULL; 1626 + } 1627 + 1628 + void* _CTServerConnectionCopyNetworkCode(void) 1629 + { 1630 + if (verbose) puts("STUB: _CTServerConnectionCopyNetworkCode called"); 1631 + return NULL; 1632 + } 1633 + 1634 + void* _CTServerConnectionCopyNetworkList(void) 1635 + { 1636 + if (verbose) puts("STUB: _CTServerConnectionCopyNetworkList called"); 1637 + return NULL; 1638 + } 1639 + 1640 + void* _CTServerConnectionCopyNextCall(void) 1641 + { 1642 + if (verbose) puts("STUB: _CTServerConnectionCopyNextCall called"); 1643 + return NULL; 1644 + } 1645 + 1646 + void* _CTServerConnectionCopyNumericNetworkCode(void) 1647 + { 1648 + if (verbose) puts("STUB: _CTServerConnectionCopyNumericNetworkCode called"); 1649 + return NULL; 1650 + } 1651 + 1652 + void* _CTServerConnectionCopyOperatorName(void) 1653 + { 1654 + if (verbose) puts("STUB: _CTServerConnectionCopyOperatorName called"); 1655 + return NULL; 1656 + } 1657 + 1658 + void* _CTServerConnectionCopyPacketContextInterfaceName(void) 1659 + { 1660 + if (verbose) puts("STUB: _CTServerConnectionCopyPacketContextInterfaceName called"); 1661 + return NULL; 1662 + } 1663 + 1664 + void* _CTServerConnectionCopyPacketContextInterfaceNameByServiceType(void) 1665 + { 1666 + if (verbose) puts("STUB: _CTServerConnectionCopyPacketContextInterfaceNameByServiceType called"); 1667 + return NULL; 1668 + } 1669 + 1670 + void* _CTServerConnectionCopyPhoneBookEntry(void) 1671 + { 1672 + if (verbose) puts("STUB: _CTServerConnectionCopyPhoneBookEntry called"); 1673 + return NULL; 1674 + } 1675 + 1676 + void* _CTServerConnectionCopyPhoneNumber(void) 1677 + { 1678 + if (verbose) puts("STUB: _CTServerConnectionCopyPhoneNumber called"); 1679 + return NULL; 1680 + } 1681 + 1682 + void* _CTServerConnectionCopyPhoneNumberSignature(void) 1683 + { 1684 + if (verbose) puts("STUB: _CTServerConnectionCopyPhoneNumberSignature called"); 1685 + return NULL; 1686 + } 1687 + 1688 + void* _CTServerConnectionCopyPhoneServiceDeviceList(void) 1689 + { 1690 + if (verbose) puts("STUB: _CTServerConnectionCopyPhoneServiceDeviceList called"); 1691 + return NULL; 1692 + } 1693 + 1694 + void* _CTServerConnectionCopyPostponementStatus(void) 1695 + { 1696 + if (verbose) puts("STUB: _CTServerConnectionCopyPostponementStatus called"); 1697 + return NULL; 1698 + } 1699 + 1700 + void* _CTServerConnectionCopyProviderNameUsingCarrierBundle(void) 1701 + { 1702 + if (verbose) puts("STUB: _CTServerConnectionCopyProviderNameUsingCarrierBundle called"); 1703 + return NULL; 1704 + } 1705 + 1706 + void* _CTServerConnectionCopyRegistrationInfo(void) 1707 + { 1708 + if (verbose) puts("STUB: _CTServerConnectionCopyRegistrationInfo called"); 1709 + return NULL; 1710 + } 1711 + 1712 + void* _CTServerConnectionCopyReliableNetworkFallbackSettings(void) 1713 + { 1714 + if (verbose) puts("STUB: _CTServerConnectionCopyReliableNetworkFallbackSettings called"); 1715 + return NULL; 1716 + } 1717 + 1718 + void* _CTServerConnectionCopySIMIdentity(void) 1719 + { 1720 + if (verbose) puts("STUB: _CTServerConnectionCopySIMIdentity called"); 1721 + return NULL; 1722 + } 1723 + 1724 + void* _CTServerConnectionCopySIMToolkitList(void) 1725 + { 1726 + if (verbose) puts("STUB: _CTServerConnectionCopySIMToolkitList called"); 1727 + return NULL; 1728 + } 1729 + 1730 + void* _CTServerConnectionCopySIMToolkitMenu(void) 1731 + { 1732 + if (verbose) puts("STUB: _CTServerConnectionCopySIMToolkitMenu called"); 1733 + return NULL; 1734 + } 1735 + 1736 + void* _CTServerConnectionCopyServiceCenterAddressValue(void) 1737 + { 1738 + if (verbose) puts("STUB: _CTServerConnectionCopyServiceCenterAddressValue called"); 1739 + return NULL; 1740 + } 1741 + 1742 + void* _CTServerConnectionCopyServingPLMN(void) 1743 + { 1744 + if (verbose) puts("STUB: _CTServerConnectionCopyServingPLMN called"); 1745 + return NULL; 1746 + } 1747 + 1748 + void* _CTServerConnectionCopyStartDateOfCellularDataUsageRecords(void) 1749 + { 1750 + if (verbose) puts("STUB: _CTServerConnectionCopyStartDateOfCellularDataUsageRecords called"); 1751 + return NULL; 1752 + } 1753 + 1754 + void* _CTServerConnectionCopySupportedDataRates(void) 1755 + { 1756 + if (verbose) puts("STUB: _CTServerConnectionCopySupportedDataRates called"); 1757 + return NULL; 1758 + } 1759 + 1760 + void* _CTServerConnectionCopySystemCapabilities(void) 1761 + { 1762 + if (verbose) puts("STUB: _CTServerConnectionCopySystemCapabilities called"); 1763 + return NULL; 1764 + } 1765 + 1766 + void* _CTServerConnectionCopyTraceProperty(void) 1767 + { 1768 + if (verbose) puts("STUB: _CTServerConnectionCopyTraceProperty called"); 1769 + return NULL; 1770 + } 1771 + 1772 + void* _CTServerConnectionCopyUSSDString(void) 1773 + { 1774 + if (verbose) puts("STUB: _CTServerConnectionCopyUSSDString called"); 1775 + return NULL; 1776 + } 1777 + 1778 + void* _CTServerConnectionCopyUsageAlertParameters(void) 1779 + { 1780 + if (verbose) puts("STUB: _CTServerConnectionCopyUsageAlertParameters called"); 1781 + return NULL; 1782 + } 1783 + 1784 + void* _CTServerConnectionCopyVoiceCarrierBundleValue(void) 1785 + { 1786 + if (verbose) puts("STUB: _CTServerConnectionCopyVoiceCarrierBundleValue called"); 1787 + return NULL; 1788 + } 1789 + 1790 + void* _CTServerConnectionCopyVoiceMailInfo(void) 1791 + { 1792 + if (verbose) puts("STUB: _CTServerConnectionCopyVoiceMailInfo called"); 1793 + return NULL; 1794 + } 1795 + 1796 + void* _CTServerConnectionCreate(void) 1797 + { 1798 + if (verbose) puts("STUB: _CTServerConnectionCreate called"); 1799 + return NULL; 1800 + } 1801 + 1802 + void* _CTServerConnectionCreateAndLaunchWithIdentifier(void) 1803 + { 1804 + if (verbose) puts("STUB: _CTServerConnectionCreateAndLaunchWithIdentifier called"); 1805 + return NULL; 1806 + } 1807 + 1808 + void* _CTServerConnectionCreateEncryptedIdentity(void) 1809 + { 1810 + if (verbose) puts("STUB: _CTServerConnectionCreateEncryptedIdentity called"); 1811 + return NULL; 1812 + } 1813 + 1814 + void* _CTServerConnectionCreateOnRunLoop(void) 1815 + { 1816 + if (verbose) puts("STUB: _CTServerConnectionCreateOnRunLoop called"); 1817 + return NULL; 1818 + } 1819 + 1820 + void* _CTServerConnectionCreateOnTargetQueue(void) 1821 + { 1822 + if (verbose) puts("STUB: _CTServerConnectionCreateOnTargetQueue called"); 1823 + return NULL; 1824 + } 1825 + 1826 + void* _CTServerConnectionCreateWithIdentifier(void) 1827 + { 1828 + if (verbose) puts("STUB: _CTServerConnectionCreateWithIdentifier called"); 1829 + return NULL; 1830 + } 1831 + 1832 + void* _CTServerConnectionDataActivationPopupAssertionCreate(void) 1833 + { 1834 + if (verbose) puts("STUB: _CTServerConnectionDataActivationPopupAssertionCreate called"); 1835 + return NULL; 1836 + } 1837 + 1838 + void* _CTServerConnectionDeviceManagementUpdate(void) 1839 + { 1840 + if (verbose) puts("STUB: _CTServerConnectionDeviceManagementUpdate called"); 1841 + return NULL; 1842 + } 1843 + 1844 + void* _CTServerConnectionDisablePCMChannel(void) 1845 + { 1846 + if (verbose) puts("STUB: _CTServerConnectionDisablePCMChannel called"); 1847 + return NULL; 1848 + } 1849 + 1850 + void* _CTServerConnectionDisableRegistration(void) 1851 + { 1852 + if (verbose) puts("STUB: _CTServerConnectionDisableRegistration called"); 1853 + return NULL; 1854 + } 1855 + 1856 + void* _CTServerConnectionDoCSIPropertyOperation(void) 1857 + { 1858 + if (verbose) puts("STUB: _CTServerConnectionDoCSIPropertyOperation called"); 1859 + return NULL; 1860 + } 1861 + 1862 + void* _CTServerConnectionDoModuleOperation(void) 1863 + { 1864 + if (verbose) puts("STUB: _CTServerConnectionDoModuleOperation called"); 1865 + return NULL; 1866 + } 1867 + 1868 + void* _CTServerConnectionDormancySuspendAssertionCreate(void) 1869 + { 1870 + if (verbose) puts("STUB: _CTServerConnectionDormancySuspendAssertionCreate called"); 1871 + return NULL; 1872 + } 1873 + 1874 + void* _CTServerConnectionDormancySuspendAssertionCreateWithExpirationCB(void) 1875 + { 1876 + if (verbose) puts("STUB: _CTServerConnectionDormancySuspendAssertionCreateWithExpirationCB called"); 1877 + return NULL; 1878 + } 1879 + 1880 + void* _CTServerConnectionDropIPPackets(void) 1881 + { 1882 + if (verbose) puts("STUB: _CTServerConnectionDropIPPackets called"); 1883 + return NULL; 1884 + } 1885 + 1886 + void* _CTServerConnectionDumpBasebandState(void) 1887 + { 1888 + if (verbose) puts("STUB: _CTServerConnectionDumpBasebandState called"); 1889 + return NULL; 1890 + } 1891 + 1892 + void* _CTServerConnectionDumpMemory(void) 1893 + { 1894 + if (verbose) puts("STUB: _CTServerConnectionDumpMemory called"); 1895 + return NULL; 1896 + } 1897 + 1898 + void* _CTServerConnectionDumpState(void) 1899 + { 1900 + if (verbose) puts("STUB: _CTServerConnectionDumpState called"); 1901 + return NULL; 1902 + } 1903 + 1904 + void* _CTServerConnectionEchoCancelationAndNoiseReduction(void) 1905 + { 1906 + if (verbose) puts("STUB: _CTServerConnectionEchoCancelationAndNoiseReduction called"); 1907 + return NULL; 1908 + } 1909 + 1910 + void* _CTServerConnectionEnableEmergencyCallBackMode(void) 1911 + { 1912 + if (verbose) puts("STUB: _CTServerConnectionEnableEmergencyCallBackMode called"); 1913 + return NULL; 1914 + } 1915 + 1916 + void* _CTServerConnectionEnableHAC(void) 1917 + { 1918 + if (verbose) puts("STUB: _CTServerConnectionEnableHAC called"); 1919 + return NULL; 1920 + } 1921 + 1922 + void* _CTServerConnectionEnableMediaToDownlink(void) 1923 + { 1924 + if (verbose) puts("STUB: _CTServerConnectionEnableMediaToDownlink called"); 1925 + return NULL; 1926 + } 1927 + 1928 + void* _CTServerConnectionEnablePCMChannel(void) 1929 + { 1930 + if (verbose) puts("STUB: _CTServerConnectionEnablePCMChannel called"); 1931 + return NULL; 1932 + } 1933 + 1934 + void* _CTServerConnectionEnableRegistration(void) 1935 + { 1936 + if (verbose) puts("STUB: _CTServerConnectionEnableRegistration called"); 1937 + return NULL; 1938 + } 1939 + 1940 + void* _CTServerConnectionEnableRemoteDiagnostics(void) 1941 + { 1942 + if (verbose) puts("STUB: _CTServerConnectionEnableRemoteDiagnostics called"); 1943 + return NULL; 1944 + } 1945 + 1946 + void* _CTServerConnectionEnableVoicePrivacy(void) 1947 + { 1948 + if (verbose) puts("STUB: _CTServerConnectionEnableVoicePrivacy called"); 1949 + return NULL; 1950 + } 1951 + 1952 + void* _CTServerConnectionEntitlementsClearSecondaryIccids(void) 1953 + { 1954 + if (verbose) puts("STUB: _CTServerConnectionEntitlementsClearSecondaryIccids called"); 1955 + return NULL; 1956 + } 1957 + 1958 + void* _CTServerConnectionEntitlementsGetPreferredRoamingNetworks(void) 1959 + { 1960 + if (verbose) puts("STUB: _CTServerConnectionEntitlementsGetPreferredRoamingNetworks called"); 1961 + return NULL; 1962 + } 1963 + 1964 + void* _CTServerConnectionEntitlementsGetSIMStatus(void) 1965 + { 1966 + if (verbose) puts("STUB: _CTServerConnectionEntitlementsGetSIMStatus called"); 1967 + return NULL; 1968 + } 1969 + 1970 + void* _CTServerConnectionEntitlementsSetPreferredRoamingNetworks(void) 1971 + { 1972 + if (verbose) puts("STUB: _CTServerConnectionEntitlementsSetPreferredRoamingNetworks called"); 1973 + return NULL; 1974 + } 1975 + 1976 + void* _CTServerConnectionEntitlementsSetSecondaryIccids(void) 1977 + { 1978 + if (verbose) puts("STUB: _CTServerConnectionEntitlementsSetSecondaryIccids called"); 1979 + return NULL; 1980 + } 1981 + 1982 + void* _CTServerConnectionEntitlementsSignUpSIMService(void) 1983 + { 1984 + if (verbose) puts("STUB: _CTServerConnectionEntitlementsSignUpSIMService called"); 1985 + return NULL; 1986 + } 1987 + 1988 + void* _CTServerConnectionEraseAllUserProfiles(void) 1989 + { 1990 + if (verbose) puts("STUB: _CTServerConnectionEraseAllUserProfiles called"); 1991 + return NULL; 1992 + } 1993 + 1994 + void* _CTServerConnectionEraseBasebandSettings(void) 1995 + { 1996 + if (verbose) puts("STUB: _CTServerConnectionEraseBasebandSettings called"); 1997 + return NULL; 1998 + } 1999 + 2000 + void* _CTServerConnectionEraseCellularDataUsageRecords(void) 2001 + { 2002 + if (verbose) puts("STUB: _CTServerConnectionEraseCellularDataUsageRecords called"); 2003 + return NULL; 2004 + } 2005 + 2006 + void* _CTServerConnectionEraseCellularDataUsageRecordsEx(void) 2007 + { 2008 + if (verbose) puts("STUB: _CTServerConnectionEraseCellularDataUsageRecordsEx called"); 2009 + return NULL; 2010 + } 2011 + 2012 + void* _CTServerConnectionEraseCommCentersPreferences(void) 2013 + { 2014 + if (verbose) puts("STUB: _CTServerConnectionEraseCommCentersPreferences called"); 2015 + return NULL; 2016 + } 2017 + 2018 + void* _CTServerConnectionEraseNetworkSettings(void) 2019 + { 2020 + if (verbose) puts("STUB: _CTServerConnectionEraseNetworkSettings called"); 2021 + return NULL; 2022 + } 2023 + 2024 + void* _CTServerConnectionEvaluateMobileSubscriberIdentity(void) 2025 + { 2026 + if (verbose) puts("STUB: _CTServerConnectionEvaluateMobileSubscriberIdentity called"); 2027 + return NULL; 2028 + } 2029 + 2030 + void* _CTServerConnectionExecuteCommand(void) 2031 + { 2032 + if (verbose) puts("STUB: _CTServerConnectionExecuteCommand called"); 2033 + return NULL; 2034 + } 2035 + 2036 + void* _CTServerConnectionFetchNetworkList(void) 2037 + { 2038 + if (verbose) puts("STUB: _CTServerConnectionFetchNetworkList called"); 2039 + return NULL; 2040 + } 2041 + 2042 + void* _CTServerConnectionFetchPhonebook(void) 2043 + { 2044 + if (verbose) puts("STUB: _CTServerConnectionFetchPhonebook called"); 2045 + return NULL; 2046 + } 2047 + 2048 + void* _CTServerConnectionFetchTimeFromNetwork(void) 2049 + { 2050 + if (verbose) puts("STUB: _CTServerConnectionFetchTimeFromNetwork called"); 2051 + return NULL; 2052 + } 2053 + 2054 + void* _CTServerConnectionGetAPNConfiguration(void) 2055 + { 2056 + if (verbose) puts("STUB: _CTServerConnectionGetAPNConfiguration called"); 2057 + return NULL; 2058 + } 2059 + 2060 + void* _CTServerConnectionGetActiveWirelessTechnology(void) 2061 + { 2062 + if (verbose) puts("STUB: _CTServerConnectionGetActiveWirelessTechnology called"); 2063 + return NULL; 2064 + } 2065 + 2066 + void* _CTServerConnectionGetAllowedRadioMode(void) 2067 + { 2068 + if (verbose) puts("STUB: _CTServerConnectionGetAllowedRadioMode called"); 2069 + return NULL; 2070 + } 2071 + 2072 + void* _CTServerConnectionGetAttachAPNSettings(void) 2073 + { 2074 + if (verbose) puts("STUB: _CTServerConnectionGetAttachAPNSettings called"); 2075 + return NULL; 2076 + } 2077 + 2078 + void* _CTServerConnectionGetAudioLoggingEnabled(void) 2079 + { 2080 + if (verbose) puts("STUB: _CTServerConnectionGetAudioLoggingEnabled called"); 2081 + return NULL; 2082 + } 2083 + 2084 + void* _CTServerConnectionGetCDMAInternationalRoaming(void) 2085 + { 2086 + if (verbose) puts("STUB: _CTServerConnectionGetCDMAInternationalRoaming called"); 2087 + return NULL; 2088 + } 2089 + 2090 + void* _CTServerConnectionGetCDRXWithLTEState(void) 2091 + { 2092 + if (verbose) puts("STUB: _CTServerConnectionGetCDRXWithLTEState called"); 2093 + return NULL; 2094 + } 2095 + 2096 + void* _CTServerConnectionGetCapabilityStatus(void) 2097 + { 2098 + if (verbose) puts("STUB: _CTServerConnectionGetCapabilityStatus called"); 2099 + return NULL; 2100 + } 2101 + 2102 + void* _CTServerConnectionGetCapabilityStatusExtended(void) 2103 + { 2104 + if (verbose) puts("STUB: _CTServerConnectionGetCapabilityStatusExtended called"); 2105 + return NULL; 2106 + } 2107 + 2108 + void* _CTServerConnectionGetCarrierEntitlements(void) 2109 + { 2110 + if (verbose) puts("STUB: _CTServerConnectionGetCarrierEntitlements called"); 2111 + return NULL; 2112 + } 2113 + 2114 + void* _CTServerConnectionGetCarrierSpaceUpdates(void) 2115 + { 2116 + if (verbose) puts("STUB: _CTServerConnectionGetCarrierSpaceUpdates called"); 2117 + return NULL; 2118 + } 2119 + 2120 + void* _CTServerConnectionGetCellBroadcastSettingForAlertType(void) 2121 + { 2122 + if (verbose) puts("STUB: _CTServerConnectionGetCellBroadcastSettingForAlertType called"); 2123 + return NULL; 2124 + } 2125 + 2126 + void* _CTServerConnectionGetCellID(void) 2127 + { 2128 + if (verbose) puts("STUB: _CTServerConnectionGetCellID called"); 2129 + return NULL; 2130 + } 2131 + 2132 + void* _CTServerConnectionGetCellularDataIsDisallowed(void) 2133 + { 2134 + if (verbose) puts("STUB: _CTServerConnectionGetCellularDataIsDisallowed called"); 2135 + return NULL; 2136 + } 2137 + 2138 + void* _CTServerConnectionGetCellularDataIsEnabled(void) 2139 + { 2140 + if (verbose) puts("STUB: _CTServerConnectionGetCellularDataIsEnabled called"); 2141 + return NULL; 2142 + } 2143 + 2144 + void* _CTServerConnectionGetCellularDataIsEnabledEx(void) 2145 + { 2146 + if (verbose) puts("STUB: _CTServerConnectionGetCellularDataIsEnabledEx called"); 2147 + return NULL; 2148 + } 2149 + 2150 + void* _CTServerConnectionGetCellularDataSettings(void) 2151 + { 2152 + if (verbose) puts("STUB: _CTServerConnectionGetCellularDataSettings called"); 2153 + return NULL; 2154 + } 2155 + 2156 + void* _CTServerConnectionGetCellularUsagePolicyEx(void) 2157 + { 2158 + if (verbose) puts("STUB: _CTServerConnectionGetCellularUsagePolicyEx called"); 2159 + return NULL; 2160 + } 2161 + 2162 + void* _CTServerConnectionGetCellularUsagePolicyMirroring(void) 2163 + { 2164 + if (verbose) puts("STUB: _CTServerConnectionGetCellularUsagePolicyMirroring called"); 2165 + return NULL; 2166 + } 2167 + 2168 + void* _CTServerConnectionGetCellularUsageWorkspaceInfoEx(void) 2169 + { 2170 + if (verbose) puts("STUB: _CTServerConnectionGetCellularUsageWorkspaceInfoEx called"); 2171 + return NULL; 2172 + } 2173 + 2174 + void* _CTServerConnectionGetCommCenterInitializationState(void) 2175 + { 2176 + if (verbose) puts("STUB: _CTServerConnectionGetCommCenterInitializationState called"); 2177 + return NULL; 2178 + } 2179 + 2180 + void* _CTServerConnectionGetCurrentMaxAllowedDataRate(void) 2181 + { 2182 + if (verbose) puts("STUB: _CTServerConnectionGetCurrentMaxAllowedDataRate called"); 2183 + return NULL; 2184 + } 2185 + 2186 + void* _CTServerConnectionGetDTMFType(void) 2187 + { 2188 + if (verbose) puts("STUB: _CTServerConnectionGetDTMFType called"); 2189 + return NULL; 2190 + } 2191 + 2192 + void* _CTServerConnectionGetDataServiceAvailability(void) 2193 + { 2194 + if (verbose) puts("STUB: _CTServerConnectionGetDataServiceAvailability called"); 2195 + return NULL; 2196 + } 2197 + 2198 + void* _CTServerConnectionGetDisallowTelephonyFeature(void) 2199 + { 2200 + if (verbose) puts("STUB: _CTServerConnectionGetDisallowTelephonyFeature called"); 2201 + return NULL; 2202 + } 2203 + 2204 + void* _CTServerConnectionGetE911OverLTEModeStatus(void) 2205 + { 2206 + if (verbose) puts("STUB: _CTServerConnectionGetE911OverLTEModeStatus called"); 2207 + return NULL; 2208 + } 2209 + 2210 + void* _CTServerConnectionGetE911OverWifiModeStatus(void) 2211 + { 2212 + if (verbose) puts("STUB: _CTServerConnectionGetE911OverWifiModeStatus called"); 2213 + return NULL; 2214 + } 2215 + 2216 + void* _CTServerConnectionGetEMBMSSAIListInfo(void) 2217 + { 2218 + if (verbose) puts("STUB: _CTServerConnectionGetEMBMSSAIListInfo called"); 2219 + return NULL; 2220 + } 2221 + 2222 + void* _CTServerConnectionGetEMBMSSigInfo(void) 2223 + { 2224 + if (verbose) puts("STUB: _CTServerConnectionGetEMBMSSigInfo called"); 2225 + return NULL; 2226 + } 2227 + 2228 + void* _CTServerConnectionGetEMBMSStatus(void) 2229 + { 2230 + if (verbose) puts("STUB: _CTServerConnectionGetEMBMSStatus called"); 2231 + return NULL; 2232 + } 2233 + 2234 + void* _CTServerConnectionGetEmergencyCallBackMode(void) 2235 + { 2236 + if (verbose) puts("STUB: _CTServerConnectionGetEmergencyCallBackMode called"); 2237 + return NULL; 2238 + } 2239 + 2240 + void* _CTServerConnectionGetEmergencyCallStatus(void) 2241 + { 2242 + if (verbose) puts("STUB: _CTServerConnectionGetEmergencyCallStatus called"); 2243 + return NULL; 2244 + } 2245 + 2246 + void* _CTServerConnectionGetEnableOnlyHomeNetwork(void) 2247 + { 2248 + if (verbose) puts("STUB: _CTServerConnectionGetEnableOnlyHomeNetwork called"); 2249 + return NULL; 2250 + } 2251 + 2252 + void* _CTServerConnectionGetEnhancedVoiceLinkQualityMetric(void) 2253 + { 2254 + if (verbose) puts("STUB: _CTServerConnectionGetEnhancedVoiceLinkQualityMetric called"); 2255 + return NULL; 2256 + } 2257 + 2258 + void* _CTServerConnectionGetHACState(void) 2259 + { 2260 + if (verbose) puts("STUB: _CTServerConnectionGetHACState called"); 2261 + return NULL; 2262 + } 2263 + 2264 + void* _CTServerConnectionGetInterfaceFamilies(void) 2265 + { 2266 + if (verbose) puts("STUB: _CTServerConnectionGetInterfaceFamilies called"); 2267 + return NULL; 2268 + } 2269 + 2270 + void* _CTServerConnectionGetInternationalDataAccessStatus(void) 2271 + { 2272 + if (verbose) puts("STUB: _CTServerConnectionGetInternationalDataAccessStatus called"); 2273 + return NULL; 2274 + } 2275 + 2276 + void* _CTServerConnectionGetLocationAreaCode(void) 2277 + { 2278 + if (verbose) puts("STUB: _CTServerConnectionGetLocationAreaCode called"); 2279 + return NULL; 2280 + } 2281 + 2282 + void* _CTServerConnectionGetManagedCellularProfile(void) 2283 + { 2284 + if (verbose) puts("STUB: _CTServerConnectionGetManagedCellularProfile called"); 2285 + return NULL; 2286 + } 2287 + 2288 + void* _CTServerConnectionGetMultiPartyCallCountMaximum(void) 2289 + { 2290 + if (verbose) puts("STUB: _CTServerConnectionGetMultiPartyCallCountMaximum called"); 2291 + return NULL; 2292 + } 2293 + 2294 + void* _CTServerConnectionGetNATTKeepAliveOverCell(void) 2295 + { 2296 + if (verbose) puts("STUB: _CTServerConnectionGetNATTKeepAliveOverCell called"); 2297 + return NULL; 2298 + } 2299 + 2300 + void* _CTServerConnectionGetNetworkSelectionMode(void) 2301 + { 2302 + if (verbose) puts("STUB: _CTServerConnectionGetNetworkSelectionMode called"); 2303 + return NULL; 2304 + } 2305 + 2306 + void* _CTServerConnectionGetNetworkSelectionState(void) 2307 + { 2308 + if (verbose) puts("STUB: _CTServerConnectionGetNetworkSelectionState called"); 2309 + return NULL; 2310 + } 2311 + 2312 + void* _CTServerConnectionGetOTAServerOverride(void) 2313 + { 2314 + if (verbose) puts("STUB: _CTServerConnectionGetOTAServerOverride called"); 2315 + return NULL; 2316 + } 2317 + 2318 + void* _CTServerConnectionGetPLMNPriorityInfo(void) 2319 + { 2320 + if (verbose) puts("STUB: _CTServerConnectionGetPLMNPriorityInfo called"); 2321 + return NULL; 2322 + } 2323 + 2324 + void* _CTServerConnectionGetPacketContextActive(void) 2325 + { 2326 + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextActive called"); 2327 + return NULL; 2328 + } 2329 + 2330 + void* _CTServerConnectionGetPacketContextActiveByServiceType(void) 2331 + { 2332 + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextActiveByServiceType called"); 2333 + return NULL; 2334 + } 2335 + 2336 + void* _CTServerConnectionGetPacketContextActiveByServiceTypeExtended(void) 2337 + { 2338 + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextActiveByServiceTypeExtended called"); 2339 + return NULL; 2340 + } 2341 + 2342 + void* _CTServerConnectionGetPacketContextCount(void) 2343 + { 2344 + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextCount called"); 2345 + return NULL; 2346 + } 2347 + 2348 + void* _CTServerConnectionGetPacketContextStatistics(void) 2349 + { 2350 + if (verbose) puts("STUB: _CTServerConnectionGetPacketContextStatistics called"); 2351 + return NULL; 2352 + } 2353 + 2354 + void* _CTServerConnectionGetPacketDataLoadInfo(void) 2355 + { 2356 + if (verbose) puts("STUB: _CTServerConnectionGetPacketDataLoadInfo called"); 2357 + return NULL; 2358 + } 2359 + 2360 + void* _CTServerConnectionGetPhonebookEntryCount(void) 2361 + { 2362 + if (verbose) puts("STUB: _CTServerConnectionGetPhonebookEntryCount called"); 2363 + return NULL; 2364 + } 2365 + 2366 + void* _CTServerConnectionGetRATSelection(void) 2367 + { 2368 + if (verbose) puts("STUB: _CTServerConnectionGetRATSelection called"); 2369 + return NULL; 2370 + } 2371 + 2372 + void* _CTServerConnectionGetRadioAccessTechnology(void) 2373 + { 2374 + if (verbose) puts("STUB: _CTServerConnectionGetRadioAccessTechnology called"); 2375 + return NULL; 2376 + } 2377 + 2378 + void* _CTServerConnectionGetRadioAccessTechnologyForPreferredDataSIM(void) 2379 + { 2380 + if (verbose) puts("STUB: _CTServerConnectionGetRadioAccessTechnologyForPreferredDataSIM called"); 2381 + return NULL; 2382 + } 2383 + 2384 + void* _CTServerConnectionGetRadioModuleIsDead(void) 2385 + { 2386 + if (verbose) puts("STUB: _CTServerConnectionGetRadioModuleIsDead called"); 2387 + return NULL; 2388 + } 2389 + 2390 + void* _CTServerConnectionGetRadioState(void) 2391 + { 2392 + if (verbose) puts("STUB: _CTServerConnectionGetRadioState called"); 2393 + return NULL; 2394 + } 2395 + 2396 + void* _CTServerConnectionGetRegistrationCauseCode(void) 2397 + { 2398 + if (verbose) puts("STUB: _CTServerConnectionGetRegistrationCauseCode called"); 2399 + return NULL; 2400 + } 2401 + 2402 + void* _CTServerConnectionGetRegistrationStatus(void) 2403 + { 2404 + if (verbose) puts("STUB: _CTServerConnectionGetRegistrationStatus called"); 2405 + return NULL; 2406 + } 2407 + 2408 + void* _CTServerConnectionGetRemainingPINAttemptCount(void) 2409 + { 2410 + if (verbose) puts("STUB: _CTServerConnectionGetRemainingPINAttemptCount called"); 2411 + return NULL; 2412 + } 2413 + 2414 + void* _CTServerConnectionGetRemainingPUKAttemptCount(void) 2415 + { 2416 + if (verbose) puts("STUB: _CTServerConnectionGetRemainingPUKAttemptCount called"); 2417 + return NULL; 2418 + } 2419 + 2420 + void* _CTServerConnectionGetRemoteBundleInfo(void) 2421 + { 2422 + if (verbose) puts("STUB: _CTServerConnectionGetRemoteBundleInfo called"); 2423 + return NULL; 2424 + } 2425 + 2426 + void* _CTServerConnectionGetRemoteServerURL(void) 2427 + { 2428 + if (verbose) puts("STUB: _CTServerConnectionGetRemoteServerURL called"); 2429 + return NULL; 2430 + } 2431 + 2432 + void* _CTServerConnectionGetResetCellularAccountSettingsIsAllowed(void) 2433 + { 2434 + if (verbose) puts("STUB: _CTServerConnectionGetResetCellularAccountSettingsIsAllowed called"); 2435 + return NULL; 2436 + } 2437 + 2438 + void* _CTServerConnectionGetResetState(void) 2439 + { 2440 + if (verbose) puts("STUB: _CTServerConnectionGetResetState called"); 2441 + return NULL; 2442 + } 2443 + 2444 + void* _CTServerConnectionGetSIMStatus(void) 2445 + { 2446 + if (verbose) puts("STUB: _CTServerConnectionGetSIMStatus called"); 2447 + return NULL; 2448 + } 2449 + 2450 + void* _CTServerConnectionGetSIMTrayStatus(void) 2451 + { 2452 + if (verbose) puts("STUB: _CTServerConnectionGetSIMTrayStatus called"); 2453 + return NULL; 2454 + } 2455 + 2456 + void* _CTServerConnectionGetShowUsageAlert(void) 2457 + { 2458 + if (verbose) puts("STUB: _CTServerConnectionGetShowUsageAlert called"); 2459 + return NULL; 2460 + } 2461 + 2462 + void* _CTServerConnectionGetSignalStrength(void) 2463 + { 2464 + if (verbose) puts("STUB: _CTServerConnectionGetSignalStrength called"); 2465 + return NULL; 2466 + } 2467 + 2468 + void* _CTServerConnectionGetSignalStrengthDisplayValue(void) 2469 + { 2470 + if (verbose) puts("STUB: _CTServerConnectionGetSignalStrengthDisplayValue called"); 2471 + return NULL; 2472 + } 2473 + 2474 + void* _CTServerConnectionGetSupportedEnhancedLinkQualityMetric(void) 2475 + { 2476 + if (verbose) puts("STUB: _CTServerConnectionGetSupportedEnhancedLinkQualityMetric called"); 2477 + return NULL; 2478 + } 2479 + 2480 + void* _CTServerConnectionGetTTYMode(void) 2481 + { 2482 + if (verbose) puts("STUB: _CTServerConnectionGetTTYMode called"); 2483 + return NULL; 2484 + } 2485 + 2486 + void* _CTServerConnectionGetTemperature(void) 2487 + { 2488 + if (verbose) puts("STUB: _CTServerConnectionGetTemperature called"); 2489 + return NULL; 2490 + } 2491 + 2492 + void* _CTServerConnectionGetTestModeFunction(void) 2493 + { 2494 + if (verbose) puts("STUB: _CTServerConnectionGetTestModeFunction called"); 2495 + return NULL; 2496 + } 2497 + 2498 + void* _CTServerConnectionGetThumperName(void) 2499 + { 2500 + if (verbose) puts("STUB: _CTServerConnectionGetThumperName called"); 2501 + return NULL; 2502 + } 2503 + 2504 + void* _CTServerConnectionGetTypeID(void) 2505 + { 2506 + if (verbose) puts("STUB: _CTServerConnectionGetTypeID called"); 2507 + return NULL; 2508 + } 2509 + 2510 + void* _CTServerConnectionGetUIConfiguredApns(void) 2511 + { 2512 + if (verbose) puts("STUB: _CTServerConnectionGetUIConfiguredApns called"); 2513 + return NULL; 2514 + } 2515 + 2516 + void* _CTServerConnectionGetUpdatedCarrierBundle(void) 2517 + { 2518 + if (verbose) puts("STUB: _CTServerConnectionGetUpdatedCarrierBundle called"); 2519 + return NULL; 2520 + } 2521 + 2522 + void* _CTServerConnectionGetUplinkFreq(void) 2523 + { 2524 + if (verbose) puts("STUB: _CTServerConnectionGetUplinkFreq called"); 2525 + return NULL; 2526 + } 2527 + 2528 + void* _CTServerConnectionGetVoiceLinkQualityMetric(void) 2529 + { 2530 + if (verbose) puts("STUB: _CTServerConnectionGetVoiceLinkQualityMetric called"); 2531 + return NULL; 2532 + } 2533 + 2534 + void* _CTServerConnectionGetVoiceMailAvailable(void) 2535 + { 2536 + if (verbose) puts("STUB: _CTServerConnectionGetVoiceMailAvailable called"); 2537 + return NULL; 2538 + } 2539 + 2540 + void* _CTServerConnectionGetVoiceMute(void) 2541 + { 2542 + if (verbose) puts("STUB: _CTServerConnectionGetVoiceMute called"); 2543 + return NULL; 2544 + } 2545 + 2546 + void* _CTServerConnectionGetVoicePrivacy(void) 2547 + { 2548 + if (verbose) puts("STUB: _CTServerConnectionGetVoicePrivacy called"); 2549 + return NULL; 2550 + } 2551 + 2552 + void* _CTServerConnectionGetXpcConnection(void) 2553 + { 2554 + if (verbose) puts("STUB: _CTServerConnectionGetXpcConnection called"); 2555 + return NULL; 2556 + } 2557 + 2558 + void* _CTServerConnectionHandleReply(void) 2559 + { 2560 + if (verbose) puts("STUB: _CTServerConnectionHandleReply called"); 2561 + return NULL; 2562 + } 2563 + 2564 + void* _CTServerConnectionHideDataIndicator(void) 2565 + { 2566 + if (verbose) puts("STUB: _CTServerConnectionHideDataIndicator called"); 2567 + return NULL; 2568 + } 2569 + 2570 + void* _CTServerConnectionHideRatIndicator(void) 2571 + { 2572 + if (verbose) puts("STUB: _CTServerConnectionHideRatIndicator called"); 2573 + return NULL; 2574 + } 2575 + 2576 + void* _CTServerConnectionICloudAccountReset(void) 2577 + { 2578 + if (verbose) puts("STUB: _CTServerConnectionICloudAccountReset called"); 2579 + return NULL; 2580 + } 2581 + 2582 + void* _CTServerConnectionInjectCellBroadcastMessage(void) 2583 + { 2584 + if (verbose) puts("STUB: _CTServerConnectionInjectCellBroadcastMessage called"); 2585 + return NULL; 2586 + } 2587 + 2588 + void* _CTServerConnectionInjectCellBroadcastMessageWithWac(void) 2589 + { 2590 + if (verbose) puts("STUB: _CTServerConnectionInjectCellBroadcastMessageWithWac called"); 2591 + return NULL; 2592 + } 2593 + 2594 + void* _CTServerConnectionInstallCarrierBundle(void) 2595 + { 2596 + if (verbose) puts("STUB: _CTServerConnectionInstallCarrierBundle called"); 2597 + return NULL; 2598 + } 2599 + 2600 + void* _CTServerConnectionIsAnyCallActiveOrHeld(void) 2601 + { 2602 + if (verbose) puts("STUB: _CTServerConnectionIsAnyCallActiveOrHeld called"); 2603 + return NULL; 2604 + } 2605 + 2606 + void* _CTServerConnectionIsCDMAInternationalRoamingSettingAllowed(void) 2607 + { 2608 + if (verbose) puts("STUB: _CTServerConnectionIsCDMAInternationalRoamingSettingAllowed called"); 2609 + return NULL; 2610 + } 2611 + 2612 + void* _CTServerConnectionIsDataAttached(void) 2613 + { 2614 + if (verbose) puts("STUB: _CTServerConnectionIsDataAttached called"); 2615 + return NULL; 2616 + } 2617 + 2618 + void* _CTServerConnectionIsDataAttachedForPreferredDataSIM(void) 2619 + { 2620 + if (verbose) puts("STUB: _CTServerConnectionIsDataAttachedForPreferredDataSIM called"); 2621 + return NULL; 2622 + } 2623 + 2624 + void* _CTServerConnectionIsDefaultConnection(void) 2625 + { 2626 + if (verbose) puts("STUB: _CTServerConnectionIsDefaultConnection called"); 2627 + return NULL; 2628 + } 2629 + 2630 + void* _CTServerConnectionIsEmergencyNumber(void) 2631 + { 2632 + if (verbose) puts("STUB: _CTServerConnectionIsEmergencyNumber called"); 2633 + return NULL; 2634 + } 2635 + 2636 + void* _CTServerConnectionIsEmergencyNumberWithWhitelistIncluded(void) 2637 + { 2638 + if (verbose) puts("STUB: _CTServerConnectionIsEmergencyNumberWithWhitelistIncluded called"); 2639 + return NULL; 2640 + } 2641 + 2642 + void* _CTServerConnectionIsEncryptedIdentitySupported(void) 2643 + { 2644 + if (verbose) puts("STUB: _CTServerConnectionIsEncryptedIdentitySupported called"); 2645 + return NULL; 2646 + } 2647 + 2648 + void* _CTServerConnectionIsInHomeCountry(void) 2649 + { 2650 + if (verbose) puts("STUB: _CTServerConnectionIsInHomeCountry called"); 2651 + return NULL; 2652 + } 2653 + 2654 + void* _CTServerConnectionIsInHomeCountryForPreferredDataSIM(void) 2655 + { 2656 + if (verbose) puts("STUB: _CTServerConnectionIsInHomeCountryForPreferredDataSIM called"); 2657 + return NULL; 2658 + } 2659 + 2660 + void* _CTServerConnectionIsPhoneNumberCredentialValid(void) 2661 + { 2662 + if (verbose) puts("STUB: _CTServerConnectionIsPhoneNumberCredentialValid called"); 2663 + return NULL; 2664 + } 2665 + 2666 + void* _CTServerConnectionIsPhoneNumberRegistrationSupported(void) 2667 + { 2668 + if (verbose) puts("STUB: _CTServerConnectionIsPhoneNumberRegistrationSupported called"); 2669 + return NULL; 2670 + } 2671 + 2672 + void* _CTServerConnectionIsServiceOverPublicInternet(void) 2673 + { 2674 + if (verbose) puts("STUB: _CTServerConnectionIsServiceOverPublicInternet called"); 2675 + return NULL; 2676 + } 2677 + 2678 + void* _CTServerConnectionIsSilenceAssertionBarred(void) 2679 + { 2680 + if (verbose) puts("STUB: _CTServerConnectionIsSilenceAssertionBarred called"); 2681 + return NULL; 2682 + } 2683 + 2684 + void* _CTServerConnectionIsUserIdentityModuleRequired(void) 2685 + { 2686 + if (verbose) puts("STUB: _CTServerConnectionIsUserIdentityModuleRequired called"); 2687 + return NULL; 2688 + } 2689 + 2690 + void* _CTServerConnectionIsValidEmergencyNumber(void) 2691 + { 2692 + if (verbose) puts("STUB: _CTServerConnectionIsValidEmergencyNumber called"); 2693 + return NULL; 2694 + } 2695 + 2696 + void* _CTServerConnectionKeepAliveAssertionCreate(void) 2697 + { 2698 + if (verbose) puts("STUB: _CTServerConnectionKeepAliveAssertionCreate called"); 2699 + return NULL; 2700 + } 2701 + 2702 + void* _CTServerConnectionLoadManagedCellularProfile(void) 2703 + { 2704 + if (verbose) puts("STUB: _CTServerConnectionLoadManagedCellularProfile called"); 2705 + return NULL; 2706 + } 2707 + 2708 + void* _CTServerConnectionLockPostponementTicket(void) 2709 + { 2710 + if (verbose) puts("STUB: _CTServerConnectionLockPostponementTicket called"); 2711 + return NULL; 2712 + } 2713 + 2714 + void* _CTServerConnectionModifyAttachAPNSettings(void) 2715 + { 2716 + if (verbose) puts("STUB: _CTServerConnectionModifyAttachAPNSettings called"); 2717 + return NULL; 2718 + } 2719 + 2720 + void* _CTServerConnectionNetworkMonitorCreateLogChannel(void) 2721 + { 2722 + if (verbose) puts("STUB: _CTServerConnectionNetworkMonitorCreateLogChannel called"); 2723 + return NULL; 2724 + } 2725 + 2726 + void* _CTServerConnectionNetworkSelectionMenuAvailable(void) 2727 + { 2728 + if (verbose) puts("STUB: _CTServerConnectionNetworkSelectionMenuAvailable called"); 2729 + return NULL; 2730 + } 2731 + 2732 + void* _CTServerConnectionOTAActivationAssertionCreate(void) 2733 + { 2734 + if (verbose) puts("STUB: _CTServerConnectionOTAActivationAssertionCreate called"); 2735 + return NULL; 2736 + } 2737 + 2738 + void* _CTServerConnectionPINUnlock(void) 2739 + { 2740 + if (verbose) puts("STUB: _CTServerConnectionPINUnlock called"); 2741 + return NULL; 2742 + } 2743 + 2744 + void* _CTServerConnectionPUKUnlock(void) 2745 + { 2746 + if (verbose) puts("STUB: _CTServerConnectionPUKUnlock called"); 2747 + return NULL; 2748 + } 2749 + 2750 + void* _CTServerConnectionPacketContextAssertionCreate(void) 2751 + { 2752 + if (verbose) puts("STUB: _CTServerConnectionPacketContextAssertionCreate called"); 2753 + return NULL; 2754 + } 2755 + 2756 + void* _CTServerConnectionPerformInternalVinylOperation(void) 2757 + { 2758 + if (verbose) puts("STUB: _CTServerConnectionPerformInternalVinylOperation called"); 2759 + return NULL; 2760 + } 2761 + 2762 + void* _CTServerConnectionPerformMigration(void) 2763 + { 2764 + if (verbose) puts("STUB: _CTServerConnectionPerformMigration called"); 2765 + return NULL; 2766 + } 2767 + 2768 + void* _CTServerConnectionPhoneServicesAccountStatusChanged(void) 2769 + { 2770 + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesAccountStatusChanged called"); 2771 + return NULL; 2772 + } 2773 + 2774 + void* _CTServerConnectionPhoneServicesAddDevice(void) 2775 + { 2776 + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesAddDevice called"); 2777 + return NULL; 2778 + } 2779 + 2780 + void* _CTServerConnectionPhoneServicesDisableDevice(void) 2781 + { 2782 + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesDisableDevice called"); 2783 + return NULL; 2784 + } 2785 + 2786 + void* _CTServerConnectionPhoneServicesEnableDevice(void) 2787 + { 2788 + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesEnableDevice called"); 2789 + return NULL; 2790 + } 2791 + 2792 + void* _CTServerConnectionPhoneServicesGetDeviceInfo(void) 2793 + { 2794 + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesGetDeviceInfo called"); 2795 + return NULL; 2796 + } 2797 + 2798 + void* _CTServerConnectionPhoneServicesGetDeviceList(void) 2799 + { 2800 + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesGetDeviceList called"); 2801 + return NULL; 2802 + } 2803 + 2804 + void* _CTServerConnectionPhoneServicesRemoveDevice(void) 2805 + { 2806 + if (verbose) puts("STUB: _CTServerConnectionPhoneServicesRemoveDevice called"); 2807 + return NULL; 2808 + } 2809 + 2810 + void* _CTServerConnectionQueryAccountInformation(void) 2811 + { 2812 + if (verbose) puts("STUB: _CTServerConnectionQueryAccountInformation called"); 2813 + return NULL; 2814 + } 2815 + 2816 + void* _CTServerConnectionQueryEnhancedLinkQualityMetric(void) 2817 + { 2818 + if (verbose) puts("STUB: _CTServerConnectionQueryEnhancedLinkQualityMetric called"); 2819 + return NULL; 2820 + } 2821 + 2822 + void* _CTServerConnectionRegisterBlockForNotification(void) 2823 + { 2824 + if (verbose) puts("STUB: _CTServerConnectionRegisterBlockForNotification called"); 2825 + return NULL; 2826 + } 2827 + 2828 + void* _CTServerConnectionRegisterForEvent(void) 2829 + { 2830 + if (verbose) puts("STUB: _CTServerConnectionRegisterForEvent called"); 2831 + return NULL; 2832 + } 2833 + 2834 + void* _CTServerConnectionRegisterForNotification(void) 2835 + { 2836 + if (verbose) puts("STUB: _CTServerConnectionRegisterForNotification called"); 2837 + return NULL; 2838 + } 2839 + 2840 + void* _CTServerConnectionRegisterSilentHoursCallback(void) 2841 + { 2842 + if (verbose) puts("STUB: _CTServerConnectionRegisterSilentHoursCallback called"); 2843 + return NULL; 2844 + } 2845 + 2846 + void* _CTServerConnectionRegisterSupportedEnhancedLinkQualityMetric(void) 2847 + { 2848 + if (verbose) puts("STUB: _CTServerConnectionRegisterSupportedEnhancedLinkQualityMetric called"); 2849 + return NULL; 2850 + } 2851 + 2852 + void* _CTServerConnectionRegistrationNotificationAssertionCreate(void) 2853 + { 2854 + if (verbose) puts("STUB: _CTServerConnectionRegistrationNotificationAssertionCreate called"); 2855 + return NULL; 2856 + } 2857 + 2858 + void* _CTServerConnectionReleaseQOS(void) 2859 + { 2860 + if (verbose) puts("STUB: _CTServerConnectionReleaseQOS called"); 2861 + return NULL; 2862 + } 2863 + 2864 + void* _CTServerConnectionRemoveVictimFreq(void) 2865 + { 2866 + if (verbose) puts("STUB: _CTServerConnectionRemoveVictimFreq called"); 2867 + return NULL; 2868 + } 2869 + 2870 + void* _CTServerConnectionRequestQOS(void) 2871 + { 2872 + if (verbose) puts("STUB: _CTServerConnectionRequestQOS called"); 2873 + return NULL; 2874 + } 2875 + 2876 + void* _CTServerConnectionResetCarrierBundle(void) 2877 + { 2878 + if (verbose) puts("STUB: _CTServerConnectionResetCarrierBundle called"); 2879 + return NULL; 2880 + } 2881 + 2882 + void* _CTServerConnectionResetModem(void) 2883 + { 2884 + if (verbose) puts("STUB: _CTServerConnectionResetModem called"); 2885 + return NULL; 2886 + } 2887 + 2888 + void* _CTServerConnectionResetModemWithCrashLogs(void) 2889 + { 2890 + if (verbose) puts("STUB: _CTServerConnectionResetModemWithCrashLogs called"); 2891 + return NULL; 2892 + } 2893 + 2894 + void* _CTServerConnectionResetPacketContextSettings(void) 2895 + { 2896 + if (verbose) puts("STUB: _CTServerConnectionResetPacketContextSettings called"); 2897 + return NULL; 2898 + } 2899 + 2900 + void* _CTServerConnectionResetPacketContextStatistics(void) 2901 + { 2902 + if (verbose) puts("STUB: _CTServerConnectionResetPacketContextStatistics called"); 2903 + return NULL; 2904 + } 2905 + 2906 + void* _CTServerConnectionResetUIConfiguredApns(void) 2907 + { 2908 + if (verbose) puts("STUB: _CTServerConnectionResetUIConfiguredApns called"); 2909 + return NULL; 2910 + } 2911 + 2912 + void* _CTServerConnectionResumePacketContextSettings(void) 2913 + { 2914 + if (verbose) puts("STUB: _CTServerConnectionResumePacketContextSettings called"); 2915 + return NULL; 2916 + } 2917 + 2918 + void* _CTServerConnectionSIMToolkitDisplayReady(void) 2919 + { 2920 + if (verbose) puts("STUB: _CTServerConnectionSIMToolkitDisplayReady called"); 2921 + return NULL; 2922 + } 2923 + 2924 + void* _CTServerConnectionSavePhonebookEntry(void) 2925 + { 2926 + if (verbose) puts("STUB: _CTServerConnectionSavePhonebookEntry called"); 2927 + return NULL; 2928 + } 2929 + 2930 + void* _CTServerConnectionSelectNetwork(void) 2931 + { 2932 + if (verbose) puts("STUB: _CTServerConnectionSelectNetwork called"); 2933 + return NULL; 2934 + } 2935 + 2936 + void* _CTServerConnectionSelectPhonebook(void) 2937 + { 2938 + if (verbose) puts("STUB: _CTServerConnectionSelectPhonebook called"); 2939 + return NULL; 2940 + } 2941 + 2942 + void* _CTServerConnectionSelectSIMToolkitListItem(void) 2943 + { 2944 + if (verbose) puts("STUB: _CTServerConnectionSelectSIMToolkitListItem called"); 2945 + return NULL; 2946 + } 2947 + 2948 + void* _CTServerConnectionSelectSIMToolkitMenuItem(void) 2949 + { 2950 + if (verbose) puts("STUB: _CTServerConnectionSelectSIMToolkitMenuItem called"); 2951 + return NULL; 2952 + } 2953 + 2954 + void* _CTServerConnectionSendAwdQueriableMetric(void) 2955 + { 2956 + if (verbose) puts("STUB: _CTServerConnectionSendAwdQueriableMetric called"); 2957 + return NULL; 2958 + } 2959 + 2960 + void* _CTServerConnectionSendBarrier(void) 2961 + { 2962 + if (verbose) puts("STUB: _CTServerConnectionSendBarrier called"); 2963 + return NULL; 2964 + } 2965 + 2966 + void* _CTServerConnectionSendEnhancedLinkQualityTrafficInfo(void) 2967 + { 2968 + if (verbose) puts("STUB: _CTServerConnectionSendEnhancedLinkQualityTrafficInfo called"); 2969 + return NULL; 2970 + } 2971 + 2972 + void* _CTServerConnectionSendRemoteRestoreToDefault(void) 2973 + { 2974 + if (verbose) puts("STUB: _CTServerConnectionSendRemoteRestoreToDefault called"); 2975 + return NULL; 2976 + } 2977 + 2978 + void* _CTServerConnectionSendSIMToolkitBooleanResponse(void) 2979 + { 2980 + if (verbose) puts("STUB: _CTServerConnectionSendSIMToolkitBooleanResponse called"); 2981 + return NULL; 2982 + } 2983 + 2984 + void* _CTServerConnectionSendSIMToolkitResponse(void) 2985 + { 2986 + if (verbose) puts("STUB: _CTServerConnectionSendSIMToolkitResponse called"); 2987 + return NULL; 2988 + } 2989 + 2990 + void* _CTServerConnectionSendSIMToolkitStringResponse(void) 2991 + { 2992 + if (verbose) puts("STUB: _CTServerConnectionSendSIMToolkitStringResponse called"); 2993 + return NULL; 2994 + } 2995 + 2996 + void* _CTServerConnectionSendUSSDResponse(void) 2997 + { 2998 + if (verbose) puts("STUB: _CTServerConnectionSendUSSDResponse called"); 2999 + return NULL; 3000 + } 3001 + 3002 + void* _CTServerConnectionSendUserActivity(void) 3003 + { 3004 + if (verbose) puts("STUB: _CTServerConnectionSendUserActivity called"); 3005 + return NULL; 3006 + } 3007 + 3008 + void* _CTServerConnectionSetActiveAudioSystemConfiguration(void) 3009 + { 3010 + if (verbose) puts("STUB: _CTServerConnectionSetActiveAudioSystemConfiguration called"); 3011 + return NULL; 3012 + } 3013 + 3014 + void* _CTServerConnectionSetAudioLoggingEnabled(void) 3015 + { 3016 + if (verbose) puts("STUB: _CTServerConnectionSetAudioLoggingEnabled called"); 3017 + return NULL; 3018 + } 3019 + 3020 + void* _CTServerConnectionSetAudioPath(void) 3021 + { 3022 + if (verbose) puts("STUB: _CTServerConnectionSetAudioPath called"); 3023 + return NULL; 3024 + } 3025 + 3026 + void* _CTServerConnectionSetBandInfo(void) 3027 + { 3028 + if (verbose) puts("STUB: _CTServerConnectionSetBandInfo called"); 3029 + return NULL; 3030 + } 3031 + 3032 + void* _CTServerConnectionSetBasebandSettings(void) 3033 + { 3034 + if (verbose) puts("STUB: _CTServerConnectionSetBasebandSettings called"); 3035 + return NULL; 3036 + } 3037 + 3038 + void* _CTServerConnectionSetCDMAInternationalRoaming(void) 3039 + { 3040 + if (verbose) puts("STUB: _CTServerConnectionSetCDMAInternationalRoaming called"); 3041 + return NULL; 3042 + } 3043 + 3044 + void* _CTServerConnectionSetCampOnlyMode(void) 3045 + { 3046 + if (verbose) puts("STUB: _CTServerConnectionSetCampOnlyMode called"); 3047 + return NULL; 3048 + } 3049 + 3050 + void* _CTServerConnectionSetCapability(void) 3051 + { 3052 + if (verbose) puts("STUB: _CTServerConnectionSetCapability called"); 3053 + return NULL; 3054 + } 3055 + 3056 + void* _CTServerConnectionSetCapabilityExtended(void) 3057 + { 3058 + if (verbose) puts("STUB: _CTServerConnectionSetCapabilityExtended called"); 3059 + return NULL; 3060 + } 3061 + 3062 + void* _CTServerConnectionSetCellBroadcastSettingForAlertType(void) 3063 + { 3064 + if (verbose) puts("STUB: _CTServerConnectionSetCellBroadcastSettingForAlertType called"); 3065 + return NULL; 3066 + } 3067 + 3068 + void* _CTServerConnectionSetCellularDataIsDisallowed(void) 3069 + { 3070 + if (verbose) puts("STUB: _CTServerConnectionSetCellularDataIsDisallowed called"); 3071 + return NULL; 3072 + } 3073 + 3074 + void* _CTServerConnectionSetCellularDataIsEnabled(void) 3075 + { 3076 + if (verbose) puts("STUB: _CTServerConnectionSetCellularDataIsEnabled called"); 3077 + return NULL; 3078 + } 3079 + 3080 + void* _CTServerConnectionSetCellularDataIsEnabledEx(void) 3081 + { 3082 + if (verbose) puts("STUB: _CTServerConnectionSetCellularDataIsEnabledEx called"); 3083 + return NULL; 3084 + } 3085 + 3086 + void* _CTServerConnectionSetCellularUsagePolicy(void) 3087 + { 3088 + if (verbose) puts("STUB: _CTServerConnectionSetCellularUsagePolicy called"); 3089 + return NULL; 3090 + } 3091 + 3092 + void* _CTServerConnectionSetCellularUsagePolicyEx(void) 3093 + { 3094 + if (verbose) puts("STUB: _CTServerConnectionSetCellularUsagePolicyEx called"); 3095 + return NULL; 3096 + } 3097 + 3098 + void* _CTServerConnectionSetCellularUsagePolicyMirroring(void) 3099 + { 3100 + if (verbose) puts("STUB: _CTServerConnectionSetCellularUsagePolicyMirroring called"); 3101 + return NULL; 3102 + } 3103 + 3104 + void* _CTServerConnectionSetCellularUsagePolicyOsVersion(void) 3105 + { 3106 + if (verbose) puts("STUB: _CTServerConnectionSetCellularUsagePolicyOsVersion called"); 3107 + return NULL; 3108 + } 3109 + 3110 + void* _CTServerConnectionSetChannelMute(void) 3111 + { 3112 + if (verbose) puts("STUB: _CTServerConnectionSetChannelMute called"); 3113 + return NULL; 3114 + } 3115 + 3116 + void* _CTServerConnectionSetCivicInfoBasedOnCurrentLocation(void) 3117 + { 3118 + if (verbose) puts("STUB: _CTServerConnectionSetCivicInfoBasedOnCurrentLocation called"); 3119 + return NULL; 3120 + } 3121 + 3122 + void* _CTServerConnectionSetDTMFType(void) 3123 + { 3124 + if (verbose) puts("STUB: _CTServerConnectionSetDTMFType called"); 3125 + return NULL; 3126 + } 3127 + 3128 + void* _CTServerConnectionSetDefaultConnection(void) 3129 + { 3130 + if (verbose) puts("STUB: _CTServerConnectionSetDefaultConnection called"); 3131 + return NULL; 3132 + } 3133 + 3134 + void* _CTServerConnectionSetDisallowTelephonyFeature(void) 3135 + { 3136 + if (verbose) puts("STUB: _CTServerConnectionSetDisallowTelephonyFeature called"); 3137 + return NULL; 3138 + } 3139 + 3140 + void* _CTServerConnectionSetEMBMSActive(void) 3141 + { 3142 + if (verbose) puts("STUB: _CTServerConnectionSetEMBMSActive called"); 3143 + return NULL; 3144 + } 3145 + 3146 + void* _CTServerConnectionSetEMBMSSAIInterestedInfo(void) 3147 + { 3148 + if (verbose) puts("STUB: _CTServerConnectionSetEMBMSSAIInterestedInfo called"); 3149 + return NULL; 3150 + } 3151 + 3152 + void* _CTServerConnectionSetEnableOnlyHomeNetwork(void) 3153 + { 3154 + if (verbose) puts("STUB: _CTServerConnectionSetEnableOnlyHomeNetwork called"); 3155 + return NULL; 3156 + } 3157 + 3158 + void* _CTServerConnectionSetI2SFormat(void) 3159 + { 3160 + if (verbose) puts("STUB: _CTServerConnectionSetI2SFormat called"); 3161 + return NULL; 3162 + } 3163 + 3164 + void* _CTServerConnectionSetInternalManagedState(void) 3165 + { 3166 + if (verbose) puts("STUB: _CTServerConnectionSetInternalManagedState called"); 3167 + return NULL; 3168 + } 3169 + 3170 + void* _CTServerConnectionSetInternationalDataAccessStatus(void) 3171 + { 3172 + if (verbose) puts("STUB: _CTServerConnectionSetInternationalDataAccessStatus called"); 3173 + return NULL; 3174 + } 3175 + 3176 + void* _CTServerConnectionSetMasterMute(void) 3177 + { 3178 + if (verbose) puts("STUB: _CTServerConnectionSetMasterMute called"); 3179 + return NULL; 3180 + } 3181 + 3182 + void* _CTServerConnectionSetMaxAllowedDataRate(void) 3183 + { 3184 + if (verbose) puts("STUB: _CTServerConnectionSetMaxAllowedDataRate called"); 3185 + return NULL; 3186 + } 3187 + 3188 + void* _CTServerConnectionSetMaxTemperature(void) 3189 + { 3190 + if (verbose) puts("STUB: _CTServerConnectionSetMaxTemperature called"); 3191 + return NULL; 3192 + } 3193 + 3194 + void* _CTServerConnectionSetMaxTransmitPower(void) 3195 + { 3196 + if (verbose) puts("STUB: _CTServerConnectionSetMaxTransmitPower called"); 3197 + return NULL; 3198 + } 3199 + 3200 + void* _CTServerConnectionSetMixState(void) 3201 + { 3202 + if (verbose) puts("STUB: _CTServerConnectionSetMixState called"); 3203 + return NULL; 3204 + } 3205 + 3206 + void* _CTServerConnectionSetOTAServerOverride(void) 3207 + { 3208 + if (verbose) puts("STUB: _CTServerConnectionSetOTAServerOverride called"); 3209 + return NULL; 3210 + } 3211 + 3212 + void* _CTServerConnectionSetPacketContextActive(void) 3213 + { 3214 + if (verbose) puts("STUB: _CTServerConnectionSetPacketContextActive called"); 3215 + return NULL; 3216 + } 3217 + 3218 + void* _CTServerConnectionSetPacketContextActiveByServiceType(void) 3219 + { 3220 + if (verbose) puts("STUB: _CTServerConnectionSetPacketContextActiveByServiceType called"); 3221 + return NULL; 3222 + } 3223 + 3224 + void* _CTServerConnectionSetPacketNotificationFilter(void) 3225 + { 3226 + if (verbose) puts("STUB: _CTServerConnectionSetPacketNotificationFilter called"); 3227 + return NULL; 3228 + } 3229 + 3230 + void* _CTServerConnectionSetPacketProtocolActiveByInterface(void) 3231 + { 3232 + if (verbose) puts("STUB: _CTServerConnectionSetPacketProtocolActiveByInterface called"); 3233 + return NULL; 3234 + } 3235 + 3236 + void* _CTServerConnectionSetPacketProtocolActiveByServiceType(void) 3237 + { 3238 + if (verbose) puts("STUB: _CTServerConnectionSetPacketProtocolActiveByServiceType called"); 3239 + return NULL; 3240 + } 3241 + 3242 + void* _CTServerConnectionSetPeriodicTemperatureUpdate(void) 3243 + { 3244 + if (verbose) puts("STUB: _CTServerConnectionSetPeriodicTemperatureUpdate called"); 3245 + return NULL; 3246 + } 3247 + 3248 + void* _CTServerConnectionSetPostponementTicket(void) 3249 + { 3250 + if (verbose) puts("STUB: _CTServerConnectionSetPostponementTicket called"); 3251 + return NULL; 3252 + } 3253 + 3254 + void* _CTServerConnectionSetRATSelection(void) 3255 + { 3256 + if (verbose) puts("STUB: _CTServerConnectionSetRATSelection called"); 3257 + return NULL; 3258 + } 3259 + 3260 + void* _CTServerConnectionSetReliableNetworkFallbackToCellular(void) 3261 + { 3262 + if (verbose) puts("STUB: _CTServerConnectionSetReliableNetworkFallbackToCellular called"); 3263 + return NULL; 3264 + } 3265 + 3266 + void* _CTServerConnectionSetShowUsageAlert(void) 3267 + { 3268 + if (verbose) puts("STUB: _CTServerConnectionSetShowUsageAlert called"); 3269 + return NULL; 3270 + } 3271 + 3272 + void* _CTServerConnectionSetSourceGain(void) 3273 + { 3274 + if (verbose) puts("STUB: _CTServerConnectionSetSourceGain called"); 3275 + return NULL; 3276 + } 3277 + 3278 + void* _CTServerConnectionSetTTYMode(void) 3279 + { 3280 + if (verbose) puts("STUB: _CTServerConnectionSetTTYMode called"); 3281 + return NULL; 3282 + } 3283 + 3284 + void* _CTServerConnectionSetTargetQueue(void) 3285 + { 3286 + if (verbose) puts("STUB: _CTServerConnectionSetTargetQueue called"); 3287 + return NULL; 3288 + } 3289 + 3290 + void* _CTServerConnectionSetTestModeFunction(void) 3291 + { 3292 + if (verbose) puts("STUB: _CTServerConnectionSetTestModeFunction called"); 3293 + return NULL; 3294 + } 3295 + 3296 + void* _CTServerConnectionSetTimeCacheValidityPeriod(void) 3297 + { 3298 + if (verbose) puts("STUB: _CTServerConnectionSetTimeCacheValidityPeriod called"); 3299 + return NULL; 3300 + } 3301 + 3302 + void* _CTServerConnectionSetTraceProperty(void) 3303 + { 3304 + if (verbose) puts("STUB: _CTServerConnectionSetTraceProperty called"); 3305 + return NULL; 3306 + } 3307 + 3308 + void* _CTServerConnectionSetUIConfiguredApns(void) 3309 + { 3310 + if (verbose) puts("STUB: _CTServerConnectionSetUIConfiguredApns called"); 3311 + return NULL; 3312 + } 3313 + 3314 + void* _CTServerConnectionSetUsageAlertParameters(void) 3315 + { 3316 + if (verbose) puts("STUB: _CTServerConnectionSetUsageAlertParameters called"); 3317 + return NULL; 3318 + } 3319 + 3320 + void* _CTServerConnectionSetVibratorState(void) 3321 + { 3322 + if (verbose) puts("STUB: _CTServerConnectionSetVibratorState called"); 3323 + return NULL; 3324 + } 3325 + 3326 + void* _CTServerConnectionSetVoiceMute(void) 3327 + { 3328 + if (verbose) puts("STUB: _CTServerConnectionSetVoiceMute called"); 3329 + return NULL; 3330 + } 3331 + 3332 + void* _CTServerConnectionShouldDiscourageDisableLteDataRate(void) 3333 + { 3334 + if (verbose) puts("STUB: _CTServerConnectionShouldDiscourageDisableLteDataRate called"); 3335 + return NULL; 3336 + } 3337 + 3338 + void* _CTServerConnectionShouldWarnDisabledLteMayImpactService(void) 3339 + { 3340 + if (verbose) puts("STUB: _CTServerConnectionShouldWarnDisabledLteMayImpactService called"); 3341 + return NULL; 3342 + } 3343 + 3344 + void* _CTServerConnectionSilenceAssertionCreate(void) 3345 + { 3346 + if (verbose) puts("STUB: _CTServerConnectionSilenceAssertionCreate called"); 3347 + return NULL; 3348 + } 3349 + 3350 + void* _CTServerConnectionSimRefresh(void) 3351 + { 3352 + if (verbose) puts("STUB: _CTServerConnectionSimRefresh called"); 3353 + return NULL; 3354 + } 3355 + 3356 + void* _CTServerConnectionStartAudioTone(void) 3357 + { 3358 + if (verbose) puts("STUB: _CTServerConnectionStartAudioTone called"); 3359 + return NULL; 3360 + } 3361 + 3362 + void* _CTServerConnectionStopAudioTone(void) 3363 + { 3364 + if (verbose) puts("STUB: _CTServerConnectionStopAudioTone called"); 3365 + return NULL; 3366 + } 3367 + 3368 + void* _CTServerConnectionSuspendPacketContextSettings(void) 3369 + { 3370 + if (verbose) puts("STUB: _CTServerConnectionSuspendPacketContextSettings called"); 3371 + return NULL; 3372 + } 3373 + 3374 + void* _CTServerConnectionTetheringAssertionCreate(void) 3375 + { 3376 + if (verbose) puts("STUB: _CTServerConnectionTetheringAssertionCreate called"); 3377 + return NULL; 3378 + } 3379 + 3380 + void* _CTServerConnectionUIMAuthenticate(void) 3381 + { 3382 + if (verbose) puts("STUB: _CTServerConnectionUIMAuthenticate called"); 3383 + return NULL; 3384 + } 3385 + 3386 + void* _CTServerConnectionUnloadManagedCellularProfile(void) 3387 + { 3388 + if (verbose) puts("STUB: _CTServerConnectionUnloadManagedCellularProfile called"); 3389 + return NULL; 3390 + } 3391 + 3392 + void* _CTServerConnectionUnlockPostponementTicket(void) 3393 + { 3394 + if (verbose) puts("STUB: _CTServerConnectionUnlockPostponementTicket called"); 3395 + return NULL; 3396 + } 3397 + 3398 + void* _CTServerConnectionUnregisterForAllNotifications(void) 3399 + { 3400 + if (verbose) puts("STUB: _CTServerConnectionUnregisterForAllNotifications called"); 3401 + return NULL; 3402 + } 3403 + 3404 + void* _CTServerConnectionUnregisterForEvent(void) 3405 + { 3406 + if (verbose) puts("STUB: _CTServerConnectionUnregisterForEvent called"); 3407 + return NULL; 3408 + } 3409 + 3410 + void* _CTServerConnectionUnregisterForNotification(void) 3411 + { 3412 + if (verbose) puts("STUB: _CTServerConnectionUnregisterForNotification called"); 3413 + return NULL; 3414 + } 3415 + 3416 + void* _CTServerConnectionUnregisterSilentHoursCallback(void) 3417 + { 3418 + if (verbose) puts("STUB: _CTServerConnectionUnregisterSilentHoursCallback called"); 3419 + return NULL; 3420 + } 3421 + 3422 + void* _CTServerConnectionUpdateAccountWithFeatureOrService(void) 3423 + { 3424 + if (verbose) puts("STUB: _CTServerConnectionUpdateAccountWithFeatureOrService called"); 3425 + return NULL; 3426 + } 3427 + 3428 + void* _CTServerConnectionUpdateCarrierPushToken(void) 3429 + { 3430 + if (verbose) puts("STUB: _CTServerConnectionUpdateCarrierPushToken called"); 3431 + return NULL; 3432 + } 3433 + 3434 + void* _CTServerConnectionUpdateProtocolQualityOfService(void) 3435 + { 3436 + if (verbose) puts("STUB: _CTServerConnectionUpdateProtocolQualityOfService called"); 3437 + return NULL; 3438 + } 3439 + 3440 + void* _CTServerConnectionUpdateQualityOfService(void) 3441 + { 3442 + if (verbose) puts("STUB: _CTServerConnectionUpdateQualityOfService called"); 3443 + return NULL; 3444 + } 3445 + 3446 + void* _CTServerConnectionVerifyCarrierEntitlements(void) 3447 + { 3448 + if (verbose) puts("STUB: _CTServerConnectionVerifyCarrierEntitlements called"); 3449 + return NULL; 3450 + } 3451 + 3452 + void* _CTServerEnableFastDormancy(void) 3453 + { 3454 + if (verbose) puts("STUB: _CTServerEnableFastDormancy called"); 3455 + return NULL; 3456 + } 3457 + 3458 + void* _CTServerForceFastDormancy(void) 3459 + { 3460 + if (verbose) puts("STUB: _CTServerForceFastDormancy called"); 3461 + return NULL; 3462 + } 3463 + 3464 + void* _CTServerIsFastDormancyEnabled(void) 3465 + { 3466 + if (verbose) puts("STUB: _CTServerIsFastDormancyEnabled called"); 3467 + return NULL; 3468 + } 3469 + 3470 + void* _CTServerSetSupportsVoiceCall(void) 3471 + { 3472 + if (verbose) puts("STUB: _CTServerSetSupportsVoiceCall called"); 3473 + return NULL; 3474 + } 3475 + 3476 + void* _ConvertBinaryToHex(void) 3477 + { 3478 + if (verbose) puts("STUB: _ConvertBinaryToHex called"); 3479 + return NULL; 3480 + } 3481 + 3482 + void* _CreateDirectoriesToPath(void) 3483 + { 3484 + if (verbose) puts("STUB: _CreateDirectoriesToPath called"); 3485 + return NULL; 3486 + } 3487 + 3488 + void* _GetMobileUserDirectory(void) 3489 + { 3490 + if (verbose) puts("STUB: _GetMobileUserDirectory called"); 3491 + return NULL; 3492 + } 3493 + 3494 + void* _GetMobileUserGID(void) 3495 + { 3496 + if (verbose) puts("STUB: _GetMobileUserGID called"); 3497 + return NULL; 3498 + } 3499 + 3500 + void* _GetMobileUserUID(void) 3501 + { 3502 + if (verbose) puts("STUB: _GetMobileUserUID called"); 3503 + return NULL; 3504 + } 3505 + 3506 + void* _GetWirelessUserDirectory(void) 3507 + { 3508 + if (verbose) puts("STUB: _GetWirelessUserDirectory called"); 3509 + return NULL; 3510 + } 3511 + 3512 + void* _GetWirelessUserGID(void) 3513 + { 3514 + if (verbose) puts("STUB: _GetWirelessUserGID called"); 3515 + return NULL; 3516 + } 3517 + 3518 + void* _GetWirelessUserUID(void) 3519 + { 3520 + if (verbose) puts("STUB: _GetWirelessUserUID called"); 3521 + return NULL; 3522 + } 3523 + 3524 + void* _SynchronizeCommCenterPreferences(void) 3525 + { 3526 + if (verbose) puts("STUB: _SynchronizeCommCenterPreferences called"); 3527 + return NULL; 3528 + } 3529 + 3530 + void* _Z10asCFString24EntitlementAuthTokenType(void) 3531 + { 3532 + if (verbose) puts("STUB: _Z10asCFString24EntitlementAuthTokenType called"); 3533 + return NULL; 3534 + } 3535 + 3536 + void* _Z10createPLMNRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_(void) 3537 + { 3538 + if (verbose) puts("STUB: _Z10createPLMNRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_ called"); 3539 + return NULL; 3540 + } 3541 + 3542 + void* _Z10createPLMNii(void) 3543 + { 3544 + if (verbose) puts("STUB: _Z10createPLMNii called"); 3545 + return NULL; 3546 + } 3547 + 3548 + void* _Z10createPLMNiib(void) 3549 + { 3550 + if (verbose) puts("STUB: _Z10createPLMNiib called"); 3551 + return NULL; 3552 + } 3553 + 3554 + void* _Z12createCFPLMNRK3MCCRK3MNC(void) 3555 + { 3556 + if (verbose) puts("STUB: _Z12createCFPLMNRK3MCCRK3MNC called"); 3557 + return NULL; 3558 + } 3559 + 3560 + void* _Z15TTYTypeAsString7TTYType(void) 3561 + { 3562 + if (verbose) puts("STUB: _Z15TTYTypeAsString7TTYType called"); 3563 + return NULL; 3564 + } 3565 + 3566 + void* _Z17isEmergencyNumberRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE(void) 3567 + { 3568 + if (verbose) puts("STUB: _Z17isEmergencyNumberRKNSt3__112basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEE called"); 3569 + return NULL; 3570 + } 3571 + 3572 + void* _Z18EmCallTypeAsString23CTCallEmergencyCallType(void) 3573 + { 3574 + if (verbose) puts("STUB: _Z18EmCallTypeAsString23CTCallEmergencyCallType called"); 3575 + return NULL; 3576 + } 3577 + 3578 + void* _Z22CTGetRootVersionStringv(void) 3579 + { 3580 + if (verbose) puts("STUB: _Z22CTGetRootVersionStringv called"); 3581 + return NULL; 3582 + } 3583 + 3584 + void* _Z22callSourceModeAsString16CCCallSourceMode(void) 3585 + { 3586 + if (verbose) puts("STUB: _Z22callSourceModeAsString16CCCallSourceMode called"); 3587 + return NULL; 3588 + } 3589 + 3590 + void* _Z8asString20EntitlementTopicType(void) 3591 + { 3592 + if (verbose) puts("STUB: _Z8asString20EntitlementTopicType called"); 3593 + return NULL; 3594 + } 3595 + 3596 + void* _Z8asString24EntitlementAuthTokenType(void) 3597 + { 3598 + if (verbose) puts("STUB: _Z8asString24EntitlementAuthTokenType called"); 3599 + return NULL; 3600 + } 3601 + 3602 + void* _Z8asStringN19NetworkNotification16NotificationTypeE(void) 3603 + { 3604 + if (verbose) puts("STUB: _Z8asStringN19NetworkNotification16NotificationTypeE called"); 3605 + return NULL; 3606 + } 3607 + 3608 + void* _Z8formPLMNRK3MCCRK3MNC(void) 3609 + { 3610 + if (verbose) puts("STUB: _Z8formPLMNRK3MCCRK3MNC called"); 3611 + return NULL; 3612 + } 3613 + 3614 + void* _ZN14CSIPhoneNumber13setBaseNumberEPKc(void) 3615 + { 3616 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber13setBaseNumberEPKc called"); 3617 + return NULL; 3618 + } 3619 + 3620 + void* _ZN14CSIPhoneNumber13setBaseNumberERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3621 + { 3622 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber13setBaseNumberERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3623 + return NULL; 3624 + } 3625 + 3626 + void* _ZN14CSIPhoneNumber13setDtmfStringERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3627 + { 3628 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber13setDtmfStringERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3629 + return NULL; 3630 + } 3631 + 3632 + void* _ZN14CSIPhoneNumber15setTypeOfNumberE15PhoneNumberType(void) 3633 + { 3634 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber15setTypeOfNumberE15PhoneNumberType called"); 3635 + return NULL; 3636 + } 3637 + 3638 + void* _ZN14CSIPhoneNumber16setTypeOfAddressEi(void) 3639 + { 3640 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber16setTypeOfAddressEi called"); 3641 + return NULL; 3642 + } 3643 + 3644 + void* _ZN14CSIPhoneNumber19setCLIRRequestStateE16CLIRRequestState(void) 3645 + { 3646 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber19setCLIRRequestStateE16CLIRRequestState called"); 3647 + return NULL; 3648 + } 3649 + 3650 + void* _ZN14CSIPhoneNumber20setEmergencyCategoryEj(void) 3651 + { 3652 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber20setEmergencyCategoryEj called"); 3653 + return NULL; 3654 + } 3655 + 3656 + void* _ZN14CSIPhoneNumber22setIsListedAsEmergencyEb(void) 3657 + { 3658 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber22setIsListedAsEmergencyEb called"); 3659 + return NULL; 3660 + } 3661 + 3662 + void* _ZN14CSIPhoneNumber23setIsEmSMSTextSupportedEb(void) 3663 + { 3664 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber23setIsEmSMSTextSupportedEb called"); 3665 + return NULL; 3666 + } 3667 + 3668 + void* _ZN14CSIPhoneNumber27convertLettersToPhoneNumberEv(void) 3669 + { 3670 + if (verbose) puts("STUB: _ZN14CSIPhoneNumber27convertLettersToPhoneNumberEv called"); 3671 + return NULL; 3672 + } 3673 + 3674 + void* _ZN14CSIPhoneNumberC1EPKc(void) 3675 + { 3676 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1EPKc called"); 3677 + return NULL; 3678 + } 3679 + 3680 + void* _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3681 + { 3682 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3683 + return NULL; 3684 + } 3685 + 3686 + void* _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType(void) 3687 + { 3688 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType called"); 3689 + return NULL; 3690 + } 3691 + 3692 + void* _ZN14CSIPhoneNumberC1EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3693 + { 3694 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3695 + return NULL; 3696 + } 3697 + 3698 + void* _ZN14CSIPhoneNumberC1Ev(void) 3699 + { 3700 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC1Ev called"); 3701 + return NULL; 3702 + } 3703 + 3704 + void* _ZN14CSIPhoneNumberC2EPKc(void) 3705 + { 3706 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2EPKc called"); 3707 + return NULL; 3708 + } 3709 + 3710 + void* _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3711 + { 3712 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3713 + return NULL; 3714 + } 3715 + 3716 + void* _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType(void) 3717 + { 3718 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE15PhoneNumberType called"); 3719 + return NULL; 3720 + } 3721 + 3722 + void* _ZN14CSIPhoneNumberC2EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3723 + { 3724 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2EiRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3725 + return NULL; 3726 + } 3727 + 3728 + void* _ZN14CSIPhoneNumberC2Ev(void) 3729 + { 3730 + if (verbose) puts("STUB: _ZN14CSIPhoneNumberC2Ev called"); 3731 + return NULL; 3732 + } 3733 + 3734 + void* _ZN19NetworkNotification14_ConvertToBoolEPK10__CFStringRPKv(void) 3735 + { 3736 + if (verbose) puts("STUB: _ZN19NetworkNotification14_ConvertToBoolEPK10__CFStringRPKv called"); 3737 + return NULL; 3738 + } 3739 + 3740 + void* _ZN19NetworkNotification14_ConvertToDateEPK10__CFStringRPKv(void) 3741 + { 3742 + if (verbose) puts("STUB: _ZN19NetworkNotification14_ConvertToDateEPK10__CFStringRPKv called"); 3743 + return NULL; 3744 + } 3745 + 3746 + void* _ZN19NetworkNotification14setValueForKeyEPK10__CFStringS2_NS_24NotificationTrackChangesE(void) 3747 + { 3748 + if (verbose) puts("STUB: _ZN19NetworkNotification14setValueForKeyEPK10__CFStringS2_NS_24NotificationTrackChangesE called"); 3749 + return NULL; 3750 + } 3751 + 3752 + void* _ZN19NetworkNotification15_GetTypeForNameEPK10__CFString(void) 3753 + { 3754 + if (verbose) puts("STUB: _ZN19NetworkNotification15_GetTypeForNameEPK10__CFString called"); 3755 + return NULL; 3756 + } 3757 + 3758 + void* _ZN19NetworkNotification16_ConvertToNumberEPK10__CFStringRPKv(void) 3759 + { 3760 + if (verbose) puts("STUB: _ZN19NetworkNotification16_ConvertToNumberEPK10__CFStringRPKv called"); 3761 + return NULL; 3762 + } 3763 + 3764 + void* _ZN19NetworkNotification18notificationStringEv(void) 3765 + { 3766 + if (verbose) puts("STUB: _ZN19NetworkNotification18notificationStringEv called"); 3767 + return NULL; 3768 + } 3769 + 3770 + void* _ZN19NetworkNotification18parsedNotificationEv(void) 3771 + { 3772 + if (verbose) puts("STUB: _ZN19NetworkNotification18parsedNotificationEv called"); 3773 + return NULL; 3774 + } 3775 + 3776 + void* _ZN19NetworkNotification21_GetFinalFormForValueEPK10__CFStringS2_RPKv(void) 3777 + { 3778 + if (verbose) puts("STUB: _ZN19NetworkNotification21_GetFinalFormForValueEPK10__CFStringS2_RPKv called"); 3779 + return NULL; 3780 + } 3781 + 3782 + void* _ZN19NetworkNotification24_parseNotificationStringEv(void) 3783 + { 3784 + if (verbose) puts("STUB: _ZN19NetworkNotification24_parseNotificationStringEv called"); 3785 + return NULL; 3786 + } 3787 + 3788 + void* _ZN19NetworkNotification30_NotificationKeyIsValidForTypeEPK10__CFString(void) 3789 + { 3790 + if (verbose) puts("STUB: _ZN19NetworkNotification30_NotificationKeyIsValidForTypeEPK10__CFString called"); 3791 + return NULL; 3792 + } 3793 + 3794 + void* _ZN19NetworkNotification3urlEv(void) 3795 + { 3796 + if (verbose) puts("STUB: _ZN19NetworkNotification3urlEv called"); 3797 + return NULL; 3798 + } 3799 + 3800 + void* _ZN19NetworkNotification4nameEv(void) 3801 + { 3802 + if (verbose) puts("STUB: _ZN19NetworkNotification4nameEv called"); 3803 + return NULL; 3804 + } 3805 + 3806 + void* _ZN19NetworkNotification4typeEv(void) 3807 + { 3808 + if (verbose) puts("STUB: _ZN19NetworkNotification4typeEv called"); 3809 + return NULL; 3810 + } 3811 + 3812 + void* _ZN19NetworkNotificationC1EPK10__CFString(void) 3813 + { 3814 + if (verbose) puts("STUB: _ZN19NetworkNotificationC1EPK10__CFString called"); 3815 + return NULL; 3816 + } 3817 + 3818 + void* _ZN19NetworkNotificationC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3819 + { 3820 + if (verbose) puts("STUB: _ZN19NetworkNotificationC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3821 + return NULL; 3822 + } 3823 + 3824 + void* _ZN19NetworkNotificationC2EPK10__CFString(void) 3825 + { 3826 + if (verbose) puts("STUB: _ZN19NetworkNotificationC2EPK10__CFString called"); 3827 + return NULL; 3828 + } 3829 + 3830 + void* _ZN19NetworkNotificationC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3831 + { 3832 + if (verbose) puts("STUB: _ZN19NetworkNotificationC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3833 + return NULL; 3834 + } 3835 + 3836 + void* _ZN19NetworkNotificationD1Ev(void) 3837 + { 3838 + if (verbose) puts("STUB: _ZN19NetworkNotificationD1Ev called"); 3839 + return NULL; 3840 + } 3841 + 3842 + void* _ZN19NetworkNotificationD2Ev(void) 3843 + { 3844 + if (verbose) puts("STUB: _ZN19NetworkNotificationD2Ev called"); 3845 + return NULL; 3846 + } 3847 + 3848 + void* _ZN3MCC5clearEv(void) 3849 + { 3850 + if (verbose) puts("STUB: _ZN3MCC5clearEv called"); 3851 + return NULL; 3852 + } 3853 + 3854 + void* _ZN3MCCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3855 + { 3856 + if (verbose) puts("STUB: _ZN3MCCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3857 + return NULL; 3858 + } 3859 + 3860 + void* _ZN3MCCC1Et(void) 3861 + { 3862 + if (verbose) puts("STUB: _ZN3MCCC1Et called"); 3863 + return NULL; 3864 + } 3865 + 3866 + void* _ZN3MCCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3867 + { 3868 + if (verbose) puts("STUB: _ZN3MCCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3869 + return NULL; 3870 + } 3871 + 3872 + void* _ZN3MCCC1Ev(void) 3873 + { 3874 + if (verbose) puts("STUB: _ZN3MCCC1Ev called"); 3875 + return NULL; 3876 + } 3877 + 3878 + void* _ZN3MCCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3879 + { 3880 + if (verbose) puts("STUB: _ZN3MCCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3881 + return NULL; 3882 + } 3883 + 3884 + void* _ZN3MCCC2Et(void) 3885 + { 3886 + if (verbose) puts("STUB: _ZN3MCCC2Et called"); 3887 + return NULL; 3888 + } 3889 + 3890 + void* _ZN3MCCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3891 + { 3892 + if (verbose) puts("STUB: _ZN3MCCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3893 + return NULL; 3894 + } 3895 + 3896 + void* _ZN3MCCC2Ev(void) 3897 + { 3898 + if (verbose) puts("STUB: _ZN3MCCC2Ev called"); 3899 + return NULL; 3900 + } 3901 + 3902 + void* _ZN3MCCaSERKS_(void) 3903 + { 3904 + if (verbose) puts("STUB: _ZN3MCCaSERKS_ called"); 3905 + return NULL; 3906 + } 3907 + 3908 + void* _ZN3MNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3909 + { 3910 + if (verbose) puts("STUB: _ZN3MNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3911 + return NULL; 3912 + } 3913 + 3914 + void* _ZN3MNCC1EtRK3MCC(void) 3915 + { 3916 + if (verbose) puts("STUB: _ZN3MNCC1EtRK3MCC called"); 3917 + return NULL; 3918 + } 3919 + 3920 + void* _ZN3MNCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3921 + { 3922 + if (verbose) puts("STUB: _ZN3MNCC1EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3923 + return NULL; 3924 + } 3925 + 3926 + void* _ZN3MNCC1Ev(void) 3927 + { 3928 + if (verbose) puts("STUB: _ZN3MNCC1Ev called"); 3929 + return NULL; 3930 + } 3931 + 3932 + void* _ZN3MNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3933 + { 3934 + if (verbose) puts("STUB: _ZN3MNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3935 + return NULL; 3936 + } 3937 + 3938 + void* _ZN3MNCC2EtRK3MCC(void) 3939 + { 3940 + if (verbose) puts("STUB: _ZN3MNCC2EtRK3MCC called"); 3941 + return NULL; 3942 + } 3943 + 3944 + void* _ZN3MNCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3945 + { 3946 + if (verbose) puts("STUB: _ZN3MNCC2EtRKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3947 + return NULL; 3948 + } 3949 + 3950 + void* _ZN3MNCC2Ev(void) 3951 + { 3952 + if (verbose) puts("STUB: _ZN3MNCC2Ev called"); 3953 + return NULL; 3954 + } 3955 + 3956 + void* _ZN9MCCAndMNCC1ERK3MCCRK3MNC(void) 3957 + { 3958 + if (verbose) puts("STUB: _ZN9MCCAndMNCC1ERK3MCCRK3MNC called"); 3959 + return NULL; 3960 + } 3961 + 3962 + void* _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3963 + { 3964 + if (verbose) puts("STUB: _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3965 + return NULL; 3966 + } 3967 + 3968 + void* _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_(void) 3969 + { 3970 + if (verbose) puts("STUB: _ZN9MCCAndMNCC1ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_ called"); 3971 + return NULL; 3972 + } 3973 + 3974 + void* _ZN9MCCAndMNCC1Ett(void) 3975 + { 3976 + if (verbose) puts("STUB: _ZN9MCCAndMNCC1Ett called"); 3977 + return NULL; 3978 + } 3979 + 3980 + void* _ZN9MCCAndMNCC1Ev(void) 3981 + { 3982 + if (verbose) puts("STUB: _ZN9MCCAndMNCC1Ev called"); 3983 + return NULL; 3984 + } 3985 + 3986 + void* _ZN9MCCAndMNCC2ERK3MCCRK3MNC(void) 3987 + { 3988 + if (verbose) puts("STUB: _ZN9MCCAndMNCC2ERK3MCCRK3MNC called"); 3989 + return NULL; 3990 + } 3991 + 3992 + void* _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 3993 + { 3994 + if (verbose) puts("STUB: _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 3995 + return NULL; 3996 + } 3997 + 3998 + void* _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_(void) 3999 + { 4000 + if (verbose) puts("STUB: _ZN9MCCAndMNCC2ERKNSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEES8_ called"); 4001 + return NULL; 4002 + } 4003 + 4004 + void* _ZN9MCCAndMNCC2Ett(void) 4005 + { 4006 + if (verbose) puts("STUB: _ZN9MCCAndMNCC2Ett called"); 4007 + return NULL; 4008 + } 4009 + 4010 + void* _ZN9MCCAndMNCC2Ev(void) 4011 + { 4012 + if (verbose) puts("STUB: _ZN9MCCAndMNCC2Ev called"); 4013 + return NULL; 4014 + } 4015 + 4016 + void* _ZNK14CSIPhoneNumber12getFormattedEv(void) 4017 + { 4018 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber12getFormattedEv called"); 4019 + return NULL; 4020 + } 4021 + 4022 + void* _ZNK14CSIPhoneNumber13getBaseNumberEv(void) 4023 + { 4024 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber13getBaseNumberEv called"); 4025 + return NULL; 4026 + } 4027 + 4028 + void* _ZNK14CSIPhoneNumber13getDtmfStringEv(void) 4029 + { 4030 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber13getDtmfStringEv called"); 4031 + return NULL; 4032 + } 4033 + 4034 + void* _ZNK14CSIPhoneNumber13getFullNumberEv(void) 4035 + { 4036 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber13getFullNumberEv called"); 4037 + return NULL; 4038 + } 4039 + 4040 + void* _ZNK14CSIPhoneNumber15getTypeOfNumberEv(void) 4041 + { 4042 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber15getTypeOfNumberEv called"); 4043 + return NULL; 4044 + } 4045 + 4046 + void* _ZNK14CSIPhoneNumber16getTypeOfAddressEv(void) 4047 + { 4048 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber16getTypeOfAddressEv called"); 4049 + return NULL; 4050 + } 4051 + 4052 + void* _ZNK14CSIPhoneNumber17hasSameBaseNumberERKS_(void) 4053 + { 4054 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber17hasSameBaseNumberERKS_ called"); 4055 + return NULL; 4056 + } 4057 + 4058 + void* _ZNK14CSIPhoneNumber19getCLIRRequestStateEv(void) 4059 + { 4060 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber19getCLIRRequestStateEv called"); 4061 + return NULL; 4062 + } 4063 + 4064 + void* _ZNK14CSIPhoneNumber19getFullNumberHelperENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE(void) 4065 + { 4066 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber19getFullNumberHelperENSt3__112basic_stringIcNS0_11char_traitsIcEENS0_9allocatorIcEEEE called"); 4067 + return NULL; 4068 + } 4069 + 4070 + void* _ZNK14CSIPhoneNumber20getEmergencyCategoryEv(void) 4071 + { 4072 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber20getEmergencyCategoryEv called"); 4073 + return NULL; 4074 + } 4075 + 4076 + void* _ZNK14CSIPhoneNumber21getFullOriginalNumberEv(void) 4077 + { 4078 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber21getFullOriginalNumberEv called"); 4079 + return NULL; 4080 + } 4081 + 4082 + void* _ZNK14CSIPhoneNumber22getIsListedAsEmergencyEv(void) 4083 + { 4084 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber22getIsListedAsEmergencyEv called"); 4085 + return NULL; 4086 + } 4087 + 4088 + void* _ZNK14CSIPhoneNumber23getIsEmSMSTextSupportedEv(void) 4089 + { 4090 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber23getIsEmSMSTextSupportedEv called"); 4091 + return NULL; 4092 + } 4093 + 4094 + void* _ZNK14CSIPhoneNumber23hasEmergencyCategorySetEv(void) 4095 + { 4096 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber23hasEmergencyCategorySetEv called"); 4097 + return NULL; 4098 + } 4099 + 4100 + void* _ZNK14CSIPhoneNumber26getBaseNumberNoPauseDigitsEv(void) 4101 + { 4102 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber26getBaseNumberNoPauseDigitsEv called"); 4103 + return NULL; 4104 + } 4105 + 4106 + void* _ZNK14CSIPhoneNumber26getFullNumberNoPauseDigitsEv(void) 4107 + { 4108 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber26getFullNumberNoPauseDigitsEv called"); 4109 + return NULL; 4110 + } 4111 + 4112 + void* _ZNK14CSIPhoneNumber8getIsMMIEv(void) 4113 + { 4114 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber8getIsMMIEv called"); 4115 + return NULL; 4116 + } 4117 + 4118 + void* _ZNK14CSIPhoneNumber9getIsUSSDEv(void) 4119 + { 4120 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumber9getIsUSSDEv called"); 4121 + return NULL; 4122 + } 4123 + 4124 + void* _ZNK14CSIPhoneNumbereqERKS_(void) 4125 + { 4126 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumbereqERKS_ called"); 4127 + return NULL; 4128 + } 4129 + 4130 + void* _ZNK14CSIPhoneNumberneERKS_(void) 4131 + { 4132 + if (verbose) puts("STUB: _ZNK14CSIPhoneNumberneERKS_ called"); 4133 + return NULL; 4134 + } 4135 + 4136 + void* _ZNK19NetworkNotification24copyUnparsedNotificationEv(void) 4137 + { 4138 + if (verbose) puts("STUB: _ZNK19NetworkNotification24copyUnparsedNotificationEv called"); 4139 + return NULL; 4140 + } 4141 + 4142 + void* _ZNK3MCC11getIntValueEv(void) 4143 + { 4144 + if (verbose) puts("STUB: _ZNK3MCC11getIntValueEv called"); 4145 + return NULL; 4146 + } 4147 + 4148 + void* _ZNK3MCC14getStringValueEv(void) 4149 + { 4150 + if (verbose) puts("STUB: _ZNK3MCC14getStringValueEv called"); 4151 + return NULL; 4152 + } 4153 + 4154 + void* _ZNK3MCC5validEv(void) 4155 + { 4156 + if (verbose) puts("STUB: _ZNK3MCC5validEv called"); 4157 + return NULL; 4158 + } 4159 + 4160 + void* _ZNK3MCCeqERKS_(void) 4161 + { 4162 + if (verbose) puts("STUB: _ZNK3MCCeqERKS_ called"); 4163 + return NULL; 4164 + } 4165 + 4166 + void* _ZNK3MCCgtERKS_(void) 4167 + { 4168 + if (verbose) puts("STUB: _ZNK3MCCgtERKS_ called"); 4169 + return NULL; 4170 + } 4171 + 4172 + void* _ZNK3MCCltERKS_(void) 4173 + { 4174 + if (verbose) puts("STUB: _ZNK3MCCltERKS_ called"); 4175 + return NULL; 4176 + } 4177 + 4178 + void* _ZNK3MCCneERKS_(void) 4179 + { 4180 + if (verbose) puts("STUB: _ZNK3MCCneERKS_ called"); 4181 + return NULL; 4182 + } 4183 + 4184 + void* _ZNK3MNC12isThreeDigitEv(void) 4185 + { 4186 + if (verbose) puts("STUB: _ZNK3MNC12isThreeDigitEv called"); 4187 + return NULL; 4188 + } 4189 + 4190 + void* _ZNK3MNC15getIntegerWidthEv(void) 4191 + { 4192 + if (verbose) puts("STUB: _ZNK3MNC15getIntegerWidthEv called"); 4193 + return NULL; 4194 + } 4195 + 4196 + void* _ZNK9MCCAndMNC14getStringValueEv(void) 4197 + { 4198 + if (verbose) puts("STUB: _ZNK9MCCAndMNC14getStringValueEv called"); 4199 + return NULL; 4200 + } 4201 + 4202 + void* _ZNK9MCCAndMNC6getMccEv(void) 4203 + { 4204 + if (verbose) puts("STUB: _ZNK9MCCAndMNC6getMccEv called"); 4205 + return NULL; 4206 + } 4207 + 4208 + void* _ZNK9MCCAndMNC6getMncEv(void) 4209 + { 4210 + if (verbose) puts("STUB: _ZNK9MCCAndMNC6getMncEv called"); 4211 + return NULL; 4212 + } 4213 + 4214 + void* _ZNK9MCCAndMNCeqERKS_(void) 4215 + { 4216 + if (verbose) puts("STUB: _ZNK9MCCAndMNCeqERKS_ called"); 4217 + return NULL; 4218 + } 4219 + 4220 + void* _ZNK9MCCAndMNCltERKS_(void) 4221 + { 4222 + if (verbose) puts("STUB: _ZNK9MCCAndMNCltERKS_ called"); 4223 + return NULL; 4224 + } 4225 + 4226 + void* _ZNK9MCCAndMNCneERKS_(void) 4227 + { 4228 + if (verbose) puts("STUB: _ZNK9MCCAndMNCneERKS_ called"); 4229 + return NULL; 4230 + } 4231 + 4232 + void* _ZlsRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERK9MCCAndMNC(void) 4233 + { 4234 + if (verbose) puts("STUB: _ZlsRNSt3__113basic_ostreamIcNS_11char_traitsIcEEEERK9MCCAndMNC called"); 4235 + return NULL; 4236 + } 4237 + 4238 + void* _is3DigitMNCWithIMSI(void) 4239 + { 4240 + if (verbose) puts("STUB: _is3DigitMNCWithIMSI called"); 4241 + return NULL; 4242 + } 4243 + 4244 + void* _is3DigitMNCWithMCC(void) 4245 + { 4246 + if (verbose) puts("STUB: _is3DigitMNCWithMCC called"); 4247 + return NULL; 4248 + } 4249 + 4250 + void* asString(void) 4251 + { 4252 + if (verbose) puts("STUB: asString called"); 4253 + return NULL; 4254 + } 4255 + 4256 + void* createUuidBytes(void) 4257 + { 4258 + if (verbose) puts("STUB: createUuidBytes called"); 4259 + return NULL; 4260 + } 4261 + 4262 + void* getClientKeyForEntitlementType(void) 4263 + { 4264 + if (verbose) puts("STUB: getClientKeyForEntitlementType called"); 4265 + return NULL; 4266 + } 4267 + 4268 + void* getEntitlementTypeFromClientKey(void) 4269 + { 4270 + if (verbose) puts("STUB: getEntitlementTypeFromClientKey called"); 4271 + return NULL; 4272 + } 4273 + 4274 + void* kCTDataConnectionServiceTypeFromIndex(void) 4275 + { 4276 + if (verbose) puts("STUB: kCTDataConnectionServiceTypeFromIndex called"); 4277 + return NULL; 4278 + } 4279 + 4280 + void* kCTDataConnectionTypeFromString(void) 4281 + { 4282 + if (verbose) puts("STUB: kCTDataConnectionTypeFromString called"); 4283 + return NULL; 4284 + } 4285 + 4286 + void* radioStateAsString(void) 4287 + { 4288 + if (verbose) puts("STUB: radioStateAsString called"); 4289 + return NULL; 4290 + }
+34
src/frameworks/CoreTelephony/src/CoreTelephonyClient.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CoreTelephonyClient.h> 21 + 22 + @implementation CoreTelephonyClient 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/CoreTelephony/src/CoreTelephonyClientDelegateProxy.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CoreTelephonyClientDelegateProxy.h> 21 + 22 + @implementation CoreTelephonyClientDelegateProxy 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/CoreTelephony/src/CoreTelephonyClientMux.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CoreTelephonyClientMux.h> 21 + 22 + @implementation CoreTelephonyClientMux 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/CoreTelephony/src/CoreTelephonyClientRemoteAsyncProxy.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/CoreTelephonyClientRemoteAsyncProxy.h> 21 + 22 + @implementation CoreTelephonyClientRemoteAsyncProxy 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/CoreTelephony/src/MuxNotificationSink.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2019 Lubos Dolezel 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have 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 <CoreTelephony/MuxNotificationSink.h> 21 + 22 + @implementation MuxNotificationSink 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+1
src/frameworks/include/CoreTelephony
··· 1 + ../CoreTelephony/include/CoreTelephony