├── .clang-format ├── .gitignore ├── ACL ├── CMakeLists.txt ├── include │ └── ACL │ │ ├── AVSConnectionManager.h │ │ └── Transport │ │ ├── DownchannelHandler.h │ │ ├── ExchangeHandler.h │ │ ├── ExchangeHandlerContextInterface.h │ │ ├── HTTP2Transport.h │ │ ├── HTTP2TransportFactory.h │ │ ├── MessageConsumerInterface.h │ │ ├── MessageRequestHandler.h │ │ ├── MessageRequestQueue.h │ │ ├── MessageRequestQueueInterface.h │ │ ├── MessageRouter.h │ │ ├── MessageRouterFactory.h │ │ ├── MessageRouterFactoryInterface.h │ │ ├── MessageRouterInterface.h │ │ ├── MessageRouterObserverInterface.h │ │ ├── MimeResponseSink.h │ │ ├── MimeResponseStatusHandlerInterface.h │ │ ├── PingHandler.h │ │ ├── PostConnectFactoryInterface.h │ │ ├── PostConnectInterface.h │ │ ├── PostConnectObserverInterface.h │ │ ├── PostConnectSequencer.h │ │ ├── PostConnectSequencerFactory.h │ │ ├── SynchronizedMessageRequestQueue.h │ │ ├── TransportDefines.h │ │ ├── TransportFactoryInterface.h │ │ ├── TransportInterface.h │ │ └── TransportObserverInterface.h ├── src │ ├── AVSConnectionManager.cpp │ ├── CMakeLists.txt │ └── Transport │ │ ├── DownchannelHandler.cpp │ │ ├── ExchangeHandler.cpp │ │ ├── HTTP2Transport.cpp │ │ ├── HTTP2TransportFactory.cpp │ │ ├── MessageRequestHandler.cpp │ │ ├── MessageRequestQueue.cpp │ │ ├── MessageRouter.cpp │ │ ├── MessageRouterFactory.cpp │ │ ├── MimeResponseSink.cpp │ │ ├── PingHandler.cpp │ │ ├── PostConnectSequencer.cpp │ │ ├── PostConnectSequencerFactory.cpp │ │ ├── SynchronizedMessageRequestQueue.cpp │ │ └── TransportDefines.cpp └── test │ ├── AVSConnectionManagerTest.cpp │ ├── CMakeLists.txt │ └── Transport │ ├── CMakeLists.txt │ ├── Common │ ├── CMakeLists.txt │ ├── MockHTTP2Connection.cpp │ ├── MockHTTP2Request.cpp │ ├── MockMimeResponseSink.cpp │ └── TestMessageRequestObserver.cpp │ ├── HTTP2TransportTest.cpp │ ├── MessageRequestHandlerTest.cpp │ ├── MessageRouterTest.cpp │ ├── MessageRouterTest.h │ ├── MockAuthDelegate.h │ ├── MockEventTracer.h │ ├── MockHTTP2Connection.h │ ├── MockHTTP2Request.h │ ├── MockMessageConsumer.h │ ├── MockMessageRequest.h │ ├── MockMessageRouterObserver.h │ ├── MockMimeResponseSink.h │ ├── MockPostConnect.h │ ├── MockPostConnectFactory.h │ ├── MockPostConnectObserver.h │ ├── MockPostConnectOperation.h │ ├── MockPostConnectOperationProvider.h │ ├── MockTransport.h │ ├── MockTransportObserver.h │ ├── PostConnectSequencerFactoryTest.cpp │ ├── PostConnectSequencerTest.cpp │ ├── TestMessageRequestObserver.h │ └── TestableConsumer.h ├── ADSL ├── CMakeLists.txt ├── include │ └── ADSL │ │ ├── ADSLComponent.h │ │ ├── DirectiveProcessor.h │ │ ├── DirectiveRouter.h │ │ ├── DirectiveSequencer.h │ │ └── MessageInterpreter.h ├── src │ ├── ADSLComponent.cpp │ ├── CMakeLists.txt │ ├── DirectiveProcessor.cpp │ ├── DirectiveRouter.cpp │ ├── DirectiveSequencer.cpp │ └── MessageInterpreter.cpp └── test │ ├── ADSL │ └── MockDirectiveSequencer.h │ ├── CMakeLists.txt │ ├── DirectiveProcessorTest.cpp │ ├── DirectiveRouterTest.cpp │ ├── DirectiveSequencerTest.cpp │ ├── MessageInterpreterTest.cpp │ └── common │ ├── CMakeLists.txt │ ├── MockDirectiveHandler.cpp │ └── MockDirectiveHandler.h ├── AFML ├── CMakeLists.txt ├── include │ └── AFML │ │ ├── ActivityTrackerInterface.h │ │ ├── AudioActivityTracker.h │ │ ├── Channel.h │ │ ├── FocusManagementComponent.h │ │ ├── FocusManager.h │ │ └── VisualActivityTracker.h ├── src │ ├── AudioActivityTracker.cpp │ ├── CMakeLists.txt │ ├── Channel.cpp │ ├── FocusManagementComponent.cpp │ ├── FocusManager.cpp │ └── VisualActivityTracker.cpp └── test │ ├── AudioActivityTrackerTest.cpp │ ├── CMakeLists.txt │ ├── FocusManagerTest.cpp │ └── VisualActivityTrackerTest.cpp ├── AVSCommon ├── AVS │ ├── CMakeLists.txt │ ├── include │ │ └── AVSCommon │ │ │ └── AVS │ │ │ ├── AVSContext.h │ │ │ ├── AVSDirective.h │ │ │ ├── AVSDiscoveryEndpointAttributes.h │ │ │ ├── AVSMessage.h │ │ │ ├── AVSMessageEndpoint.h │ │ │ ├── AVSMessageHeader.h │ │ │ ├── AbstractAVSConnectionManager.h │ │ │ ├── AlexaAssetId.h │ │ │ ├── AlexaResponseType.h │ │ │ ├── AlexaUnitOfMeasure.h │ │ │ ├── Attachment │ │ │ ├── Attachment.h │ │ │ ├── AttachmentManager.h │ │ │ ├── AttachmentManagerInterface.h │ │ │ ├── AttachmentReader.h │ │ │ ├── AttachmentUtils.h │ │ │ ├── AttachmentWriter.h │ │ │ ├── DefaultAttachmentReader.h │ │ │ ├── InProcessAttachment.h │ │ │ ├── InProcessAttachmentReader.h │ │ │ └── InProcessAttachmentWriter.h │ │ │ ├── AudioInputStream.h │ │ │ ├── BlockingPolicy.h │ │ │ ├── CapabilityAgent.h │ │ │ ├── CapabilityChangeNotifier.h │ │ │ ├── CapabilityChangeNotifierInterface.h │ │ │ ├── CapabilityConfiguration.h │ │ │ ├── CapabilityResources.h │ │ │ ├── CapabilitySemantics │ │ │ ├── ActionsToDirectiveMapping.h │ │ │ ├── CapabilitySemantics.h │ │ │ ├── StatesToRangeMapping.h │ │ │ └── StatesToValueMapping.h │ │ │ ├── CapabilityState.h │ │ │ ├── CapabilityTag.h │ │ │ ├── ComponentConfiguration.h │ │ │ ├── ContentType.h │ │ │ ├── DialogUXStateAggregator.h │ │ │ ├── DirectiveHandlerConfiguration.h │ │ │ ├── DirectiveRoutingRule.h │ │ │ ├── EditableMessageRequest.h │ │ │ ├── EventBuilder.h │ │ │ ├── ExceptionEncounteredSender.h │ │ │ ├── ExceptionErrorType.h │ │ │ ├── FocusState.h │ │ │ ├── HandlerAndPolicy.h │ │ │ ├── IndicatorState.h │ │ │ ├── Initialization │ │ │ ├── AlexaClientSDKInit.h │ │ │ ├── InitializationParameters.h │ │ │ ├── InitializationParametersBuilder.h │ │ │ └── SDKPrimitivesProvider.h │ │ │ ├── MessageRequest.h │ │ │ ├── MixingBehavior.h │ │ │ ├── NamespaceAndName.h │ │ │ ├── PlayBehavior.h │ │ │ ├── PlayRequestor.h │ │ │ ├── PlaybackButtons.h │ │ │ ├── PlayerActivity.h │ │ │ ├── Requester.h │ │ │ ├── SpeakerConstants │ │ │ └── SpeakerConstants.h │ │ │ ├── StateRefreshPolicy.h │ │ │ └── WaitableMessageRequest.h │ ├── src │ │ ├── AVSContext.cpp │ │ ├── AVSDirective.cpp │ │ ├── AVSMessage.cpp │ │ ├── AVSMessageHeader.cpp │ │ ├── AbstractAVSConnectionManager.cpp │ │ ├── AlexaClientSDKInit.cpp │ │ ├── Attachment │ │ │ ├── Attachment.cpp │ │ │ ├── AttachmentManager.cpp │ │ │ ├── AttachmentUtils.cpp │ │ │ ├── InProcessAttachment.cpp │ │ │ ├── InProcessAttachmentReader.cpp │ │ │ └── InProcessAttachmentWriter.cpp │ │ ├── BlockingPolicy.cpp │ │ ├── CapabilityAgent.cpp │ │ ├── CapabilityConfiguration.cpp │ │ ├── CapabilityResources.cpp │ │ ├── CapabilitySemantics │ │ │ ├── ActionsToDirectiveMapping.cpp │ │ │ ├── CapabilitySemantics.cpp │ │ │ ├── StatesToRangeMapping.cpp │ │ │ └── StatesToValueMapping.cpp │ │ ├── CapabilityTag.cpp │ │ ├── ComponentConfiguration.cpp │ │ ├── DialogUXStateAggregator.cpp │ │ ├── DirectiveRoutingRule.cpp │ │ ├── EditableMessageRequest.cpp │ │ ├── EventBuilder.cpp │ │ ├── ExceptionEncounteredSender.cpp │ │ ├── HandlerAndPolicy.cpp │ │ ├── Initialization │ │ │ ├── InitializationParametersBuilder.cpp │ │ │ └── SDKPrimitivesProvider.cpp │ │ ├── MessageRequest.cpp │ │ ├── NamespaceAndName.cpp │ │ └── WaitableMessageRequest.cpp │ └── test │ │ ├── AVSCommon │ │ └── AVS │ │ │ └── Attachment │ │ │ └── MockAttachmentManager.h │ │ ├── AVSContextTest.cpp │ │ ├── AVSDirectiveTest.cpp │ │ ├── AVSMessageHeaderTest.cpp │ │ ├── AlexaClientSDKInitTest.cpp │ │ ├── Attachment │ │ ├── AttachmentManagerV2Test.cpp │ │ ├── AttachmentReaderTest.cpp │ │ ├── AttachmentTest.cpp │ │ ├── AttachmentUtilsTest.cpp │ │ ├── AttachmentWriterTest.cpp │ │ ├── CMakeLists.txt │ │ └── Common │ │ │ ├── CMakeLists.txt │ │ │ ├── Common.cpp │ │ │ └── Common.h │ │ ├── BlockingPolicyTest.cpp │ │ ├── CMakeLists.txt │ │ ├── CapabilityAgentTest.cpp │ │ ├── CapabilityConfigurationTest.cpp │ │ ├── CapabilityResourcesTest.cpp │ │ ├── CapabilitySemanticsTest.cpp │ │ ├── ComponentConfigurationTest.cpp │ │ ├── DialogUXStateAggregatorTest.cpp │ │ ├── EditableMessageRequestTest.cpp │ │ ├── EventBuilderTest.cpp │ │ ├── ExceptionEncounteredSenderTest.cpp │ │ ├── HandlerAndPolicyTest.cpp │ │ ├── Initialization │ │ └── SDKPrimitivesProviderTest.cpp │ │ ├── MessageRequestTest.cpp │ │ └── NamespaceAndNameTest.cpp ├── CMakeLists.txt ├── SDKInterfaces │ ├── CMakeLists.txt │ ├── include │ │ └── AVSCommon │ │ │ └── SDKInterfaces │ │ │ ├── AVSConnectionManagerInterface.h │ │ │ ├── AVSGatewayAssignerInterface.h │ │ │ ├── AVSGatewayManagerInterface.h │ │ │ ├── AVSGatewayObserverInterface.h │ │ │ ├── AlexaEventProcessedObserverInterface.h │ │ │ ├── AlexaInterfaceMessageSenderInterface.h │ │ │ ├── AlexaStateChangeCauseType.h │ │ │ ├── ApplicationMediaInterfaces.h │ │ │ ├── Audio │ │ │ ├── AlertsAudioFactoryInterface.h │ │ │ ├── AudioFactoryInterface.h │ │ │ ├── CommunicationsAudioFactoryInterface.h │ │ │ ├── MixingBehavior.h │ │ │ ├── NotificationsAudioFactoryInterface.h │ │ │ └── SystemSoundAudioFactoryInterface.h │ │ │ ├── AudioFocusAnnotation.h │ │ │ ├── AudioInputProcessorObserverInterface.h │ │ │ ├── AuthDelegateInterface.h │ │ │ ├── AuthObserverInterface.h │ │ │ ├── Bluetooth │ │ │ ├── BluetoothDeviceConnectionRuleInterface.h │ │ │ ├── BluetoothDeviceInterface.h │ │ │ ├── BluetoothDeviceManagerInterface.h │ │ │ ├── BluetoothHostControllerInterface.h │ │ │ └── Services │ │ │ │ ├── A2DPSinkInterface.h │ │ │ │ ├── A2DPSourceInterface.h │ │ │ │ ├── AVRCPControllerInterface.h │ │ │ │ ├── AVRCPTargetInterface.h │ │ │ │ ├── BluetoothServiceInterface.h │ │ │ │ ├── HFPInterface.h │ │ │ │ ├── HIDInterface.h │ │ │ │ ├── SDPRecordInterface.h │ │ │ │ └── SPPInterface.h │ │ │ ├── CallManagerInterface.h │ │ │ ├── CallStateObserverInterface.h │ │ │ ├── CapabilitiesDelegateInterface.h │ │ │ ├── CapabilitiesDelegateObserverInterface.h │ │ │ ├── CapabilitiesObserverInterface.h │ │ │ ├── CapabilityConfigurationChangeObserverInterface.h │ │ │ ├── CapabilityConfigurationInterface.h │ │ │ ├── ChannelObserverInterface.h │ │ │ ├── ChannelVolumeFactoryInterface.h │ │ │ ├── ChannelVolumeInterface.h │ │ │ ├── ComponentReporterInterface.h │ │ │ ├── ConnectionStatusObserverInterface.h │ │ │ ├── ContextManagerInterface.h │ │ │ ├── ContextManagerObserverInterface.h │ │ │ ├── ContextRequestToken.h │ │ │ ├── ContextRequesterInterface.h │ │ │ ├── Diagnostics │ │ │ ├── AudioInjectorInterface.h │ │ │ ├── DevicePropertyAggregatorInterface.h │ │ │ ├── DiagnosticsInterface.h │ │ │ └── ProtocolTracerInterface.h │ │ │ ├── DialogUXStateObserverInterface.h │ │ │ ├── DirectiveHandlerInterface.h │ │ │ ├── DirectiveHandlerResultInterface.h │ │ │ ├── DirectiveSequencerInterface.h │ │ │ ├── DtmfObserverInterface.h │ │ │ ├── Endpoints │ │ │ ├── DefaultEndpointAnnotation.h │ │ │ ├── EndpointBuilderInterface.h │ │ │ ├── EndpointCapabilitiesBuilderInterface.h │ │ │ ├── EndpointCapabilitiesRegistrarInterface.h │ │ │ ├── EndpointIdentifier.h │ │ │ ├── EndpointInterface.h │ │ │ ├── EndpointModificationData.h │ │ │ ├── EndpointRegistrationManagerInterface.h │ │ │ └── EndpointRegistrationObserverInterface.h │ │ │ ├── EventTracerInterface.h │ │ │ ├── ExceptionEncounteredSenderInterface.h │ │ │ ├── ExpectSpeechTimeoutHandlerInterface.h │ │ │ ├── FocusManagerInterface.h │ │ │ ├── FocusManagerObserverInterface.h │ │ │ ├── GUIActivityEvent.h │ │ │ ├── GUIActivityEventObserverInterface.h │ │ │ ├── GlobalSettingsObserverInterface.h │ │ │ ├── HTTPContentFetcherInterface.h │ │ │ ├── HTTPContentFetcherInterfaceFactoryInterface.h │ │ │ ├── InternetConnectionMonitorInterface.h │ │ │ ├── InternetConnectionObserverInterface.h │ │ │ ├── KeyWordDetectorStateObserverInterface.h │ │ │ ├── KeyWordObserverInterface.h │ │ │ ├── LocalPlaybackHandlerInterface.h │ │ │ ├── LocaleAssetsManagerInterface.h │ │ │ ├── LocaleAssetsObserverInterface.h │ │ │ ├── MediaPropertiesInterface.h │ │ │ ├── MessageObserverInterface.h │ │ │ ├── MessageRequestObserverInterface.h │ │ │ ├── MessageSenderInterface.h │ │ │ ├── ModeController │ │ │ ├── ModeControllerAttributeBuilderInterface.h │ │ │ ├── ModeControllerAttributes.h │ │ │ ├── ModeControllerInterface.h │ │ │ └── ModeControllerObserverInterface.h │ │ │ ├── PlaybackHandlerInterface.h │ │ │ ├── PlaybackRouterInterface.h │ │ │ ├── PostConnectOperationInterface.h │ │ │ ├── PostConnectOperationProviderInterface.h │ │ │ ├── PowerController │ │ │ ├── PowerControllerInterface.h │ │ │ └── PowerControllerObserverInterface.h │ │ │ ├── PowerResourceManagerInterface.h │ │ │ ├── RangeController │ │ │ ├── RangeControllerAttributeBuilderInterface.h │ │ │ ├── RangeControllerAttributes.h │ │ │ ├── RangeControllerInterface.h │ │ │ └── RangeControllerObserverInterface.h │ │ │ ├── RenderPlayerInfoCardsObserverInterface.h │ │ │ ├── RenderPlayerInfoCardsProviderInterface.h │ │ │ ├── RenderPlayerInfoCardsProviderRegistrarInterface.h │ │ │ ├── RevokeAuthorizationObserverInterface.h │ │ │ ├── SingleSettingObserverInterface.h │ │ │ ├── SoftwareInfoSenderObserverInterface.h │ │ │ ├── SpeakerInterface.h │ │ │ ├── SpeakerManagerInterface.h │ │ │ ├── SpeakerManagerObserverInterface.h │ │ │ ├── SpeechInteractionHandlerInterface.h │ │ │ ├── SpeechSynthesizerObserverInterface.h │ │ │ ├── StateProviderInterface.h │ │ │ ├── StateSynchronizerObserverInterface.h │ │ │ ├── Storage │ │ │ └── MiscStorageInterface.h │ │ │ ├── SystemSoundPlayerInterface.h │ │ │ ├── SystemTimeZoneInterface.h │ │ │ ├── Timing │ │ │ ├── TimerDelegateFactoryInterface.h │ │ │ └── TimerDelegateInterface.h │ │ │ ├── ToggleController │ │ │ ├── ToggleControllerAttributeBuilderInterface.h │ │ │ ├── ToggleControllerAttributes.h │ │ │ ├── ToggleControllerInterface.h │ │ │ └── ToggleControllerObserverInterface.h │ │ │ ├── UserInactivityMonitorInterface.h │ │ │ ├── UserInactivityMonitorObserverInterface.h │ │ │ └── VisualFocusAnnotation.h │ └── test │ │ ├── AVSCommon │ │ └── SDKInterfaces │ │ │ ├── Audio │ │ │ ├── MockAlertsAudioFactory.h │ │ │ └── MockSystemSoundAudioFactory.h │ │ │ ├── Bluetooth │ │ │ ├── MockBluetoothDevice.h │ │ │ ├── MockBluetoothDeviceConnectionRule.h │ │ │ ├── MockBluetoothDeviceManager.h │ │ │ ├── MockBluetoothHostController.h │ │ │ └── Services │ │ │ │ └── MockBluetoothService.h │ │ │ ├── Endpoints │ │ │ ├── MockEndpoint.h │ │ │ ├── MockEndpointBuilder.h │ │ │ ├── MockEndpointCapabilitiesRegistrar.h │ │ │ ├── MockEndpointRegistrationManager.h │ │ │ └── MockEndpointRegistrationObserver.h │ │ │ ├── MockAVSConnectionManager.h │ │ │ ├── MockAVSGatewayAssigner.h │ │ │ ├── MockAVSGatewayManager.h │ │ │ ├── MockAVSGatewayObserver.h │ │ │ ├── MockAlexaInterfaceMessageSender.h │ │ │ ├── MockAuthObserver.h │ │ │ ├── MockCapabilitiesDelegate.h │ │ │ ├── MockCapabilityConfigurationInterface.h │ │ │ ├── MockChannelVolumeInterface.h │ │ │ ├── MockComponentReporterInterface.h │ │ │ ├── MockContextManager.h │ │ │ ├── MockDirectiveHandler.h │ │ │ ├── MockDirectiveHandlerResult.h │ │ │ ├── MockDirectiveSequencer.h │ │ │ ├── MockExceptionEncounteredSender.h │ │ │ ├── MockFocusManager.h │ │ │ ├── MockFocusManagerObserver.h │ │ │ ├── MockLocaleAssetsManager.h │ │ │ ├── MockMessageSender.h │ │ │ ├── MockPlaybackHandler.h │ │ │ ├── MockPlaybackRouter.h │ │ │ ├── MockPowerResourceManager.h │ │ │ ├── MockRenderPlayerInfoCardsObserverInterface.h │ │ │ ├── MockRevokeAuthorizationObserver.h │ │ │ ├── MockSpeakerInterface.h │ │ │ ├── MockSpeakerManager.h │ │ │ ├── MockStateSynchronizerObserver.h │ │ │ ├── MockSystemSoundPlayer.h │ │ │ ├── MockUserInactivityMonitor.h │ │ │ ├── MockUserInactivityMonitorObserver.h │ │ │ ├── Storage │ │ │ ├── MockMiscStorage.h │ │ │ └── StubMiscStorage.h │ │ │ └── Timing │ │ │ └── MockTimerDelegateFactory.h │ │ ├── CMakeLists.txt │ │ └── src │ │ └── StubMiscStorage.cpp └── Utils │ ├── CMakeLists.txt │ ├── include │ └── AVSCommon │ │ └── Utils │ │ ├── AudioAnalyzer │ │ └── AudioAnalyzerState.h │ │ ├── AudioFormat.h │ │ ├── Bluetooth │ │ ├── A2DPRole.h │ │ ├── BluetoothEventBus.h │ │ ├── BluetoothEventListenerInterface.h │ │ ├── BluetoothEvents.h │ │ ├── DeviceCategory.h │ │ ├── FormattedAudioStreamAdapter.h │ │ ├── FormattedAudioStreamAdapterListener.h │ │ ├── MediaStreamingState.h │ │ └── SDPRecords.h │ │ ├── Configuration │ │ └── ConfigurationNode.h │ │ ├── CoutMutex.h │ │ ├── DeviceInfo.h │ │ ├── Endian.h │ │ ├── Error │ │ ├── FinallyGuard.h │ │ ├── Result.h │ │ └── SuccessResult.h │ │ ├── File │ │ └── FileUtils.h │ │ ├── FileSystem │ │ └── FileSystemUtils.h │ │ ├── GuardedValue.h │ │ ├── HTTP │ │ └── HttpResponseCode.h │ │ ├── HTTP2 │ │ ├── HTTP2ConnectionFactoryInterface.h │ │ ├── HTTP2ConnectionInterface.h │ │ ├── HTTP2ConnectionObserverInterface.h │ │ ├── HTTP2ConnectionStatus.h │ │ ├── HTTP2GetMimeHeadersResult.h │ │ ├── HTTP2MimeRequestEncoder.h │ │ ├── HTTP2MimeRequestSourceInterface.h │ │ ├── HTTP2MimeResponseDecoder.h │ │ ├── HTTP2MimeResponseSinkInterface.h │ │ ├── HTTP2ReceiveDataStatus.h │ │ ├── HTTP2RequestConfig.h │ │ ├── HTTP2RequestInterface.h │ │ ├── HTTP2RequestSourceInterface.h │ │ ├── HTTP2RequestType.h │ │ ├── HTTP2ResponseFinishedStatus.h │ │ ├── HTTP2ResponseSinkInterface.h │ │ ├── HTTP2SendDataResult.h │ │ └── HTTP2SendStatus.h │ │ ├── HTTPContent.h │ │ ├── ID3Tags │ │ └── ID3v2Tags.h │ │ ├── JSON │ │ ├── JSONGenerator.h │ │ └── JSONUtils.h │ │ ├── LibcurlUtils │ │ ├── CallbackData.h │ │ ├── CurlEasyHandleWrapper.h │ │ ├── CurlMultiHandleWrapper.h │ │ ├── DefaultSetCurlOptionsCallbackFactory.h │ │ ├── HTTPContentFetcherFactory.h │ │ ├── HTTPResponse.h │ │ ├── HttpGetInterface.h │ │ ├── HttpPost.h │ │ ├── HttpPostInterface.h │ │ ├── HttpPut.h │ │ ├── HttpPutInterface.h │ │ ├── HttpResponseCodes.h │ │ ├── LibCurlHttpContentFetcher.h │ │ ├── LibcurlHTTP2Connection.h │ │ ├── LibcurlHTTP2ConnectionFactory.h │ │ ├── LibcurlHTTP2Request.h │ │ ├── LibcurlSetCurlOptionsCallbackFactoryInterface.h │ │ ├── LibcurlSetCurlOptionsCallbackInterface.h │ │ └── LibcurlUtils.h │ │ ├── Logger │ │ ├── ConsoleLogger.h │ │ ├── Level.h │ │ ├── LogEntry.h │ │ ├── LogEntryBuffer.h │ │ ├── LogEntryStream.h │ │ ├── LogLevelObserverInterface.h │ │ ├── LogStringFormatter.h │ │ ├── Logger.h │ │ ├── LoggerSinkManager.h │ │ ├── LoggerUtils.h │ │ ├── ModuleLogger.h │ │ ├── SinkObserverInterface.h │ │ └── ThreadMoniker.h │ │ ├── MacAddressString.h │ │ ├── MediaPlayer │ │ ├── ErrorTypes.h │ │ ├── MediaDescription.h │ │ ├── MediaPlayerFactoryInterface.h │ │ ├── MediaPlayerFactoryObserverInterface.h │ │ ├── MediaPlayerInterface.h │ │ ├── MediaPlayerObserverInterface.h │ │ ├── MediaPlayerState.h │ │ ├── PlaybackAttributes.h │ │ ├── PlaybackContext.h │ │ ├── PlaybackReport.h │ │ ├── PooledMediaPlayerFactory.h │ │ ├── PooledMediaResourceProvider.h │ │ ├── PooledMediaResourceProviderInterface.h │ │ └── SourceConfig.h │ │ ├── MediaType.h │ │ ├── Memory │ │ └── Memory.h │ │ ├── Metrics.h │ │ ├── Metrics │ │ ├── DataPoint.h │ │ ├── DataPointCounterBuilder.h │ │ ├── DataPointDurationBuilder.h │ │ ├── DataPointStringBuilder.h │ │ ├── DataType.h │ │ ├── MetricEvent.h │ │ ├── MetricEventBuilder.h │ │ ├── MetricRecorderInterface.h │ │ ├── MetricSinkInterface.h │ │ ├── Priority.h │ │ ├── UplCalculatorInterface.h │ │ └── UplData.h │ │ ├── Network │ │ └── InternetConnectionMonitor.h │ │ ├── Optional.h │ │ ├── PlatformDefinitions.h │ │ ├── PlaylistParser │ │ ├── IterativePlaylistParserInterface.h │ │ ├── PlaylistEntry.h │ │ ├── PlaylistParserInterface.h │ │ └── PlaylistParserObserverInterface.h │ │ ├── Power │ │ ├── AggregatedPowerResourceManager.h │ │ ├── NoOpPowerResourceManager.h │ │ ├── PowerMonitor.h │ │ ├── PowerResource.h │ │ └── WakeGuard.h │ │ ├── PromiseFuturePair.h │ │ ├── RequiresShutdown.h │ │ ├── RetryTimer.h │ │ ├── SDKConfig.h.in │ │ ├── SDKVersion.h.in │ │ ├── SDS │ │ ├── BufferLayout.h │ │ ├── InProcessSDS.h │ │ ├── Reader.h │ │ ├── ReaderPolicy.h │ │ ├── SharedDataStream.h │ │ ├── Writer.h │ │ └── WriterPolicy.h │ │ ├── Stream │ │ ├── StreamFunctions.h │ │ └── Streambuf.h │ │ ├── String │ │ └── StringUtils.h │ │ ├── Threading │ │ ├── ConditionVariableWrapper.h │ │ ├── Executor.h │ │ ├── ExecutorFactory.h │ │ ├── ExecutorInterface.h │ │ ├── TaskThread.h │ │ ├── ThreadPool.h │ │ └── WorkerThread.h │ │ ├── Timing │ │ ├── DistantFuture.h │ │ ├── MultiTimer.h │ │ ├── SafeCTimeAccess.h │ │ ├── Stopwatch.h │ │ ├── TimePoint.h │ │ ├── TimeUtils.h │ │ ├── Timer.h │ │ ├── TimerDelegate.h │ │ └── TimerDelegateFactory.h │ │ ├── TypeIndex.h │ │ ├── UUIDGeneration │ │ └── UUIDGeneration.h │ │ ├── WaitEvent.h │ │ ├── WavUtils.h │ │ └── functional │ │ └── hash.h │ ├── privateInclude │ └── AVSCommon │ │ └── Utils │ │ └── Threading │ │ └── private │ │ └── SharedExecutor.h │ ├── src │ ├── Bluetooth │ │ └── SDPRecords.cpp │ ├── BluetoothEventBus.cpp │ ├── Configuration │ │ └── ConfigurationNode.cpp │ ├── DeviceInfo.cpp │ ├── FileSystem │ │ ├── FileSystemUtilsLinux.cpp │ │ └── FileSystemUtilsWindows.cpp │ ├── FileUtils.cpp │ ├── FormattedAudioStreamAdapter.cpp │ ├── HTTP2 │ │ ├── HTTP2GetMimeHeadersResult.cpp │ │ ├── HTTP2MimeRequestEncoder.cpp │ │ ├── HTTP2MimeResponseDecoder.cpp │ │ └── HTTP2SendDataResult.cpp │ ├── ID3Tags │ │ └── ID3v2Tags.cpp │ ├── JSON │ │ ├── JSONGenerator.cpp │ │ └── JSONUtils.cpp │ ├── LibcurlUtils │ │ ├── CallbackData.cpp │ │ ├── CurlEasyHandleWrapper.cpp │ │ ├── CurlMultiHandleWrapper.cpp │ │ ├── DefaultSetCurlOptionsCallbackFactory.cpp │ │ ├── HTTPContentFetcherFactory.cpp │ │ ├── HTTPResponse.cpp │ │ ├── HttpPost.cpp │ │ ├── HttpPut.cpp │ │ ├── LibCurlHttpContentFetcher.cpp │ │ ├── LibcurlHTTP2Connection.cpp │ │ ├── LibcurlHTTP2ConnectionFactory.cpp │ │ ├── LibcurlHTTP2Request.cpp │ │ └── LibcurlUtils.cpp │ ├── Logger │ │ ├── ConsoleLogger.cpp │ │ ├── Level.cpp │ │ ├── LogEntry.cpp │ │ ├── LogEntryBuffer.cpp │ │ ├── LogEntryStream.cpp │ │ ├── LogStringFormatter.cpp │ │ ├── Logger.cpp │ │ ├── LoggerSinkManager.cpp │ │ ├── LoggerUtils.cpp │ │ ├── ModuleLogger.cpp │ │ └── ThreadMoniker.cpp │ ├── MacAddressString.cpp │ ├── MediaPlayer │ │ ├── PlaybackContext.cpp │ │ ├── PooledMediaPlayerFactory.cpp │ │ └── PooledMediaResourceProvider.cpp │ ├── Metrics.cpp │ ├── Metrics │ │ ├── DataPoint.cpp │ │ ├── DataPointCounterBuilder.cpp │ │ ├── DataPointDurationBuilder.cpp │ │ ├── DataPointStringBuilder.cpp │ │ ├── MetricEvent.cpp │ │ ├── MetricEventBuilder.cpp │ │ └── UplData.cpp │ ├── MultiTimer.cpp │ ├── Network │ │ └── InternetConnectionMonitor.cpp │ ├── Power │ │ ├── AggregatedPowerResourceManager.cpp │ │ ├── PowerMonitor.cpp │ │ ├── PowerResource.cpp │ │ └── WakeGuard.cpp │ ├── RequiresShutdown.cpp │ ├── RetryTimer.cpp │ ├── SafeCTimeAccess.cpp │ ├── Stopwatch.cpp │ ├── Stream │ │ ├── StreamFunctions.cpp │ │ └── Streambuf.cpp │ ├── StringUtils.cpp │ ├── TaskThread.cpp │ ├── ThreadPool.cpp │ ├── Threading │ │ ├── ConditionVariableWrapper.cpp │ │ ├── Executor.cpp │ │ ├── ExecutorFactory.cpp │ │ └── SharedExecutor.cpp │ ├── TimePoint.cpp │ ├── TimeUtils.cpp │ ├── Timer.cpp │ ├── Timing │ │ ├── TimerDelegate.cpp │ │ └── TimerDelegateFactory.cpp │ ├── UUIDGeneration.cpp │ ├── WaitEvent.cpp │ ├── WavUtils.cpp │ └── WorkerThread.cpp │ └── test │ ├── AVSCommon │ └── Utils │ │ ├── Common │ │ ├── Common.h │ │ ├── MimeUtils.h │ │ ├── MockRequiresShutdown.h │ │ ├── TestableAttachmentManager.h │ │ ├── TestableAttachmentWriter.h │ │ └── TestableMessageObserver.h │ │ ├── HTTP2 │ │ ├── MockHTTP2MimeRequestEncodeSource.h │ │ └── MockHTTP2MimeResponseDecodeSink.h │ │ ├── LibcurlUtils │ │ ├── MockHttpGet.h │ │ └── MockHttpPost.h │ │ ├── Logger │ │ └── TestTrace.h │ │ ├── MediaPlayer │ │ ├── MockMediaPlayer.h │ │ └── PlaybackContextTest.cpp │ │ ├── Metrics │ │ └── MockMetricRecorder.h │ │ ├── Network │ │ └── MockInternetConnectionMonitor.h │ │ ├── OptionalTest.cpp │ │ ├── Power │ │ ├── AggregatedPowerResourceManagerTest.cpp │ │ ├── PowerResourceTest.cpp │ │ └── WakeGuardTest.cpp │ │ ├── Threading │ │ └── ConditionVariableWrapperTest.cpp │ │ └── Timing │ │ ├── StopTaskTimer.h │ │ └── TimerDelegateTest.cpp │ ├── CMakeLists.txt │ ├── Common │ ├── CMakeLists.txt │ ├── Common.cpp │ ├── MimeUtils.cpp │ ├── MockHTTP2MimeRequestEncodeSource.cpp │ ├── MockHTTP2MimeResponseDecodeSink.cpp │ ├── MockMediaPlayer.cpp │ ├── MockRequiresShutdown.cpp │ ├── TestTrace.cpp │ ├── TestableAttachmentManager.cpp │ ├── TestableAttachmentWriter.cpp │ ├── TestableMessageObserver.cpp │ └── Timing │ │ └── StopTaskTimer.cpp │ ├── ConfigurationNodeTest.cpp │ ├── DataPointTest.cpp │ ├── DeviceInfoTest.cpp │ ├── EndianTest.cpp │ ├── ExecutorTest.cpp │ ├── ExecutorTestUtils.h │ ├── FileSystemUtilsTest.cpp │ ├── GmockExtensionTest.cpp │ ├── HTTPContentTest.cpp │ ├── ID3v2TagsTest.cpp │ ├── JSONGeneratorTest.cpp │ ├── JSONUtilTest.cpp │ ├── LibCurlHTTP2ConnectionTest.cpp │ ├── LogEntryStreamTest.cpp │ ├── LoggerTest.cpp │ ├── MIMEParserTest.cpp │ ├── MacAddressStringTest.cpp │ ├── MetricEventTest.cpp │ ├── MultiTimerTest.cpp │ ├── PooledMediaPlayerFactoryTest.cpp │ ├── RequiresShutdownTest.cpp │ ├── SafeTimeAccessTest.cpp │ ├── SharedDataStreamTest.cpp │ ├── StopwatchTest.cpp │ ├── StreamFunctionsTest.cpp │ ├── StreambufTest.cpp │ ├── StringUtilsTest.cpp │ ├── TaskThreadTest.cpp │ ├── ThreadPoolTest.cpp │ ├── TimeUtilsTest.cpp │ ├── TimerTest.cpp │ ├── UUIDGenerationTest.cpp │ ├── WorkerThreadTest.cpp │ └── acsdk │ └── Test │ └── GmockExtensions.h ├── AVSGatewayManager ├── CMakeLists.txt ├── include │ └── AVSGatewayManager │ │ ├── AVSGatewayManager.h │ │ ├── AuthRefreshedObserver.h │ │ ├── GatewayVerifyState.h │ │ ├── PostConnectVerifyGatewaySender.h │ │ └── Storage │ │ ├── AVSGatewayManagerStorage.h │ │ └── AVSGatewayManagerStorageInterface.h ├── src │ ├── AVSGatewayManager.cpp │ ├── AuthRefreshedObserver.cpp │ ├── CMakeLists.txt │ ├── PostConnectVerifyGatewaySender.cpp │ └── Storage │ │ └── AVSGatewayManagerStorage.cpp └── test │ ├── AVSGatewayManagerTest.cpp │ ├── AuthRefreshedObserverTest.cpp │ ├── CMakeLists.txt │ ├── PostConnectVerifyGatewaySenderTest.cpp │ └── Storage │ └── AVSGatewayManagerStorageTest.cpp ├── ApplicationUtilities ├── AndroidUtilities │ ├── CMakeLists.txt │ ├── include │ │ └── AndroidUtilities │ │ │ ├── AndroidLogger.h │ │ │ ├── AndroidSLESBufferQueue.h │ │ │ ├── AndroidSLESEngine.h │ │ │ ├── AndroidSLESMicrophone.h │ │ │ └── AndroidSLESObject.h │ ├── src │ │ ├── AndroidLogger.cpp │ │ ├── AndroidSLESBufferQueue.cpp │ │ ├── AndroidSLESEngine.cpp │ │ ├── AndroidSLESMicrophone.cpp │ │ ├── AndroidSLESObject.cpp │ │ └── CMakeLists.txt │ └── test │ │ ├── AndroidLoggerTest.cpp │ │ ├── AndroidSLESBufferQueueTest.cpp │ │ ├── AndroidSLESMicrophoneTest.cpp │ │ ├── AndroidSLESObjectTest.cpp │ │ ├── AndroidUtilities │ │ ├── MockAndroidSLESInterface.h │ │ └── MockAndroidSLESObject.h │ │ └── CMakeLists.txt ├── CMakeLists.txt ├── DefaultClient │ ├── CMakeLists.txt │ ├── include │ │ └── DefaultClient │ │ │ ├── ConnectionRetryTrigger.h │ │ │ ├── DefaultClient.h │ │ │ ├── DefaultClientBuilder.h │ │ │ ├── DefaultClientComponent.h │ │ │ ├── EqualizerRuntimeSetup.h │ │ │ ├── ExternalCapabilitiesBuilderInterface.h │ │ │ └── StubApplicationAudioPipelineFactory.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── ConnectionRetryTrigger.cpp │ │ ├── DefaultClient.cpp │ │ ├── DefaultClientBuilder.cpp │ │ ├── DefaultClientComponent.cpp │ │ ├── EqualizerRuntimeSetup.cpp │ │ └── StubApplicationAudioPipelineFactory.cpp ├── Resources │ ├── Audio │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── Audio │ │ │ │ ├── AlertsAudioFactory.h │ │ │ │ ├── AudioFactory.h │ │ │ │ ├── CommunicationsAudioFactory.h │ │ │ │ ├── Data │ │ │ │ ├── .clang-format │ │ │ │ ├── create_header.bash │ │ │ │ ├── med_alerts_notification_01.mp3.h │ │ │ │ ├── med_alerts_notification_02.mp3.h │ │ │ │ ├── med_alerts_notification_03.mp3.h │ │ │ │ ├── med_comms_call_connected.mp3.h │ │ │ │ ├── med_comms_call_disconnected.mp3.h │ │ │ │ ├── med_comms_call_incoming_ringtone.mp3.h │ │ │ │ ├── med_comms_drop_in_incoming.mp3.h │ │ │ │ ├── med_comms_outbound_ringtone.mp3.h │ │ │ │ ├── med_state_bluetooth_connected.mp3.h │ │ │ │ ├── med_state_bluetooth_disconnected.mp3.h │ │ │ │ ├── med_state_privacy_mode_off.wav.h │ │ │ │ ├── med_state_privacy_mode_on.wav.h │ │ │ │ ├── med_system_alerts_melodic_01.mp3.h │ │ │ │ ├── med_system_alerts_melodic_01_short.wav.h │ │ │ │ ├── med_system_alerts_melodic_02.mp3.h │ │ │ │ ├── med_system_alerts_melodic_02_short.wav.h │ │ │ │ ├── med_ui_endpointing.wav.h │ │ │ │ ├── med_ui_endpointing_touch.wav.h │ │ │ │ ├── med_ui_wakesound.wav.h │ │ │ │ ├── med_ui_wakesound_touch.wav.h │ │ │ │ └── med_utility_500ms_blank.wav.h │ │ │ │ ├── MicrophoneInterface.h │ │ │ │ ├── NotificationsAudioFactory.h │ │ │ │ └── SystemSoundAudioFactory.h │ │ └── src │ │ │ ├── AlertsAudioFactory.cpp │ │ │ ├── AudioFactory.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CommunicationsAudioFactory.cpp │ │ │ ├── NotificationsAudioFactory.cpp │ │ │ └── SystemSoundAudioFactory.cpp │ └── CMakeLists.txt ├── SDKComponent │ ├── CMakeLists.txt │ ├── include │ │ └── SDKComponent │ │ │ └── SDKComponent.h │ ├── src │ │ ├── CMakeLists.txt │ │ └── SDKComponent.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── SDKComponentTest.cpp └── SystemSoundPlayer │ ├── CMakeLists.txt │ ├── include │ └── SystemSoundPlayer │ │ └── SystemSoundPlayer.h │ ├── src │ ├── CMakeLists.txt │ └── SystemSoundPlayer.cpp │ └── test │ ├── CMakeLists.txt │ └── SystemSoundPlayerTest.cpp ├── BluetoothImplementations ├── BlueZ │ ├── CMakeLists.txt │ ├── include │ │ └── BlueZ │ │ │ ├── BlueZA2DPSink.h │ │ │ ├── BlueZA2DPSource.h │ │ │ ├── BlueZAVRCPController.h │ │ │ ├── BlueZAVRCPTarget.h │ │ │ ├── BlueZBluetoothDevice.h │ │ │ ├── BlueZBluetoothDeviceManager.h │ │ │ ├── BlueZConstants.h │ │ │ ├── BlueZDeviceManager.h │ │ │ ├── BlueZHFP.h │ │ │ ├── BlueZHID.h │ │ │ ├── BlueZHostController.h │ │ │ ├── BlueZSPP.h │ │ │ ├── BlueZUtils.h │ │ │ ├── DBusConnection.h │ │ │ ├── DBusObject.h │ │ │ ├── DBusObjectBase.h │ │ │ ├── DBusPropertiesProxy.h │ │ │ ├── DBusProxy.h │ │ │ ├── GVariantMapReader.h │ │ │ ├── GVariantTupleReader.h │ │ │ ├── MPRISPlayer.h │ │ │ ├── ManagedGError.h │ │ │ ├── ManagedGVariant.h │ │ │ ├── MediaContext.h │ │ │ ├── MediaEndpoint.h │ │ │ ├── PairingAgent.h │ │ │ └── PulseAudioBluetoothInitializer.h │ ├── src │ │ ├── BlueZA2DPSink.cpp │ │ ├── BlueZA2DPSource.cpp │ │ ├── BlueZAVRCPController.cpp │ │ ├── BlueZAVRCPTarget.cpp │ │ ├── BlueZBluetoothDevice.cpp │ │ ├── BlueZBluetoothDeviceManager.cpp │ │ ├── BlueZDeviceManager.cpp │ │ ├── BlueZHFP.cpp │ │ ├── BlueZHID.cpp │ │ ├── BlueZHostController.cpp │ │ ├── BlueZSPP.cpp │ │ ├── CMakeLists.txt │ │ ├── DBusConnection.cpp │ │ ├── DBusObjectBase.cpp │ │ ├── DBusPropertiesProxy.cpp │ │ ├── DBusProxy.cpp │ │ ├── GVariantMapReader.cpp │ │ ├── GVariantTupleReader.cpp │ │ ├── MPRISPlayer.cpp │ │ ├── MediaContext.cpp │ │ ├── MediaEndpoint.cpp │ │ ├── PairingAgent.cpp │ │ └── PulseAudioBluetoothInitializer.cpp │ └── test │ │ ├── BlueZA2DPSinkTest.cpp │ │ ├── BlueZAVRCPControllerTest.cpp │ │ ├── BlueZAVRCPTargetTest.cpp │ │ ├── BlueZHFPTest.cpp │ │ ├── BlueZHIDTest.cpp │ │ ├── BlueZSPPTest.cpp │ │ ├── CMakeLists.txt │ │ ├── MPRISPlayerTest.cpp │ │ └── Mock │ │ └── include │ │ └── MockDBusProxy.h └── CMakeLists.txt ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CapabilitiesDelegate ├── CMakeLists.txt ├── include │ └── CapabilitiesDelegate │ │ ├── CapabilitiesDelegate.h │ │ ├── DiscoveryEventSender.h │ │ ├── DiscoveryEventSenderInterface.h │ │ ├── DiscoveryStatusObserverInterface.h │ │ ├── PostConnectCapabilitiesPublisher.h │ │ ├── Storage │ │ ├── CapabilitiesDelegateStorageInterface.h │ │ └── SQLiteCapabilitiesDelegateStorage.h │ │ └── Utils │ │ └── DiscoveryUtils.h ├── src │ ├── CMakeLists.txt │ ├── CapabilitiesDelegate.cpp │ ├── DiscoveryEventSender.cpp │ ├── PostConnectCapabilitiesPublisher.cpp │ ├── Storage │ │ └── SQLiteCapabilitiesDelegateStorage.cpp │ └── Utils │ │ └── DiscoveryUtils.cpp └── test │ ├── CMakeLists.txt │ ├── CapabilitiesDelegateTest.cpp │ ├── DiscoveryEventSenderTest.cpp │ ├── MockAuthDelegate.h │ ├── MockCapabilitiesDelegateObserver.h │ ├── MockCapabilitiesStorage.h │ ├── MockDiscoveryEventSender.h │ ├── PostConnectCapabilitiesPublisherTest.cpp │ ├── Storage │ └── SQLiteCapabilitiesDelegateStorageTest.cpp │ └── Utils │ └── DiscoveryUtilsTest.cpp ├── CapabilityAgents ├── AIP │ ├── CMakeLists.txt │ ├── include │ │ └── AIP │ │ │ ├── ASRProfile.h │ │ │ ├── AudioInputProcessor.h │ │ │ ├── AudioProvider.h │ │ │ └── Initiator.h │ ├── src │ │ ├── AudioInputProcessor.cpp │ │ └── CMakeLists.txt │ └── test │ │ ├── AudioInputProcessorTest.cpp │ │ ├── CMakeLists.txt │ │ └── MockObserver.h ├── Alexa │ ├── CMakeLists.txt │ ├── include │ │ └── Alexa │ │ │ ├── AlexaEventProcessedNotifier.h │ │ │ ├── AlexaInterfaceCapabilityAgent.h │ │ │ ├── AlexaInterfaceConstants.h │ │ │ ├── AlexaInterfaceMessageSender.h │ │ │ └── AlexaInterfaceMessageSenderInternalInterface.h │ ├── src │ │ ├── AlexaEventProcessedNotifier.cpp │ │ ├── AlexaInterfaceCapabilityAgent.cpp │ │ ├── AlexaInterfaceMessageSender.cpp │ │ └── CMakeLists.txt │ └── test │ │ ├── AlexaInterfaceCapabilityAgentTest.cpp │ │ ├── AlexaInterfaceMessageSenderTest.cpp │ │ ├── CMakeLists.txt │ │ └── include │ │ └── MockAlexaInterfaceMessageSenderInternal.h ├── ApiGateway │ ├── CMakeLists.txt │ ├── include │ │ └── ApiGateway │ │ │ └── ApiGatewayCapabilityAgent.h │ ├── src │ │ ├── ApiGatewayCapabilityAgent.cpp │ │ └── CMakeLists.txt │ └── test │ │ ├── ApiGatewayCapabilityAgentTest.cpp │ │ └── CMakeLists.txt ├── CMakeLists.txt ├── InteractionModel │ ├── CMakeLists.txt │ ├── acsdkInteractionModel │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkInteractionModel │ │ │ │ └── InteractionModelComponent.h │ │ ├── privateInclude │ │ │ └── acsdkInteractionModel │ │ │ │ ├── InteractionModelCapabilityAgent.h │ │ │ │ └── InteractionModelNotifier.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── InteractionModelCapabilityAgent.cpp │ │ │ ├── InteractionModelComponent.cpp │ │ │ └── InteractionModelNotifier.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── InteractionModelCapabilityAgentTest.cpp │ └── acsdkInteractionModelInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkInteractionModelInterfaces │ │ ├── InteractionModelNotifierInterface.h │ │ └── InteractionModelRequestProcessingObserverInterface.h ├── ModeController │ ├── CMakeLists.txt │ ├── include │ │ └── ModeController │ │ │ ├── ModeControllerAttributeBuilder.h │ │ │ └── ModeControllerCapabilityAgent.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── ModeControllerAttributeBuilder.cpp │ │ └── ModeControllerCapabilityAgent.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── ModeControllerCapabilityAgentTest.cpp ├── PlaybackController │ ├── CMakeLists.txt │ ├── include │ │ └── PlaybackController │ │ │ ├── PlaybackCommand.h │ │ │ ├── PlaybackController.h │ │ │ ├── PlaybackControllerComponent.h │ │ │ ├── PlaybackMessageRequest.h │ │ │ └── PlaybackRouter.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── PlaybackCommand.cpp │ │ ├── PlaybackController.cpp │ │ ├── PlaybackControllerComponent.cpp │ │ ├── PlaybackMessageRequest.cpp │ │ └── PlaybackRouter.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── PlaybackControllerTest.cpp │ │ └── PlaybackRouterTest.cpp ├── PowerController │ ├── CMakeLists.txt │ ├── include │ │ └── PowerController │ │ │ └── PowerControllerCapabilityAgent.h │ ├── src │ │ ├── CMakeLists.txt │ │ └── PowerControllerCapabilityAgent.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── PowerControllerCapabilityAgentTest.cpp ├── RangeController │ ├── CMakeLists.txt │ ├── include │ │ └── RangeController │ │ │ ├── RangeControllerAttributeBuilder.h │ │ │ └── RangeControllerCapabilityAgent.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── RangeControllerAttributeBuilder.cpp │ │ └── RangeControllerCapabilityAgent.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── RangeControllerCapabilityAgentTest.cpp ├── SoftwareComponentReporter │ ├── CMakeLists.txt │ ├── include │ │ └── SoftwareComponentReporter │ │ │ └── SoftwareComponentReporterCapabilityAgent.h │ ├── src │ │ ├── CMakeLists.txt │ │ └── SoftwareComponentReporterCapabilityAgent.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── SoftwareComponentReporterCapabilityAgentTest.cpp ├── SpeakerManager │ ├── CMakeLists.txt │ ├── SpeakerManager │ │ ├── CMakeLists.txt │ │ ├── doc │ │ │ ├── Namespaces.dox │ │ │ └── SpeakerManager.dox │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── SpeakerManager │ │ │ │ ├── Factories.h │ │ │ │ ├── SpeakerManagerConfigInterface.h │ │ │ │ ├── SpeakerManagerStorageInterface.h │ │ │ │ └── SpeakerManagerStorageState.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── SpeakerManager │ │ │ │ └── private │ │ │ │ ├── ChannelVolumeManager.h │ │ │ │ ├── DefaultChannelVolumeFactory.h │ │ │ │ ├── SpeakerManager.h │ │ │ │ ├── SpeakerManagerConfig.h │ │ │ │ ├── SpeakerManagerConfigHelper.h │ │ │ │ ├── SpeakerManagerConstants.h │ │ │ │ └── SpeakerManagerMiscStorage.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── ChannelVolumeFactory.cpp │ │ │ ├── ChannelVolumeManager.cpp │ │ │ ├── DefaultChannelVolumeFactory.cpp │ │ │ ├── Factories.cpp │ │ │ ├── SpeakerManager.cpp │ │ │ ├── SpeakerManagerConfig.cpp │ │ │ ├── SpeakerManagerConfigHelper.cpp │ │ │ └── SpeakerManagerMiscStorage.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── ChannelVolumeManagerTest.cpp │ │ │ ├── Namespaces.dox │ │ │ ├── SpeakerManagerConfigHelperTest.cpp │ │ │ ├── SpeakerManagerConfigTest.cpp │ │ │ ├── SpeakerManagerMiscStorageTest.cpp │ │ │ ├── SpeakerManagerTest.cpp │ │ │ ├── SpeakerManagerTest.dox │ │ │ └── include │ │ │ └── acsdk │ │ │ └── SpeakerManager │ │ │ └── test │ │ │ ├── MockSpeakerManagerConfig.h │ │ │ ├── MockSpeakerManagerObserver.h │ │ │ └── MockSpeakerManagerStorage.h │ └── SpeakerManagerComponent │ │ ├── CMakeLists.txt │ │ ├── doc │ │ ├── Namespaces.dox │ │ └── SpeakerManagerComponent.dox │ │ ├── include │ │ └── acsdk │ │ │ └── SpeakerManager │ │ │ ├── ChannelVolumeFactoryComponent.h │ │ │ └── SpeakerManagerComponent.h │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── ChannelVolumeFactoryComponent.cpp │ │ └── SpeakerManagerComponent.cpp ├── SpeechSynthesizer │ ├── CMakeLists.txt │ ├── include │ │ └── SpeechSynthesizer │ │ │ └── SpeechSynthesizer.h │ ├── src │ │ ├── CMakeLists.txt │ │ └── SpeechSynthesizer.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── SpeechSynthesizerTest.cpp ├── System │ ├── CMakeLists.txt │ ├── a4btest │ │ ├── CMakeLists.txt │ │ └── RevokeAuthorizationHandlerTest.cpp │ ├── include │ │ └── System │ │ │ ├── LocaleHandler.h │ │ │ ├── ReportStateHandler.h │ │ │ ├── RevokeAuthorizationHandler.h │ │ │ ├── SoftwareInfoSendRequest.h │ │ │ ├── SoftwareInfoSender.h │ │ │ ├── StateReportGenerator.h │ │ │ ├── SystemCapabilityProvider.h │ │ │ ├── SystemComponent.h │ │ │ ├── TimeZoneHandler.h │ │ │ └── UserInactivityMonitor.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── LocaleHandler.cpp │ │ ├── ReportStateHandler.cpp │ │ ├── RevokeAuthorizationHandler.cpp │ │ ├── SoftwareInfoSendRequest.cpp │ │ ├── SoftwareInfoSender.cpp │ │ ├── StateReportGenerator.cpp │ │ ├── SystemCapabilityProvider.cpp │ │ ├── SystemComponent.cpp │ │ ├── TimeZoneHandler.cpp │ │ └── UserInactivityMonitor.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── LocaleHandlerTest.cpp │ │ ├── ReportStateHandlerTest.cpp │ │ ├── SoftwareInfoTest.cpp │ │ ├── StateReportGeneratorTest.cpp │ │ ├── SystemCapabilityProviderTest.cpp │ │ ├── TimeZoneHandlerTest.cpp │ │ └── UserInactivityMonitorTest.cpp └── ToggleController │ ├── CMakeLists.txt │ ├── include │ └── ToggleController │ │ ├── ToggleControllerAttributeBuilder.h │ │ └── ToggleControllerCapabilityAgent.h │ ├── src │ ├── CMakeLists.txt │ ├── ToggleControllerAttributeBuilder.cpp │ └── ToggleControllerCapabilityAgent.cpp │ └── test │ ├── CMakeLists.txt │ └── ToggleControllerCapabilityAgentTest.cpp ├── Captions ├── CMakeLists.txt ├── Component │ ├── CMakeLists.txt │ ├── include │ │ └── Captions │ │ │ └── CaptionsComponent.h │ └── src │ │ ├── CMakeLists.txt │ │ └── CaptionsComponent.cpp ├── Implementation │ ├── CMakeLists.txt │ ├── include │ │ └── Captions │ │ │ ├── CaptionFrameParseListenerInterface.h │ │ │ ├── CaptionManager.h │ │ │ ├── CaptionParserInterface.h │ │ │ ├── CaptionTimingAdapter.h │ │ │ ├── CaptionTimingAdapterInterface.h │ │ │ ├── DelayInterface.h │ │ │ ├── LibwebvttParserAdapter.h │ │ │ ├── SystemClockDelay.h │ │ │ └── TimingAdapterFactory.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── CaptionManager.cpp │ │ ├── CaptionTimingAdapter.cpp │ │ ├── LibwebvttParserAdapter.cpp │ │ ├── SystemClockDelay.cpp │ │ └── TimingAdapterFactory.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── CaptionManagerTest.cpp │ │ ├── CaptionTimingAdapterTest.cpp │ │ ├── LibwebvttParserAdapterTest.cpp │ │ ├── MockCaptionManager.h │ │ ├── MockCaptionParser.h │ │ ├── MockCaptionPresenter.h │ │ ├── MockCaptionTimingAdapter.h │ │ ├── MockSystemClockDelay.h │ │ ├── TestTimingAdapterFactory.cpp │ │ └── TestTimingAdapterFactory.h └── Interface │ ├── CMakeLists.txt │ ├── include │ └── Captions │ │ ├── CaptionData.h │ │ ├── CaptionFormat.h │ │ ├── CaptionFrame.h │ │ ├── CaptionLine.h │ │ ├── CaptionManagerInterface.h │ │ ├── CaptionPresenterInterface.h │ │ └── TextStyle.h │ ├── src │ ├── CMakeLists.txt │ ├── CaptionData.cpp │ ├── CaptionFrame.cpp │ ├── CaptionLine.cpp │ └── TextStyle.cpp │ └── test │ ├── CMakeLists.txt │ ├── CaptionDataTest.cpp │ ├── CaptionFormatAvsTest.cpp │ ├── CaptionFormatUtilsTest.cpp │ ├── CaptionFrameTest.cpp │ ├── CaptionLineTest.cpp │ └── TextStyleTest.cpp ├── CertifiedSender ├── CMakeLists.txt ├── include │ └── CertifiedSender │ │ ├── CertifiedSender.h │ │ ├── MessageStorageInterface.h │ │ └── SQLiteMessageStorage.h ├── src │ ├── CMakeLists.txt │ ├── CertifiedSender.cpp │ └── SQLiteMessageStorage.cpp └── test │ ├── CMakeLists.txt │ ├── CertifiedSenderTest.cpp │ ├── Common │ ├── CMakeLists.txt │ └── MockCertifiedSender.cpp │ ├── MessageStorageTest.cpp │ ├── MockCertifiedSender.h │ └── MockMessageStorage.h ├── ContextManager ├── CMakeLists.txt ├── include │ └── ContextManager │ │ └── ContextManager.h ├── src │ ├── CMakeLists.txt │ └── ContextManager.cpp └── test │ ├── CMakeLists.txt │ └── ContextManagerTest.cpp ├── Diagnostics ├── CMakeLists.txt ├── include │ └── Diagnostics │ │ ├── AudioInjectorMicrophone.h │ │ ├── DevicePropertyAggregator.h │ │ ├── DeviceProtocolTracer.h │ │ ├── DiagnosticsUtils.h │ │ └── FileBasedAudioInjector.h ├── src │ ├── AudioInjectorMicrophone.cpp │ ├── CMakeLists.txt │ ├── DevicePropertyAggregator.cpp │ ├── DeviceProtocolTracer.cpp │ ├── DiagnosticsUtils.cpp │ └── FileBasedAudioInjector.cpp └── test │ ├── CMakeLists.txt │ ├── DevicePropertyAggregatorTest.cpp │ └── DeviceProtocolTracerTest.cpp ├── Endpoints ├── CMakeLists.txt ├── include │ └── Endpoints │ │ ├── DefaultEndpointBuilder.h │ │ ├── Endpoint.h │ │ ├── EndpointAttributeValidation.h │ │ ├── EndpointBuilder.h │ │ └── EndpointRegistrationManager.h ├── src │ ├── CMakeLists.txt │ ├── DefaultEndpointBuilder.cpp │ ├── Endpoint.cpp │ ├── EndpointAttributeValidation.cpp │ ├── EndpointBuilder.cpp │ └── EndpointRegistrationManager.cpp └── test │ ├── CMakeLists.txt │ ├── DefaultEndpointBuilderTest.cpp │ ├── EndpointAttributeValidationTest.cpp │ ├── EndpointBuilderTest.cpp │ ├── EndpointRegistrationManagerTest.cpp │ └── EndpointTest.cpp ├── Integration └── AlexaClientSDKConfig.json ├── InterruptModel ├── CMakeLists.txt ├── LICENSE ├── config │ ├── include │ │ └── InterruptModel │ │ │ └── config │ │ │ └── InterruptModelConfiguration.h │ └── src │ │ └── InterruptModelConfiguration.cpp ├── include │ └── InterruptModel │ │ └── InterruptModel.h ├── src │ ├── CMakeLists.txt │ └── InterruptModel.cpp └── test │ ├── CMakeLists.txt │ └── InterruptModelTest.cpp ├── LICENSE.txt ├── MediaPlayer ├── .gitignore ├── AndroidSLESMediaPlayer │ ├── CMakeLists.txt │ ├── include │ │ └── AndroidSLESMediaPlayer │ │ │ ├── AndroidSLESMediaPlayer.h │ │ │ ├── AndroidSLESMediaQueue.h │ │ │ ├── AndroidSLESSpeaker.h │ │ │ ├── DecoderInterface.h │ │ │ ├── FFmpegAttachmentInputController.h │ │ │ ├── FFmpegDecoder.h │ │ │ ├── FFmpegDeleter.h │ │ │ ├── FFmpegInputControllerInterface.h │ │ │ ├── FFmpegStreamInputController.h │ │ │ ├── FFmpegUrlInputController.h │ │ │ └── PlaybackConfiguration.h │ ├── src │ │ ├── AndroidSLESMediaPlayer.cpp │ │ ├── AndroidSLESMediaQueue.cpp │ │ ├── AndroidSLESSpeaker.cpp │ │ ├── CMakeLists.txt │ │ ├── FFmpegAttachmentInputController.cpp │ │ ├── FFmpegDecoder.cpp │ │ ├── FFmpegDeleter.cpp │ │ ├── FFmpegStreamInputController.cpp │ │ ├── FFmpegUrlInputController.cpp │ │ └── PlaybackConfiguration.cpp │ └── test │ │ ├── AndroidSLESMediaPlayerTest.cpp │ │ ├── AndroidSLESMediaQueueTest.cpp │ │ ├── AndroidSLESSpeakerTest.cpp │ │ ├── CMakeLists.txt │ │ ├── FFmpegAttachmentInputControllerTest.cpp │ │ ├── FFmpegDecoderTest.cpp │ │ ├── FFmpegStreamInputControllerTest.cpp │ │ └── FFmpegUrlInputControllerTest.cpp ├── CMakeLists.txt ├── GStreamerMediaPlayer │ ├── CMakeLists.txt │ ├── include │ │ └── MediaPlayer │ │ │ ├── AttachmentReaderSource.h │ │ │ ├── BaseStreamSource.h │ │ │ ├── ErrorTypeConversion.h │ │ │ ├── IStreamSource.h │ │ │ ├── MediaPlayer.h │ │ │ ├── Normalizer.h │ │ │ ├── OffsetManager.h │ │ │ ├── PipelineInterface.h │ │ │ ├── SourceInterface.h │ │ │ └── SourceObserverInterface.h │ ├── src │ │ ├── AttachmentReaderSource.cpp │ │ ├── BaseStreamSource.cpp │ │ ├── CMakeLists.txt │ │ ├── ErrorTypeConversion.cpp │ │ ├── IStreamSource.cpp │ │ ├── MediaPlayer.cpp │ │ ├── Normalizer.cpp │ │ └── OffsetManager.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── ErrorTypeConversionTest.cpp │ │ ├── MediaPlayerTest.cpp │ │ └── NormalizerTest.cpp └── inputs │ └── fox_dog.mp3 ├── Metrics ├── CMakeLists.txt ├── MetricRecorder │ ├── CMakeLists.txt │ ├── include │ │ └── Metrics │ │ │ └── MetricRecorder.h │ └── src │ │ ├── CMakeLists.txt │ │ └── MetricRecorder.cpp ├── SampleMetricSink │ ├── CMakeLists.txt │ ├── include │ │ └── Metrics │ │ │ └── SampleMetricSink.h │ └── src │ │ ├── CMakeLists.txt │ │ └── SampleMetricSink.cpp └── UplCalculator │ ├── CMakeLists.txt │ ├── include │ └── Metrics │ │ ├── BaseUplCalculator.h │ │ ├── MediaUplCalculator.h │ │ ├── TtsUplCalculator.h │ │ └── UplMetricSink.h │ └── src │ ├── BaseUplCalculator.cpp │ ├── CMakeLists.txt │ ├── MediaUplCalculator.cpp │ ├── TtsUplCalculator.cpp │ └── UplMetricSink.cpp ├── NOTICE.txt ├── PlaylistParser ├── CMakeLists.txt ├── include │ └── PlaylistParser │ │ ├── ContentDecrypter.h │ │ ├── FFMpegInputBuffer.h │ │ ├── Id3TagsRemover.h │ │ ├── IterativePlaylistParser.h │ │ ├── M3UParser.h │ │ ├── PlaylistParser.h │ │ ├── PlaylistUtils.h │ │ └── UrlContentToAttachmentConverter.h ├── inputs │ ├── sample.m3u8 │ ├── sample2.m3u │ └── sample3.pls ├── src │ ├── CMakeLists.txt │ ├── ContentDecrypter.cpp │ ├── FFMpegInputBuffer.cpp │ ├── Id3TagsRemover.cpp │ ├── IterativePlaylistParser.cpp │ ├── M3UParser.cpp │ ├── PlaylistParser.cpp │ ├── PlaylistUtils.cpp │ └── UrlContentToAttachmentConverter.cpp └── test │ ├── CMakeLists.txt │ ├── ContentDecrypterTest.cpp │ ├── Id3TagsRemoverTest.cpp │ ├── IterativePlaylistParserTest.cpp │ ├── M3UParserTest.cpp │ ├── PlaylistParser │ └── MockContentFetcher.h │ ├── PlaylistParserTest.cpp │ └── PlaylistUtilsTest.cpp ├── README.md ├── SECURITY.md ├── SampleApplications ├── CMakeLists.txt ├── Common │ ├── Authorization │ │ └── CBLAuthDelegate │ │ │ ├── include │ │ │ └── CBLAuthDelegate │ │ │ │ ├── CBLAuthDelegate.h │ │ │ │ └── SQLiteCBLAuthDelegateStorage.h │ │ │ └── src │ │ │ ├── CBLAuthDelegate.cpp │ │ │ └── SQLiteCBLAuthDelegateStorage.cpp │ ├── CMakeLists.txt │ ├── Console │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── Sample │ │ │ │ └── Console │ │ │ │ └── ConsolePrinter.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── ConsolePrinter.cpp │ ├── Endpoint │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── Sample │ │ │ │ └── Endpoint │ │ │ │ ├── DefaultEndpoint │ │ │ │ ├── DefaultEndpointModeControllerHandler.h │ │ │ │ ├── DefaultEndpointRangeControllerHandler.h │ │ │ │ └── DefaultEndpointToggleControllerHandler.h │ │ │ │ ├── EndpointAlexaChannelControllerHandler.h │ │ │ │ ├── EndpointAlexaKeypadControllerHandler.h │ │ │ │ ├── EndpointAlexaLauncherHandler.h │ │ │ │ ├── EndpointAlexaPlaybackControllerHandler.h │ │ │ │ ├── EndpointAlexaRecordControllerHandler.h │ │ │ │ ├── EndpointAlexaRemoteVideoPlayerHandler.h │ │ │ │ ├── EndpointAlexaSeekControllerHandler.h │ │ │ │ ├── EndpointAlexaVideoRecorderHandler.h │ │ │ │ ├── EndpointCapabilitiesBuilder.h │ │ │ │ ├── EndpointFocusAdapter.h │ │ │ │ ├── EndpointInputControllerHandler.h │ │ │ │ └── InputControllerEndpointCapabilitiesBuilder.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── DefaultEndpoint │ │ │ ├── DefaultEndpointModeControllerHandler.cpp │ │ │ ├── DefaultEndpointRangeControllerHandler.cpp │ │ │ └── DefaultEndpointToggleControllerHandler.cpp │ │ │ ├── EndpointAlexaChannelControllerHandler.cpp │ │ │ ├── EndpointAlexaKeypadControllerHandler.cpp │ │ │ ├── EndpointAlexaLauncherHandler.cpp │ │ │ ├── EndpointAlexaPlaybackControllerHandler.cpp │ │ │ ├── EndpointAlexaRecordControllerHandler.cpp │ │ │ ├── EndpointAlexaRemoteVideoPlayerHandler.cpp │ │ │ ├── EndpointAlexaSeekControllerHandler.cpp │ │ │ ├── EndpointAlexaVideoRecorderHandler.cpp │ │ │ ├── EndpointCapabilitiesBuilder.cpp │ │ │ ├── EndpointFocusAdapter.cpp │ │ │ ├── EndpointInputControllerHandler.cpp │ │ │ └── InputControllerEndpointCapabilitiesBuilder.cpp │ ├── InteractionManager │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── Sample │ │ │ │ └── InteractionManager │ │ │ │ ├── InteractionManager.h │ │ │ │ ├── KeywordObserver.h │ │ │ │ └── UIManager.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── InteractionManager.cpp │ │ │ ├── KeywordObserver.cpp │ │ │ └── UIManager.cpp │ ├── LibSampleApp │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── SampleApp │ │ │ │ ├── CaptionPresenter.h │ │ │ │ ├── ConsoleReader.h │ │ │ │ ├── ExternalCapabilitiesBuilder.h │ │ │ │ ├── GuiRenderer.h │ │ │ │ ├── KeywordObserver.h │ │ │ │ ├── LocaleAssetsManager.h │ │ │ │ ├── RevokeAuthorizationObserver.h │ │ │ │ ├── SDKDiagnostics.h │ │ │ │ ├── SampleApplication.h │ │ │ │ ├── SampleApplicationComponent.h │ │ │ │ ├── SampleApplicationReturnCodes.h │ │ │ │ ├── SampleEqualizerModeController.h │ │ │ │ └── UserInputManager.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── CaptionPresenter.cpp │ │ │ ├── ConsoleReader.cpp │ │ │ ├── ExternalCapabilitiesBuilder.cpp │ │ │ ├── GuiRenderer.cpp │ │ │ ├── LocaleAssetsManager.cpp │ │ │ ├── RevokeAuthorizationObserver.cpp │ │ │ ├── SDKDiagnostics.cpp │ │ │ ├── SampleApplication.cpp │ │ │ ├── SampleApplicationComponent.cpp │ │ │ ├── SampleEqualizerModeController.cpp │ │ │ └── UserInputManager.cpp │ ├── PeripheralEndpoint │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── Sample │ │ │ │ └── PeripheralEndpoint │ │ │ │ ├── PeripheralEndpointModeControllerHandler.h │ │ │ │ ├── PeripheralEndpointPowerControllerHandler.h │ │ │ │ ├── PeripheralEndpointRangeControllerHandler.h │ │ │ │ └── PeripheralEndpointToggleControllerHandler.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── NullPeripheralEndpoint.cpp │ │ │ ├── PeripheralEndpointModeControllerHandler.cpp │ │ │ ├── PeripheralEndpointPowerControllerHandler.cpp │ │ │ ├── PeripheralEndpointRangeControllerHandler.cpp │ │ │ └── PeripheralEndpointToggleControllerHandler.cpp │ ├── PortAudioMicrophoneAdapter │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── Sample │ │ │ │ └── Microphone │ │ │ │ └── PortAudioMicrophoneAdapter.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── Sample │ │ │ │ └── Microphone │ │ │ │ └── PortAudioMicrophoneWrapper.h │ │ └── src │ │ │ ├── PortAudioMicrophoneAdapter.cpp │ │ │ └── PortAudioMicrophoneWrapper.cpp │ └── TemplateRuntimePresentationAdaptor │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdk │ │ │ └── Sample │ │ │ └── TemplateRuntime │ │ │ ├── TemplateRuntimePresentationAdapter.h │ │ │ └── TemplateRuntimePresentationAdapterObserverInterface.h │ │ └── src │ │ ├── CMakeLists.txt │ │ └── TemplateRuntimePresentationAdapter.cpp ├── ConsoleSampleApplication │ ├── CMakeLists.txt │ └── src │ │ ├── CMakeLists.txt │ │ └── main.cpp └── IPCServerSampleApplication │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Communication │ ├── CMakeLists.txt │ ├── include │ │ └── Communication │ │ │ ├── MessageListenerInterface.h │ │ │ ├── MessagingInterface.h │ │ │ ├── MessagingServerInterface.h │ │ │ ├── MessagingServerObserverInterface.h │ │ │ ├── WebSocketConfig.h │ │ │ ├── WebSocketSDKLogger.h │ │ │ └── WebSocketServer.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── WebSocketSDKLogger.cpp │ │ └── WebSocketServer.cpp │ ├── LibIPCServerSampleApp │ ├── CMakeLists.txt │ ├── include │ │ └── IPCServerSampleApp │ │ │ ├── AlexaPresentation │ │ │ ├── APLDocumentSession.h │ │ │ ├── APLDocumentSessionManager.h │ │ │ ├── APLDocumentSessionManagerInterface.h │ │ │ ├── APLPayloadParser.h │ │ │ ├── APLRuntimeInterfaceImpl.h │ │ │ ├── APLRuntimePresentationAdapter.h │ │ │ ├── APLViewhostInterface.h │ │ │ ├── APLViewhostObserverInterface.h │ │ │ ├── AplClientBridge.h │ │ │ └── IPCAPLAgent.h │ │ │ ├── CachingDownloadManager.h │ │ │ ├── ConfigValidator.h │ │ │ ├── ConnectionObserver.h │ │ │ ├── ConsolePrinter.h │ │ │ ├── DownloadMonitor.h │ │ │ ├── Extensions │ │ │ └── LiveView │ │ │ │ ├── AplLiveViewExtension.h │ │ │ │ └── AplLiveViewExtensionObserverInterface.h │ │ │ ├── ExternalCapabilitiesBuilder.h │ │ │ ├── GUI │ │ │ ├── CaptureState.h │ │ │ ├── GUIActivityEventNotifier.h │ │ │ ├── GUIActivityEventNotifierInterface.h │ │ │ ├── GUIClient.h │ │ │ ├── GUIClientInterface.h │ │ │ ├── GUIManager.h │ │ │ ├── GUIServerInterface.h │ │ │ ├── NavigationEvent.h │ │ │ └── TemplateRuntimePresentationAdapterBridge.h │ │ │ ├── GUILogBridge.h │ │ │ ├── IPC │ │ │ ├── Components │ │ │ │ ├── APLClientHandler.h │ │ │ │ ├── AlexaCaptionsHandler.h │ │ │ │ ├── AudioFocusManagerHandler.h │ │ │ │ ├── DoNotDisturbHandler.h │ │ │ │ ├── InteractionManagerHandler.h │ │ │ │ ├── LiveViewCameraHandler.h │ │ │ │ ├── LoggerHandler.h │ │ │ │ ├── SessionSetupHandler.h │ │ │ │ ├── SystemHandler.h │ │ │ │ ├── TemplateRuntimeHandler.h │ │ │ │ └── WindowManagerHandler.h │ │ │ ├── HandlerInterfaces │ │ │ │ ├── APLClientHandlerInterface.h │ │ │ │ ├── AudioFocusManagerHandlerInterface.h │ │ │ │ ├── DoNotDisturbHandlerInterface.h │ │ │ │ ├── InteractionManagerHandlerInterface.h │ │ │ │ ├── LiveViewCameraHandlerInterface.h │ │ │ │ ├── LoggerHandlerInterface.h │ │ │ │ ├── SessionSetupHandlerInterface.h │ │ │ │ ├── SystemHandlerInterface.h │ │ │ │ ├── TemplateRuntimeHandlerInterface.h │ │ │ │ └── WindowManagerHandlerInterface.h │ │ │ ├── IPCDispatcherInterface.h │ │ │ ├── IPCHandlerBase.h │ │ │ ├── IPCHandlerRegistrationInterface.h │ │ │ ├── IPCRouter.h │ │ │ ├── IPCVersionManager.h │ │ │ └── Namespaces │ │ │ │ ├── APLClientNamespace.h │ │ │ │ ├── AlexaCaptionsNamespace.h │ │ │ │ ├── AudioFocusManagerNamespace.h │ │ │ │ ├── CommunicationsNamespace.h │ │ │ │ ├── DoNotDisturbNamespace.h │ │ │ │ ├── InteractionManagerNamespace.h │ │ │ │ ├── LiveViewCameraNamespace.h │ │ │ │ ├── LoggerNamespace.h │ │ │ │ ├── SessionSetupNamespace.h │ │ │ │ ├── SystemNamespace.h │ │ │ │ ├── TemplateRuntimeNamespace.h │ │ │ │ └── WindowManagerNamespace.h │ │ │ ├── KeywordObserver.h │ │ │ ├── LiveViewController │ │ │ └── LiveViewControllerPresentationAdapter.h │ │ │ ├── LocaleAssetsManager.h │ │ │ ├── Messages │ │ │ ├── Message.h │ │ │ └── MessageInterface.h │ │ │ ├── PortAudioMicrophoneWrapper.h │ │ │ ├── RenderCaptionsInterface.h │ │ │ ├── RevokeAuthorizationObserver.h │ │ │ ├── SampleApplication.h │ │ │ ├── SampleApplicationComponent.h │ │ │ ├── SampleApplicationReturnCodes.h │ │ │ ├── SampleEqualizerModeController.h │ │ │ ├── SmartScreenCaptionPresenter.h │ │ │ ├── SmartScreenCaptionStateManager.h │ │ │ ├── TelemetrySink.h │ │ │ └── TimezoneHelper.h │ ├── src │ │ ├── AlexaPresentation │ │ │ ├── APLDocumentSession.cpp │ │ │ ├── APLDocumentSessionManager.cpp │ │ │ ├── APLPayloadParser.cpp │ │ │ ├── APLRuntimeInterfaceImpl.cpp │ │ │ ├── APLRuntimePresentationAdapter.cpp │ │ │ ├── AplClientBridge.cpp │ │ │ └── IPCAPLAgent.cpp │ │ ├── CMakeLists.txt │ │ ├── CachingDownloadManager.cpp │ │ ├── ConfigValidator.cpp │ │ ├── ConnectionObserver.cpp │ │ ├── ConsolePrinter.cpp │ │ ├── DownloadMonitor.cpp │ │ ├── Extensions │ │ │ └── LiveView │ │ │ │ └── AplLiveViewExtension.cpp │ │ ├── ExternalCapabilitiesBuilder.cpp │ │ ├── GUI │ │ │ ├── GUIActivityEventNotifier.cpp │ │ │ ├── GUIClient.cpp │ │ │ ├── GUIManager.cpp │ │ │ └── TemplateRuntimePresentationAdapterBridge.cpp │ │ ├── GUILogBridge.cpp │ │ ├── IPC │ │ │ ├── Components │ │ │ │ ├── APLClientHandler.cpp │ │ │ │ ├── AlexaCaptionsHandler.cpp │ │ │ │ ├── AudioFocusManagerHandler.cpp │ │ │ │ ├── DoNotDisturbHandler.cpp │ │ │ │ ├── InteractionManagerHandler.cpp │ │ │ │ ├── LiveViewCameraHandler.cpp │ │ │ │ ├── LoggerHandler.cpp │ │ │ │ ├── SessionSetupHandler.cpp │ │ │ │ ├── SystemHandler.cpp │ │ │ │ ├── TemplateRuntimeHandler.cpp │ │ │ │ └── WindowManagerHandler.cpp │ │ │ ├── IPCHandlerBase.cpp │ │ │ ├── IPCRouter.cpp │ │ │ └── IPCVersionManager.cpp │ │ ├── KeywordObserver.cpp │ │ ├── LiveViewController │ │ │ └── LiveViewControllerPresentationAdapter.cpp │ │ ├── LocaleAssetsManager.cpp │ │ ├── PortAudioMicrophoneWrapper.cpp │ │ ├── RevokeAuthorizationObserver.cpp │ │ ├── SampleApplication.cpp │ │ ├── SampleApplicationComponent.cpp │ │ ├── SampleEqualizerModeController.cpp │ │ ├── SmartScreenCaptionPresenter.cpp │ │ ├── SmartScreenCaptionStateManager.cpp │ │ ├── TelemetrySink.cpp │ │ └── TimezoneHelper.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── IPCVersionManagerTest.cpp │ │ ├── SmartScreenCaptionPresenterTest.cpp │ │ └── SmartScreenCaptionStateManagerTest.cpp │ ├── ThirdParty │ ├── .clang-format │ ├── googletest-release-1.8.0 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── googlemock │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── build-aux │ │ │ │ └── .keep │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── DesignDoc.md │ │ │ │ ├── DevGuide.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ │ ├── KnownIssues.md │ │ │ │ ├── v1_5 │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ ├── v1_6 │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ │ └── v1_7 │ │ │ │ │ ├── CheatSheet.md │ │ │ │ │ ├── CookBook.md │ │ │ │ │ ├── Documentation.md │ │ │ │ │ ├── ForDummies.md │ │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ ├── include │ │ │ │ └── gmock │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ ├── gmock.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ └── gmock-port.h │ │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ └── gmock-port.h │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ ├── msvc │ │ │ │ ├── 2005 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ ├── 2010 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ └── 2015 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ └── gmock_test.vcxproj │ │ │ ├── scripts │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ ├── generator │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── README.cppclean │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ └── gmock_gen.py │ │ │ │ ├── gmock-config.in │ │ │ │ ├── gmock_doctor.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_gmock.py │ │ │ ├── src │ │ │ │ ├── gmock-all.cc │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ ├── gmock-matchers.cc │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ ├── gmock.cc │ │ │ │ └── gmock_main.cc │ │ │ └── test │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ ├── gmock-port_test.cc │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ ├── gmock_all_test.cc │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ ├── gmock_leak_test.py │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ ├── gmock_link_test.cc │ │ │ │ ├── gmock_link_test.h │ │ │ │ ├── gmock_output_test.py │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ ├── gmock_test.cc │ │ │ │ └── gmock_test_utils.py │ │ ├── googletest │ │ │ ├── .gitignore │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── build-aux │ │ │ │ └── .keep │ │ │ ├── cmake │ │ │ │ └── internal_utils.cmake │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ ├── AdvancedGuide.md │ │ │ │ ├── DevGuide.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── Primer.md │ │ │ │ ├── PumpManual.md │ │ │ │ ├── Samples.md │ │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ │ ├── V1_5_Documentation.md │ │ │ │ ├── V1_5_FAQ.md │ │ │ │ ├── V1_5_Primer.md │ │ │ │ ├── V1_5_PumpManual.md │ │ │ │ ├── V1_5_XcodeGuide.md │ │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ │ ├── V1_6_Documentation.md │ │ │ │ ├── V1_6_FAQ.md │ │ │ │ ├── V1_6_Primer.md │ │ │ │ ├── V1_6_PumpManual.md │ │ │ │ ├── V1_6_Samples.md │ │ │ │ ├── V1_6_XcodeGuide.md │ │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ │ ├── V1_7_Documentation.md │ │ │ │ ├── V1_7_FAQ.md │ │ │ │ ├── V1_7_Primer.md │ │ │ │ ├── V1_7_PumpManual.md │ │ │ │ ├── V1_7_Samples.md │ │ │ │ ├── V1_7_XcodeGuide.md │ │ │ │ └── XcodeGuide.md │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ └── gtest.m4 │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ ├── msvc │ │ │ │ ├── gtest-md.sln │ │ │ │ ├── gtest-md.vcproj │ │ │ │ ├── gtest.sln │ │ │ │ ├── gtest.vcproj │ │ │ │ ├── gtest_main-md.vcproj │ │ │ │ ├── gtest_main.vcproj │ │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ │ ├── gtest_prod_test.vcproj │ │ │ │ ├── gtest_unittest-md.vcproj │ │ │ │ └── gtest_unittest.vcproj │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample1.h │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2.h │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3-inl.h │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4.h │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ ├── scripts │ │ │ │ ├── common.py │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ ├── release_docs.py │ │ │ │ ├── test │ │ │ │ │ └── Makefile │ │ │ │ ├── upload.py │ │ │ │ └── upload_gtest.py │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ ├── test │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ ├── gtest-message_test.cc │ │ │ │ ├── gtest-options_test.cc │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ ├── gtest-port_test.cc │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ ├── gtest_color_test.py │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_output_test.py │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── travis.sh │ └── googletest.cmake │ ├── config │ ├── IPCServerSampleAppConfig.json │ ├── certificates │ │ ├── ca_settings.cnf │ │ ├── cert_settings.cnf │ │ └── generate.sh │ ├── samples │ │ ├── SampleConfig_HubLargeLandscape.json │ │ ├── SampleConfig_HubOrientable.json │ │ ├── SampleConfig_HubRound.json │ │ ├── SampleConfig_ResizableDesktopApp.json │ │ ├── SampleConfig_TvFullscreen.json │ │ └── SampleConfig_TvFullscreenAndOverlay.json │ └── schema │ │ └── IPCServerSampleAppConfigSchema.json │ ├── src │ ├── CMakeLists.txt │ └── main.cpp │ └── tools │ ├── Testing.cmake │ └── Testing │ └── android_test.py ├── Settings ├── CMakeLists.txt ├── include │ └── Settings │ │ ├── CloudControlledSettingProtocol.h │ │ ├── DeviceControlledSettingProtocol.h │ │ ├── DeviceSettingsManager.h │ │ ├── SetSettingResult.h │ │ ├── Setting.h │ │ ├── SettingCallbackAdapter.h │ │ ├── SettingCallbacks.h │ │ ├── SettingConnectionObserver.h │ │ ├── SettingEventMetadata.h │ │ ├── SettingEventRequestObserver.h │ │ ├── SettingEventSender.h │ │ ├── SettingEventSenderInterface.h │ │ ├── SettingInterface.h │ │ ├── SettingObserverInterface.h │ │ ├── SettingProtocolInterface.h │ │ ├── SettingStatus.h │ │ ├── SettingStringConversion.h │ │ ├── SettingsManager.h │ │ ├── SettingsManagerBuilderBase.h │ │ ├── SharedAVSSettingProtocol.h │ │ ├── SpeechConfirmationSettingType.h │ │ ├── Storage │ │ ├── DeviceSettingStorageInterface.h │ │ └── SQLiteDeviceSettingStorage.h │ │ ├── Types │ │ ├── AlarmVolumeRampTypes.h │ │ ├── LocaleWakeWordsSetting.h │ │ └── NetworkInfo.h │ │ └── WakeWordConfirmationSettingType.h ├── src │ ├── CMakeLists.txt │ ├── CloudControlledSettingProtocol.cpp │ ├── DeviceControlledSettingProtocol.cpp │ ├── SettingConnectionObserver.cpp │ ├── SettingEventRequestObserver.cpp │ ├── SettingEventSender.cpp │ ├── SharedAVSSettingProtocol.cpp │ ├── Storage │ │ └── SQLiteDeviceSettingStorage.cpp │ └── Types │ │ ├── LocaleWakeWordsSetting.cpp │ │ └── NetworkInfo.cpp └── test │ ├── CMakeLists.txt │ ├── LocaleWakeWordsSettingTest.cpp │ ├── NetworkInfoTest.cpp │ ├── SQLiteDeviceSettingStorageTest.cpp │ ├── SettingCallbackAdapterTest.cpp │ ├── SettingCallbacksTest.cpp │ ├── SettingEventSenderTest.cpp │ ├── SettingStringConversionTest.cpp │ ├── SettingTest.cpp │ ├── Settings │ ├── MockDeviceSettingStorage.h │ ├── MockSetting.h │ ├── MockSettingEventSender.h │ ├── MockSettingObserver.h │ └── MockSettingProtocol.h │ ├── SettingsManagerTest.cpp │ └── SharedAVSSettingProtocolTest.cpp ├── Storage ├── CMakeLists.txt └── SQLiteStorage │ ├── CMakeLists.txt │ ├── include │ └── SQLiteStorage │ │ ├── SQLiteDatabase.h │ │ ├── SQLiteMiscStorage.h │ │ ├── SQLiteStatement.h │ │ └── SQLiteUtils.h │ ├── src │ ├── CMakeLists.txt │ ├── SQLiteDatabase.cpp │ ├── SQLiteMiscStorage.cpp │ ├── SQLiteStatement.cpp │ └── SQLiteUtils.cpp │ └── test │ ├── CMakeLists.txt │ ├── SQLiteDatabaseTest.cpp │ └── SQLiteMiscStorageTest.cpp ├── SynchronizeStateSender ├── CMakeLists.txt ├── include │ └── SynchronizeStateSender │ │ ├── PostConnectSynchronizeStateSender.h │ │ └── SynchronizeStateSenderFactory.h ├── src │ ├── CMakeLists.txt │ ├── PostConnectSynchronizeStateSender.cpp │ └── SynchronizeStateSenderFactory.cpp └── test │ ├── CMakeLists.txt │ └── PostConnectSynchronizeStateSenderTest.cpp ├── ThirdParty ├── .clang-format ├── CMakeLists.txt ├── MultipartParser │ ├── CMakeLists.txt │ └── MultipartParser │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MultipartParser.h │ │ ├── MultipartReader.h │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── formidable_parser.js │ │ ├── input.txt │ │ ├── multipart.cpp │ │ └── rack-parser.rb ├── bluez-alsa │ ├── CMakeLists.txt │ └── bluez-alsa │ │ ├── LICENSE.txt │ │ └── a2dp-rtp.h ├── googletest-release-1.8.0 │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── README.md │ ├── appveyor.yml │ ├── googlemock │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── CheatSheet.md │ │ │ ├── CookBook.md │ │ │ ├── DesignDoc.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── ForDummies.md │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ ├── KnownIssues.md │ │ │ ├── v1_5 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ ├── v1_6 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ │ └── v1_7 │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ └── FrequentlyAskedQuestions.md │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ └── gmock-port.h │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ └── gmock-port.h │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── 2005 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcproj │ │ │ │ ├── gmock_config.vsprops │ │ │ │ ├── gmock_main.vcproj │ │ │ │ └── gmock_test.vcproj │ │ │ ├── 2010 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ │ └── 2015 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ ├── scripts │ │ │ ├── fuse_gmock_files.py │ │ │ ├── generator │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.cppclean │ │ │ │ ├── cpp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── tokenize.py │ │ │ │ │ └── utils.py │ │ │ │ └── gmock_gen.py │ │ │ ├── gmock-config.in │ │ │ ├── gmock_doctor.py │ │ │ ├── upload.py │ │ │ └── upload_gmock.py │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-generated-actions_test.cc │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers_test.cc │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ ├── googletest │ │ ├── .gitignore │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build-aux │ │ │ └── .keep │ │ ├── cmake │ │ │ └── internal_utils.cmake │ │ ├── codegear │ │ │ ├── gtest.cbproj │ │ │ ├── gtest.groupproj │ │ │ ├── gtest_all.cc │ │ │ ├── gtest_link.cc │ │ │ ├── gtest_main.cbproj │ │ │ └── gtest_unittest.cbproj │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── AdvancedGuide.md │ │ │ ├── DevGuide.md │ │ │ ├── Documentation.md │ │ │ ├── FAQ.md │ │ │ ├── Primer.md │ │ │ ├── PumpManual.md │ │ │ ├── Samples.md │ │ │ ├── V1_5_AdvancedGuide.md │ │ │ ├── V1_5_Documentation.md │ │ │ ├── V1_5_FAQ.md │ │ │ ├── V1_5_Primer.md │ │ │ ├── V1_5_PumpManual.md │ │ │ ├── V1_5_XcodeGuide.md │ │ │ ├── V1_6_AdvancedGuide.md │ │ │ ├── V1_6_Documentation.md │ │ │ ├── V1_6_FAQ.md │ │ │ ├── V1_6_Primer.md │ │ │ ├── V1_6_PumpManual.md │ │ │ ├── V1_6_Samples.md │ │ │ ├── V1_6_XcodeGuide.md │ │ │ ├── V1_7_AdvancedGuide.md │ │ │ ├── V1_7_Documentation.md │ │ │ ├── V1_7_FAQ.md │ │ │ ├── V1_7_Primer.md │ │ │ ├── V1_7_PumpManual.md │ │ │ ├── V1_7_Samples.md │ │ │ ├── V1_7_XcodeGuide.md │ │ │ └── XcodeGuide.md │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ ├── m4 │ │ │ ├── acx_pthread.m4 │ │ │ └── gtest.m4 │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── gtest-md.sln │ │ │ ├── gtest-md.vcproj │ │ │ ├── gtest.sln │ │ │ ├── gtest.vcproj │ │ │ ├── gtest_main-md.vcproj │ │ │ ├── gtest_main.vcproj │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ ├── gtest_prod_test.vcproj │ │ │ ├── gtest_unittest-md.vcproj │ │ │ └── gtest_unittest.vcproj │ │ ├── samples │ │ │ ├── prime_tables.h │ │ │ ├── sample1.cc │ │ │ ├── sample1.h │ │ │ ├── sample10_unittest.cc │ │ │ ├── sample1_unittest.cc │ │ │ ├── sample2.cc │ │ │ ├── sample2.h │ │ │ ├── sample2_unittest.cc │ │ │ ├── sample3-inl.h │ │ │ ├── sample3_unittest.cc │ │ │ ├── sample4.cc │ │ │ ├── sample4.h │ │ │ ├── sample4_unittest.cc │ │ │ ├── sample5_unittest.cc │ │ │ ├── sample6_unittest.cc │ │ │ ├── sample7_unittest.cc │ │ │ ├── sample8_unittest.cc │ │ │ └── sample9_unittest.cc │ │ ├── scripts │ │ │ ├── common.py │ │ │ ├── fuse_gtest_files.py │ │ │ ├── gen_gtest_pred_impl.py │ │ │ ├── gtest-config.in │ │ │ ├── pump.py │ │ │ ├── release_docs.py │ │ │ ├── test │ │ │ │ └── Makefile │ │ │ ├── upload.py │ │ │ └── upload_gtest.py │ │ ├── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ │ ├── test │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ ├── gtest-death-test_test.cc │ │ │ ├── gtest-filepath_test.cc │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ ├── gtest-listener_test.cc │ │ │ ├── gtest-message_test.cc │ │ │ ├── gtest-options_test.cc │ │ │ ├── gtest-param-test2_test.cc │ │ │ ├── gtest-param-test_test.cc │ │ │ ├── gtest-param-test_test.h │ │ │ ├── gtest-port_test.cc │ │ │ ├── gtest-printers_test.cc │ │ │ ├── gtest-test-part_test.cc │ │ │ ├── gtest-tuple_test.cc │ │ │ ├── gtest-typed-test2_test.cc │ │ │ ├── gtest-typed-test_test.cc │ │ │ ├── gtest-typed-test_test.h │ │ │ ├── gtest-unittest-api_test.cc │ │ │ ├── gtest_all_test.cc │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ ├── gtest_color_test.py │ │ │ ├── gtest_color_test_.cc │ │ │ ├── gtest_env_var_test.py │ │ │ ├── gtest_env_var_test_.cc │ │ │ ├── gtest_environment_test.cc │ │ │ ├── gtest_filter_unittest.py │ │ │ ├── gtest_filter_unittest_.cc │ │ │ ├── gtest_help_test.py │ │ │ ├── gtest_help_test_.cc │ │ │ ├── gtest_list_tests_unittest.py │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ ├── gtest_main_unittest.cc │ │ │ ├── gtest_no_test_unittest.cc │ │ │ ├── gtest_output_test.py │ │ │ ├── gtest_output_test_.cc │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ ├── gtest_premature_exit_test.cc │ │ │ ├── gtest_prod_test.cc │ │ │ ├── gtest_repeat_test.cc │ │ │ ├── gtest_shuffle_test.py │ │ │ ├── gtest_shuffle_test_.cc │ │ │ ├── gtest_sole_header_test.cc │ │ │ ├── gtest_stress_test.cc │ │ │ ├── gtest_test_utils.py │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ ├── gtest_uninitialized_test.py │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ ├── gtest_unittest.cc │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ ├── gtest_xml_output_unittest.py │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ ├── gtest_xml_test_utils.py │ │ │ ├── production.cc │ │ │ └── production.h │ │ └── xcode │ │ │ ├── Config │ │ │ ├── DebugProject.xcconfig │ │ │ ├── FrameworkTarget.xcconfig │ │ │ ├── General.xcconfig │ │ │ ├── ReleaseProject.xcconfig │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ └── TestTarget.xcconfig │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ ├── Samples │ │ │ └── FrameworkSample │ │ │ │ ├── Info.plist │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ │ ├── runtests.sh │ │ │ │ ├── widget.cc │ │ │ │ ├── widget.h │ │ │ │ └── widget_test.cc │ │ │ ├── Scripts │ │ │ ├── runtests.sh │ │ │ └── versiongenerate.py │ │ │ └── gtest.xcodeproj │ │ │ └── project.pbxproj │ └── travis.sh ├── googletest.cmake ├── pkcs11-2.40 │ ├── CMakeLists.txt │ ├── NOTICE.txt │ └── include │ │ ├── pkcs11.h │ │ ├── pkcs11f.h │ │ └── pkcs11t.h └── rapidjson │ ├── CMakeLists.txt │ └── rapidjson-1.1.0 │ ├── .gitattributes │ ├── .gitmodules │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── CMakeModules │ └── FindGTestSrc.cmake │ ├── RapidJSON.pc.in │ ├── RapidJSONConfig.cmake.in │ ├── RapidJSONConfigVersion.cmake.in │ ├── appveyor.yml │ ├── bin │ ├── data │ │ ├── glossary.json │ │ ├── menu.json │ │ ├── readme.txt │ │ ├── sample.json │ │ ├── webapp.json │ │ └── widget.json │ ├── encodings │ │ ├── utf16be.json │ │ ├── utf16bebom.json │ │ ├── utf16le.json │ │ ├── utf16lebom.json │ │ ├── utf32be.json │ │ ├── utf32bebom.json │ │ ├── utf32le.json │ │ ├── utf32lebom.json │ │ ├── utf8.json │ │ └── utf8bom.json │ ├── jsonchecker │ │ ├── fail1.json │ │ ├── fail10.json │ │ ├── fail11.json │ │ ├── fail12.json │ │ ├── fail13.json │ │ ├── fail14.json │ │ ├── fail15.json │ │ ├── fail16.json │ │ ├── fail17.json │ │ ├── fail18.json │ │ ├── fail19.json │ │ ├── fail2.json │ │ ├── fail20.json │ │ ├── fail21.json │ │ ├── fail22.json │ │ ├── fail23.json │ │ ├── fail24.json │ │ ├── fail25.json │ │ ├── fail26.json │ │ ├── fail27.json │ │ ├── fail28.json │ │ ├── fail29.json │ │ ├── fail3.json │ │ ├── fail30.json │ │ ├── fail31.json │ │ ├── fail32.json │ │ ├── fail33.json │ │ ├── fail4.json │ │ ├── fail5.json │ │ ├── fail6.json │ │ ├── fail7.json │ │ ├── fail8.json │ │ ├── fail9.json │ │ ├── pass1.json │ │ ├── pass2.json │ │ ├── pass3.json │ │ └── readme.txt │ └── types │ │ ├── booleans.json │ │ ├── floats.json │ │ ├── guids.json │ │ ├── integers.json │ │ ├── mixed.json │ │ ├── nulls.json │ │ ├── paragraphs.json │ │ └── readme.txt │ ├── doc │ ├── CMakeLists.txt │ ├── Doxyfile.in │ ├── Doxyfile.zh-cn.in │ ├── diagram │ │ ├── architecture.dot │ │ ├── architecture.png │ │ ├── insituparsing.dot │ │ ├── insituparsing.png │ │ ├── iterative-parser-states-diagram.dot │ │ ├── iterative-parser-states-diagram.png │ │ ├── move1.dot │ │ ├── move1.png │ │ ├── move2.dot │ │ ├── move2.png │ │ ├── move3.dot │ │ ├── move3.png │ │ ├── normalparsing.dot │ │ ├── normalparsing.png │ │ ├── simpledom.dot │ │ ├── simpledom.png │ │ ├── tutorial.dot │ │ ├── tutorial.png │ │ ├── utilityclass.dot │ │ └── utilityclass.png │ ├── dom.md │ ├── dom.zh-cn.md │ ├── encoding.md │ ├── encoding.zh-cn.md │ ├── faq.md │ ├── faq.zh-cn.md │ ├── features.md │ ├── features.zh-cn.md │ ├── internals.md │ ├── logo │ │ ├── rapidjson.png │ │ └── rapidjson.svg │ ├── misc │ │ ├── DoxygenLayout.xml │ │ ├── doxygenextra.css │ │ ├── footer.html │ │ └── header.html │ ├── npm.md │ ├── performance.md │ ├── performance.zh-cn.md │ ├── pointer.md │ ├── pointer.zh-cn.md │ ├── sax.md │ ├── sax.zh-cn.md │ ├── schema.md │ ├── schema.zh-cn.md │ ├── stream.md │ ├── stream.zh-cn.md │ ├── tutorial.md │ └── tutorial.zh-cn.md │ ├── docker │ └── debian │ │ └── Dockerfile │ ├── example │ ├── CMakeLists.txt │ ├── capitalize │ │ └── capitalize.cpp │ ├── condense │ │ └── condense.cpp │ ├── filterkey │ │ └── filterkey.cpp │ ├── filterkeydom │ │ └── filterkeydom.cpp │ ├── jsonx │ │ └── jsonx.cpp │ ├── messagereader │ │ └── messagereader.cpp │ ├── parsebyparts │ │ └── parsebyparts.cpp │ ├── pretty │ │ └── pretty.cpp │ ├── prettyauto │ │ └── prettyauto.cpp │ ├── schemavalidator │ │ └── schemavalidator.cpp │ ├── serialize │ │ └── serialize.cpp │ ├── simpledom │ │ └── simpledom.cpp │ ├── simplereader │ │ └── simplereader.cpp │ ├── simplewriter │ │ └── simplewriter.cpp │ └── tutorial │ │ └── tutorial.cpp │ ├── include │ └── rapidjson │ │ ├── allocators.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h │ ├── include_dirs.js │ ├── library.json │ ├── license.txt │ ├── package.json │ ├── rapidjson.autopkg │ ├── readme.md │ ├── readme.zh-cn.md │ ├── test │ ├── CMakeLists.txt │ ├── perftest │ │ ├── CMakeLists.txt │ │ ├── misctest.cpp │ │ ├── perftest.cpp │ │ ├── perftest.h │ │ ├── platformtest.cpp │ │ ├── rapidjsontest.cpp │ │ └── schematest.cpp │ └── unittest │ │ ├── CMakeLists.txt │ │ ├── allocatorstest.cpp │ │ ├── bigintegertest.cpp │ │ ├── documenttest.cpp │ │ ├── dtoatest.cpp │ │ ├── encodedstreamtest.cpp │ │ ├── encodingstest.cpp │ │ ├── filestreamtest.cpp │ │ ├── fwdtest.cpp │ │ ├── istreamwrappertest.cpp │ │ ├── itoatest.cpp │ │ ├── jsoncheckertest.cpp │ │ ├── namespacetest.cpp │ │ ├── ostreamwrappertest.cpp │ │ ├── pointertest.cpp │ │ ├── prettywritertest.cpp │ │ ├── readertest.cpp │ │ ├── regextest.cpp │ │ ├── schematest.cpp │ │ ├── simdtest.cpp │ │ ├── strfunctest.cpp │ │ ├── stringbuffertest.cpp │ │ ├── strtodtest.cpp │ │ ├── unittest.cpp │ │ ├── unittest.h │ │ ├── valuetest.cpp │ │ └── writertest.cpp │ └── travis-doxygen.sh ├── applications ├── CMakeLists.txt ├── FeatureClients │ ├── AlexaPresentationFeatureClient │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaPresentationFeatureClient │ │ │ │ ├── AlexaPresentationFeatureClient.h │ │ │ │ └── AlexaPresentationFeatureClientBuilder.h │ │ └── src │ │ │ ├── AlexaPresentationFeatureClient.cpp │ │ │ ├── AlexaPresentationFeatureClientBuilder.cpp │ │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ ├── LiveViewControllerFeatureClient │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── LiveViewControllerFeatureClient │ │ │ │ ├── LiveViewControllerFeatureClient.h │ │ │ │ └── LiveViewControllerFeatureClientBuilder.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── LiveViewControllerFeatureClient.cpp │ │ │ └── LiveViewControllerFeatureClientBuilder.cpp │ ├── PresentationOrchestratorFeatureClient │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── PresentationOrchestratorFeatureClient │ │ │ │ ├── PresentationOrchestratorFeatureClient.h │ │ │ │ └── PresentationOrchestratorFeatureClientBuilder.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── PresentationOrchestratorFeatureClient.cpp │ │ │ └── PresentationOrchestratorFeatureClientBuilder.cpp │ ├── VisualCharacteristicsFeatureClient │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── VisualCharacteristicsFeatureClient │ │ │ │ ├── VisualCharacteristicsFeatureClient.h │ │ │ │ └── VisualCharacteristicsFeatureClientBuilder.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── VisualCharacteristicsFeatureClient.cpp │ │ │ └── VisualCharacteristicsFeatureClientBuilder.cpp │ └── VisualStateTrackerFeatureClient │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdk │ │ │ └── VisualStateTrackerFeatureClient │ │ │ ├── VisualStateTrackerFeatureClient.h │ │ │ └── VisualStateTrackerFeatureClientBuilder.h │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── VisualStateTrackerFeatureClient.cpp │ │ └── VisualStateTrackerFeatureClientBuilder.cpp ├── acsdkAndroidApplicationAudioPipelineFactory │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkApplicationAudioPipelineFactory │ │ │ ├── AndroidApplicationAudioPipelineFactory.h │ │ │ └── ApplicationAudioPipelineFactoryComponent.h │ └── src │ │ ├── AndroidApplicationAudioPipelineFactory.cpp │ │ ├── ApplicationAudioPipelineFactoryComponent.cpp │ │ └── CMakeLists.txt ├── acsdkApplicationAudioPipelineFactoryInterfaces │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkApplicationAudioPipelineFactoryInterfaces │ │ │ ├── ApplicationAudioPipelineFactoryInterface.h │ │ │ └── PooledApplicationMediaInterfaces.h │ └── test │ │ ├── CMakeLists.txt │ │ └── acsdkApplicationAudioPipelineFactoryInterfaces │ │ └── MockApplicationAudioPipelineFactory.h ├── acsdkAudioInputStream │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkAudioInputStream │ │ │ ├── AudioInputStreamComponent.h │ │ │ ├── AudioInputStreamFactory.h │ │ │ └── CompatibleAudioFormat.h │ └── src │ │ ├── AudioInputStreamComponent.cpp │ │ ├── AudioInputStreamFactory.cpp │ │ ├── CMakeLists.txt │ │ └── CompatibleAudioFormat.cpp ├── acsdkBlueZBluetoothImplementation │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkBluetoothImplementation │ │ │ └── BluetoothImplementationComponent.h │ └── src │ │ ├── BluetoothImplementationComponent.cpp │ │ └── CMakeLists.txt ├── acsdkCustomApplicationAudioPipelineFactory │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkApplicationAudioPipelineFactory │ │ │ ├── ApplicationAudioPipelineFactoryComponent.h │ │ │ └── CustomApplicationAudioPipelineFactory.h │ └── src │ │ ├── ApplicationAudioPipelineFactoryComponent.cpp │ │ ├── CMakeLists.txt │ │ └── CustomApplicationAudioPipelineFactory.cpp ├── acsdkDefaultDeviceSettingsManager │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkDeviceSettingsManager │ │ │ ├── DeviceSettingsManagerBuilder.h │ │ │ └── DeviceSettingsManagerComponent.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── DeviceSettingsManagerBuilder.cpp │ │ └── DeviceSettingsManagerComponent.cpp ├── acsdkDefaultInternetConnectionMonitor │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkInternetConnectionMonitor │ │ │ └── InternetConnectionMonitorComponent.h │ └── src │ │ ├── CMakeLists.txt │ │ └── InternetConnectionMonitorComponent.cpp ├── acsdkDefaultSampleApplicationOptions │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkDefaultSampleApplicationOptions │ │ │ ├── DefaultSampleApplicationOptionsComponent.h │ │ │ └── NullMetricRecorder.h │ └── src │ │ ├── CMakeLists.txt │ │ └── DefaultSampleApplicationOptionsComponent.cpp ├── acsdkGstreamerApplicationAudioPipelineFactory │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkApplicationAudioPipelineFactory │ │ │ ├── ApplicationAudioPipelineFactoryComponent.h │ │ │ └── GstreamerApplicationAudioPipelineFactory.h │ └── src │ │ ├── ApplicationAudioPipelineFactoryComponent.cpp │ │ ├── CMakeLists.txt │ │ └── GstreamerApplicationAudioPipelineFactory.cpp ├── acsdkLibcurlAlexaCommunications │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkAlexaCommunications │ │ │ └── AlexaCommunicationsComponent.h │ └── src │ │ ├── AlexaCommunicationsComponent.cpp │ │ └── CMakeLists.txt ├── acsdkLibcurlHTTPContentFetcher │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkHTTPContentFetcher │ │ │ └── HTTPContentFetcherComponent.h │ └── src │ │ ├── CMakeLists.txt │ │ └── HTTPContentFetcherComponent.cpp ├── acsdkNullBluetoothImplementation │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkBluetoothImplementation │ │ │ └── BluetoothImplementationComponent.h │ └── src │ │ ├── BluetoothImplementationComponent.cpp │ │ └── CMakeLists.txt ├── acsdkNullMetricRecorder │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkMetricRecorder │ │ │ └── MetricRecorderComponent.h │ └── src │ │ ├── CMakeLists.txt │ │ └── MetricRecorderComponent.cpp ├── acsdkNullSpeechEncoder │ ├── CMakeLists.txt │ └── src │ │ ├── CMakeLists.txt │ │ └── SpeechEncoderComponent.cpp ├── acsdkNullSystemTimeZone │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkSystemTimeZone │ │ │ └── SystemTimeZoneComponent.h │ └── src │ │ ├── CMakeLists.txt │ │ └── SystemTimeZoneComponent.cpp ├── acsdkOpusSpeechEncoder │ ├── CMakeLists.txt │ └── src │ │ ├── CMakeLists.txt │ │ └── SpeechEncoderComponent.cpp ├── acsdkSampleApplicationCBLAuthRequester │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkSampleApplicationCBLAuthRequester │ │ │ └── SampleApplicationCBLAuthRequester.h │ └── src │ │ ├── CMakeLists.txt │ │ └── SampleApplicationCBLAuthRequester.cpp ├── acsdkSampleApplicationInterfaces │ ├── CMakeLists.txt │ └── include │ │ └── acsdkSampleApplicationInterfaces │ │ ├── UIAuthNotifierInterface.h │ │ ├── UIManagerInterface.h │ │ └── UIStateAggregatorInterface.h └── acsdkSampleMetricRecorder │ ├── CMakeLists.txt │ ├── include │ └── acsdkMetricRecorder │ │ └── MetricRecorderComponent.h │ └── src │ ├── CMakeLists.txt │ └── MetricRecorderComponent.cpp ├── capabilities ├── APLCapabilityCommon │ ├── .clang-format │ ├── APLCapabilityCommon │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── APLCapabilityCommon │ │ │ │ ├── APLPayloadParser.h │ │ │ │ └── BaseAPLCapabilityAgent.h │ │ ├── src │ │ │ ├── APLPayloadParser.cpp │ │ │ ├── BaseAPLCapabilityAgent.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── BaseAPLCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ ├── APLCapabilityCommonInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── APLCapabilityCommonInterfaces │ │ │ │ ├── APLCapabilityAgentInterface.h │ │ │ │ ├── APLCapabilityAgentNotifierInterface.h │ │ │ │ ├── APLCapabilityAgentObserverInterface.h │ │ │ │ ├── APLCommandExecutionEvent.h │ │ │ │ ├── APLDocumentObserverInterface.h │ │ │ │ ├── APLDocumentSessionInterface.h │ │ │ │ ├── APLEventPayload.h │ │ │ │ ├── APLRuntimeInterface.h │ │ │ │ ├── APLTimeoutType.h │ │ │ │ ├── APLVideoConfiguration.h │ │ │ │ ├── PresentationOptions.h │ │ │ │ ├── PresentationSession.h │ │ │ │ ├── PresentationToken.h │ │ │ │ └── VisualStateProviderInterface.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── include │ │ │ └── acsdk │ │ │ └── APLCapabilityCommonInterfaces │ │ │ ├── MockAPLCapabilityAgent.h │ │ │ ├── MockAPLCapabilityAgentObserver.h │ │ │ ├── MockAPLDocumentObserver.h │ │ │ ├── MockAPLDocumentSession.h │ │ │ ├── MockAPLRuntime.h │ │ │ └── MockVisualStateProvider.h │ └── CMakeLists.txt ├── Alerts │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAlerts │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAlerts │ │ │ │ ├── Alarm.h │ │ │ │ ├── Alert.h │ │ │ │ ├── AlertScheduler.h │ │ │ │ ├── AlertsCapabilityAgent.h │ │ │ │ ├── AlertsComponent.h │ │ │ │ ├── Reminder.h │ │ │ │ ├── Renderer │ │ │ │ ├── Renderer.h │ │ │ │ ├── RendererInterface.h │ │ │ │ └── RendererObserverInterface.h │ │ │ │ ├── Storage │ │ │ │ ├── AlertStorageInterface.h │ │ │ │ └── SQLiteAlertStorage.h │ │ │ │ └── Timer.h │ │ ├── src │ │ │ ├── Alarm.cpp │ │ │ ├── Alert.cpp │ │ │ ├── AlertScheduler.cpp │ │ │ ├── AlertsCapabilityAgent.cpp │ │ │ ├── AlertsComponent.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Reminder.cpp │ │ │ ├── Renderer │ │ │ │ └── Renderer.cpp │ │ │ ├── Storage │ │ │ │ └── SQLiteAlertStorage.cpp │ │ │ └── Timer.cpp │ │ └── test │ │ │ ├── AlarmAlertTest.cpp │ │ │ ├── AlertSchedulerTest.cpp │ │ │ ├── AlertTest.cpp │ │ │ ├── AlertsCapabilityAgentTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ReminderAlertTest.cpp │ │ │ ├── Renderer │ │ │ └── RendererTest.cpp │ │ │ ├── SQLiteAlertStorageTest.cpp │ │ │ └── TimerAlertTest.cpp │ └── acsdkAlertsInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkAlertsInterfaces │ │ ├── AlertObserverInterface.h │ │ └── AlertsCapabilityAgentInterface.h ├── AlexaChannelController │ ├── .clang-format │ ├── AlexaChannelController │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaChannelController │ │ │ │ └── AlexaChannelControllerFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── AlexaChannelController │ │ │ │ └── private │ │ │ │ └── AlexaChannelControllerCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaChannelControllerCapabilityAgent.cpp │ │ │ ├── AlexaChannelControllerFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaChannelControllerCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ ├── AlexaChannelControllerInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── acsdk │ │ │ └── AlexaChannelControllerInterfaces │ │ │ ├── ChannelControllerInterface.h │ │ │ ├── ChannelControllerObserverInterface.h │ │ │ └── ChannelType.h │ └── CMakeLists.txt ├── AlexaKeypadController │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAlexaKeypadController │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAlexaKeypadController │ │ │ │ └── AlexaKeypadControllerFactory.h │ │ ├── privateInclude │ │ │ └── acsdkAlexaKeypadController │ │ │ │ └── AlexaKeypadControllerCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaKeypadControllerCapabilityAgent.cpp │ │ │ ├── AlexaKeypadControllerFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaKeypadControllerCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ └── acsdkAlexaKeypadControllerInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkAlexaKeypadControllerInterfaces │ │ │ ├── AlexaKeypadControllerInterface.h │ │ │ └── Keystroke.h │ │ └── src │ │ ├── CMakeLists.txt │ │ └── Keystroke.cpp ├── AlexaLauncher │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAlexaLauncher │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAlexaLauncher │ │ │ │ └── AlexaLauncherFactory.h │ │ ├── privateInclude │ │ │ └── acsdkAlexaLauncher │ │ │ │ └── AlexaLauncherCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaLauncherCapabilityAgent.cpp │ │ │ ├── AlexaLauncherFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaLauncherCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ └── acsdkAlexaLauncherInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkAlexaLauncherInterfaces │ │ ├── AlexaLauncherInterface.h │ │ ├── AlexaLauncherObserverInterface.h │ │ └── AlexaLauncherTargetState.h ├── AlexaPlaybackController │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAlexaPlaybackController │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAlexaPlaybackController │ │ │ │ └── AlexaPlaybackControllerFactory.h │ │ ├── privateInclude │ │ │ └── acsdkAlexaPlaybackController │ │ │ │ └── AlexaPlaybackControllerCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaPlaybackControllerCapabilityAgent.cpp │ │ │ ├── AlexaPlaybackControllerFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaPlaybackControllerCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ └── acsdkAlexaPlaybackControllerInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkAlexaPlaybackControllerInterfaces │ │ │ ├── AlexaPlaybackControllerInterface.h │ │ │ ├── AlexaPlaybackControllerObserverInterface.h │ │ │ ├── PlaybackOperation.h │ │ │ └── PlaybackState.h │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── PlaybackOperation.cpp │ │ └── PlaybackState.cpp ├── AlexaPresentation │ ├── .clang-format │ ├── AlexaPresentation │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaPresentation │ │ │ │ └── AlexaPresentationFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── AlexaPresentation │ │ │ │ └── private │ │ │ │ └── AlexaPresentation.h │ │ ├── src │ │ │ ├── AlexaPresentation.cpp │ │ │ ├── AlexaPresentationFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaPresentationTest.cpp │ │ │ └── CMakeLists.txt │ ├── AlexaPresentationInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ ├── acsdk │ │ │ │ └── AlexaPresentationInterfaces │ │ │ │ │ └── AlexaPresentationCapabilityAgentInterface.h │ │ │ └── acsdkAlexaPresentationInterfaces │ │ │ │ ├── APLDocumentObserverInterface.h │ │ │ │ ├── APLDocumentSessionInterface.h │ │ │ │ ├── APLRuntimeInterface.h │ │ │ │ ├── PresentationOptions.h │ │ │ │ └── PresentationSession.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── include │ │ │ └── acsdk │ │ │ └── AlexaPresentationInterfaces │ │ │ └── MockAlexaPresentationCapabilityAgent.h │ └── CMakeLists.txt ├── AlexaPresentationAPL │ ├── .clang-format │ ├── AlexaPresentationAPL │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaPresentationAPL │ │ │ │ └── AlexaPresentationAPLFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── AlexaPresentationAPL │ │ │ │ └── private │ │ │ │ ├── AlexaPresentationAPL.h │ │ │ │ └── AlexaPresentationAPLVideoConfigParser.h │ │ ├── src │ │ │ ├── AlexaPresentationAPL.cpp │ │ │ ├── AlexaPresentationAPLFactory.cpp │ │ │ ├── AlexaPresentationAPLVideoConfigParser.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaPresentationAPLVideoConfigParserTest.cpp │ │ │ └── CMakeLists.txt │ └── CMakeLists.txt ├── AlexaRecordController │ ├── .clang-format │ ├── AlexaRecordController │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaRecordController │ │ │ │ └── AlexaRecordControllerFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── AlexaRecordController │ │ │ │ └── private │ │ │ │ └── AlexaRecordControllerCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaRecordControllerCapabilityAgent.cpp │ │ │ ├── AlexaRecordControllerFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaRecordControllerCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ ├── AlexaRecordControllerInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── acsdk │ │ │ └── AlexaRecordControllerInterfaces │ │ │ └── RecordControllerInterface.h │ └── CMakeLists.txt ├── AlexaRemoteVideoPlayer │ ├── .clang-format │ ├── AlexaRemoteVideoPlayer │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaRemoteVideoPlayer │ │ │ │ └── AlexaRemoteVideoPlayerFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── AlexaRemoteVideoPlayer │ │ │ │ └── private │ │ │ │ └── AlexaRemoteVideoPlayerCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaRemoteVideoPlayerCapabilityAgent.cpp │ │ │ ├── AlexaRemoteVideoPlayerFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaRemoteVideoPlayerCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ ├── AlexaRemoteVideoPlayerInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── acsdk │ │ │ └── AlexaRemoteVideoPlayerInterfaces │ │ │ ├── RemoteVideoPlayerConfiguration.h │ │ │ ├── RemoteVideoPlayerInterface.h │ │ │ └── RemoteVideoPlayerTypes.h │ └── CMakeLists.txt ├── AlexaSeekController │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAlexaSeekController │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAlexaSeekController │ │ │ │ └── AlexaSeekControllerFactory.h │ │ ├── privateInclude │ │ │ └── acsdkAlexaSeekController │ │ │ │ └── AlexaSeekControllerCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaSeekControllerCapabilityAgent.cpp │ │ │ ├── AlexaSeekControllerFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaSeekControllerCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ └── acsdkAlexaSeekControllerInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkAlexaSeekControllerInterfaces │ │ └── AlexaSeekControllerInterface.h ├── AlexaVideoCommon │ ├── .clang-format │ ├── CMakeLists.txt │ └── VideoContent │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdk │ │ │ └── VideoContent │ │ │ └── VideoEntityTypes.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ └── VideoEntityTypes.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ └── VideoEntityTypesTest.cpp ├── AlexaVideoRecorder │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAlexaVideoRecorder │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAlexaVideoRecorder │ │ │ │ └── AlexaVideoRecorderFactory.h │ │ ├── privateInclude │ │ │ └── acsdkAlexaVideoRecorder │ │ │ │ └── AlexaVideoRecorderCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaVideoRecorderCapabilityAgent.cpp │ │ │ ├── AlexaVideoRecorderFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaVideoRecorderCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ └── acsdkAlexaVideoRecorderInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkAlexaVideoRecorderInterfaces │ │ ├── VideoRecorderInterface.h │ │ └── VideoRecorderTypes.h ├── AssetManager │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAssetManager │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAssetManager │ │ │ │ ├── AssetManager.h │ │ │ │ └── UrlAllowListWrapper.h │ │ ├── src │ │ │ ├── AssetManager.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DavsRequester.cpp │ │ │ ├── DavsRequester.h │ │ │ ├── RequestFactory.cpp │ │ │ ├── RequestFactory.h │ │ │ ├── Requester.cpp │ │ │ ├── Requester.h │ │ │ ├── RequesterFactory.cpp │ │ │ ├── RequesterFactory.h │ │ │ ├── RequesterMetadata.cpp │ │ │ ├── RequesterMetadata.h │ │ │ ├── Resource.cpp │ │ │ ├── Resource.h │ │ │ ├── StorageManager.cpp │ │ │ ├── StorageManager.h │ │ │ ├── UrlAllowListWrapper.cpp │ │ │ ├── UrlRequester.cpp │ │ │ └── UrlRequester.h │ │ └── test │ │ │ ├── ArtifactTest.cpp │ │ │ ├── ArtifactUnderTest.h │ │ │ ├── AssetManagerEvictionTest.cpp │ │ │ ├── AssetManagerInitTest.cpp │ │ │ ├── AssetManagerSharedResourceTest.cpp │ │ │ ├── AssetManagerTest.cpp │ │ │ ├── AssetManagerTest.h │ │ │ ├── AssetManagerUpdateTest.cpp │ │ │ └── CMakeLists.txt │ ├── acsdkAssetManagerClient │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAssetManagerClient │ │ │ │ ├── AMD.h │ │ │ │ ├── ArtifactWrapper.h │ │ │ │ ├── ArtifactWrapperFactory.h │ │ │ │ └── GenericInventory.h │ │ └── src │ │ │ ├── ArtifactWrapper.cpp │ │ │ ├── ArtifactWrapperFactory.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── GenericInventory.cpp │ └── acsdkAssetManagerClientInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkAssetManagerClientInterfaces │ │ ├── ArtifactChangeObserver.h │ │ ├── ArtifactUpdateValidator.h │ │ ├── ArtifactWrapperFactoryInterface.h │ │ └── ArtifactWrapperInterface.h ├── AudioPlayer │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAudioPlayer │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAudioPlayer │ │ │ │ ├── AudioItem.h │ │ │ │ ├── AudioPlayer.h │ │ │ │ ├── AudioPlayerComponent.h │ │ │ │ ├── ClearBehavior.h │ │ │ │ ├── ProgressTimer.h │ │ │ │ ├── StreamFormat.h │ │ │ │ └── Util.h │ │ ├── src │ │ │ ├── AudioPlayer.cpp │ │ │ ├── AudioPlayerComponent.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ProgressTimer.cpp │ │ │ └── Util.cpp │ │ └── test │ │ │ ├── AudioPlayerTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ProgressTimerTest.cpp │ │ │ └── UtilsTest.cpp │ └── acsdkAudioPlayerInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkAudioPlayerInterfaces │ │ ├── AudioPlayerInterface.h │ │ └── AudioPlayerObserverInterface.h ├── Bluetooth │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkBluetooth │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkBluetooth │ │ │ │ ├── BasicDeviceConnectionRule.h │ │ │ │ ├── BasicDeviceConnectionRulesProvider.h │ │ │ │ ├── Bluetooth.h │ │ │ │ ├── BluetoothComponent.h │ │ │ │ ├── BluetoothEventState.h │ │ │ │ ├── BluetoothMediaInputTransformer.h │ │ │ │ ├── BluetoothNotifier.h │ │ │ │ ├── DeviceConnectionRulesAdapter.h │ │ │ │ └── SQLiteBluetoothStorage.h │ │ ├── src │ │ │ ├── BasicDeviceConnectionRule.cpp │ │ │ ├── BasicDeviceConnectionRulesProvider.cpp │ │ │ ├── Bluetooth.cpp │ │ │ ├── BluetoothComponent.cpp │ │ │ ├── BluetoothEventState.cpp │ │ │ ├── BluetoothMediaInputTransformer.cpp │ │ │ ├── BluetoothNotifier.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DeviceConnectionRulesAdapter.cpp │ │ │ └── SQLiteBluetoothStorage.cpp │ │ └── test │ │ │ ├── BluetoothMediaInputTransformerTest.cpp │ │ │ ├── BluetoothTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── SQLiteBluetoothStorageTest.cpp │ └── acsdkBluetoothInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkBluetoothInterfaces │ │ │ ├── BluetoothDeviceConnectionRulesProviderInterface.h │ │ │ ├── BluetoothDeviceObserverInterface.h │ │ │ ├── BluetoothLocalInterface.h │ │ │ ├── BluetoothNotifierInterface.h │ │ │ └── BluetoothStorageInterface.h │ │ └── test │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkBluetoothInterfaces │ │ └── MockBluetoothDeviceObserver.h ├── DavsClient │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkAssetsCommon │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAssetsCommon │ │ │ │ ├── AmdMetricWrapper.h │ │ │ │ ├── ArchiveWrapper.h │ │ │ │ ├── Base64Url.h │ │ │ │ ├── CurlProgressCallbackInterface.h │ │ │ │ ├── CurlWrapper.h │ │ │ │ ├── DataChunk.h │ │ │ │ ├── DownloadChunkQueue.h │ │ │ │ ├── DownloadStream.h │ │ │ │ ├── JitterUtil.h │ │ │ │ └── ResponseSink.h │ │ ├── src │ │ │ ├── AmdMetricWrapper.cpp │ │ │ ├── ArchiveWrapper.cpp │ │ │ ├── Base64Url.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CurlWrapper.cpp │ │ │ ├── DataChunk.cpp │ │ │ ├── DownloadChunkQueue.cpp │ │ │ ├── DownloadStream.cpp │ │ │ ├── JitterUtil.cpp │ │ │ └── ResponseSink.cpp │ │ └── test │ │ │ ├── AmdMetricWrapperTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CurlWrapperTest.cpp │ │ │ ├── DownloadChunkQueueTest.cpp │ │ │ ├── DownloadStreamTest.cpp │ │ │ ├── JitterUtilTest.cpp │ │ │ └── mocks │ │ │ ├── AuthDelegateMock.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── CurlWrapperMock.cpp │ │ │ ├── DavsServiceMock.cpp │ │ │ ├── InternetConnectionMonitorMock.cpp │ │ │ ├── TestUtil.cpp │ │ │ └── include │ │ │ ├── AuthDelegateMock.h │ │ │ ├── CurlWrapperMock.h │ │ │ ├── DavsServiceMock.h │ │ │ ├── InternetConnectionMonitorMock.h │ │ │ └── TestUtil.h │ ├── acsdkAssetsInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAssetsInterfaces │ │ │ │ ├── ArtifactRequest.h │ │ │ │ ├── Communication │ │ │ │ ├── AmdCommunicationInterface.h │ │ │ │ └── InMemoryAmdCommunicationHandler.h │ │ │ │ ├── DavsRequest.h │ │ │ │ ├── Endpoint.h │ │ │ │ ├── Priority.h │ │ │ │ ├── Region.h │ │ │ │ ├── ResultCode.h │ │ │ │ ├── State.h │ │ │ │ ├── Type.h │ │ │ │ ├── UrlRequest.h │ │ │ │ └── VendableArtifact.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── DavsRequest.cpp │ │ │ ├── UrlRequest.cpp │ │ │ └── VendableArtifact.cpp │ ├── acsdkDavsClient │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkDavsClient │ │ │ │ ├── DavsClient.h │ │ │ │ ├── DavsEndpointHandlerV3.h │ │ │ │ └── DavsHandler.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── DavsClient.cpp │ │ │ ├── DavsEndpointHandlerV3.cpp │ │ │ └── DavsHandler.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── DavsClientTest.cpp │ │ │ └── DavsEndpointHandlerV3Test.cpp │ └── acsdkDavsClientInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkDavsClientInterfaces │ │ ├── ArtifactHandlerInterface.h │ │ ├── CurlProgressCallbackInterface.h │ │ ├── DavsCheckCallbackInterface.h │ │ ├── DavsDownloadCallbackInterface.h │ │ └── DavsEndpointHandlerInterface.h ├── DeviceSetup │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkDeviceSetup │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkDeviceSetup │ │ │ │ ├── DeviceSetupComponent.h │ │ │ │ └── DeviceSetupFactory.h │ │ ├── privateInclude │ │ │ └── acsdkDeviceSetup │ │ │ │ ├── DeviceSetup.h │ │ │ │ └── DeviceSetupMessageRequest.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── DeviceSetup.cpp │ │ │ ├── DeviceSetupComponent.cpp │ │ │ ├── DeviceSetupFactory.cpp │ │ │ └── DeviceSetupMessageRequest.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── DeviceSetupTest.cpp │ └── acsdkDeviceSetupInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkDeviceSetupInterfaces │ │ └── DeviceSetupInterface.h ├── DoNotDisturb │ ├── .clang-format │ ├── CMakeLists.txt │ └── acsdkDoNotDisturb │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkDoNotDisturb │ │ │ ├── DNDMessageRequest.h │ │ │ ├── DNDSettingProtocol.h │ │ │ ├── DoNotDisturbCapabilityAgent.h │ │ │ └── DoNotDisturbComponent.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── DNDMessageRequest.cpp │ │ ├── DNDSettingProtocol.cpp │ │ ├── DoNotDisturbCapabilityAgent.cpp │ │ └── DoNotDisturbComponent.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ └── DoNotDisturbCapabilityAgentTest.cpp ├── Equalizer │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── acsdkEqualizer │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkEqualizer │ │ │ │ └── EqualizerCapabilityAgent.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ └── EqualizerCapabilityAgent.cpp │ │ └── test │ │ │ └── CMakeLists.txt │ ├── acsdkEqualizerImplementations │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkEqualizerImplementations │ │ │ │ ├── EqualizerBandMapperInterface.h │ │ │ │ ├── EqualizerComponent.h │ │ │ │ ├── EqualizerController.h │ │ │ │ ├── EqualizerLinearBandMapper.h │ │ │ │ ├── EqualizerUtils.h │ │ │ │ ├── InMemoryEqualizerConfiguration.h │ │ │ │ ├── MiscDBEqualizerStorage.h │ │ │ │ └── SDKConfigEqualizerConfiguration.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── EqualizerComponent.cpp │ │ │ ├── EqualizerController.cpp │ │ │ ├── EqualizerLinearBandMapper.cpp │ │ │ ├── EqualizerUtils.cpp │ │ │ ├── InMemoryEqualizerConfiguration.cpp │ │ │ ├── MiscDBEqualizerStorage.cpp │ │ │ └── SDKConfigEqualizerConfiguration.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── EqualizerControllerTest.cpp │ │ │ ├── EqualizerLinearBandMapperTest.cpp │ │ │ ├── InMemoryEqualizerConfigurationTest.cpp │ │ │ ├── MiscDBEqualizerStorageTest.cpp │ │ │ └── SDKConfigEqualizerConfigurationTest.cpp │ └── acsdkEqualizerInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkEqualizerInterfaces │ │ │ ├── EqualizerConfigurationInterface.h │ │ │ ├── EqualizerControllerListenerInterface.h │ │ │ ├── EqualizerInterface.h │ │ │ ├── EqualizerModeControllerInterface.h │ │ │ ├── EqualizerRuntimeSetupInterface.h │ │ │ ├── EqualizerStorageInterface.h │ │ │ └── EqualizerTypes.h │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkEqualizerInterfaces │ │ │ ├── EqualizerStorageInterfaceTest.h │ │ │ ├── MockEqualizerConfigurationInterface.h │ │ │ ├── MockEqualizerControllerListenerInterface.h │ │ │ ├── MockEqualizerInterface.h │ │ │ ├── MockEqualizerModeControllerInterface.h │ │ │ └── MockEqualizerStorageInterface.h │ │ └── src │ │ └── EqualizerStorageInterfaceTest.cpp ├── ExternalMediaPlayer │ ├── .clang-format │ ├── CMakeLists.txt │ ├── acsdkExternalMediaPlayer │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkExternalMediaPlayer │ │ │ │ ├── AuthorizedSender.h │ │ │ │ ├── ExternalMediaAdapterHandler.h │ │ │ │ ├── ExternalMediaPlayer.h │ │ │ │ ├── ExternalMediaPlayerComponent.h │ │ │ │ └── StaticExternalMediaPlayerAdapterHandler.h │ │ ├── src │ │ │ ├── AuthorizedSender.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ExternalMediaAdapterHandler.cpp │ │ │ ├── ExternalMediaPlayer.cpp │ │ │ ├── ExternalMediaPlayerComponent.cpp │ │ │ └── StaticExternalMediaPlayerAdapterHandler.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── ExternalMediaAdapterHandlerTest.cpp │ │ │ ├── ExternalMediaPlayerTest.cpp │ │ │ └── acsdkExternalMediaPlayer │ │ │ └── MockExternalMediaAdapterHandler.h │ └── acsdkExternalMediaPlayerInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkExternalMediaPlayerInterfaces │ │ │ ├── AdapterUtils.h │ │ │ ├── ExternalMediaAdapterConstants.h │ │ │ ├── ExternalMediaAdapterHandlerInterface.h │ │ │ ├── ExternalMediaAdapterInterface.h │ │ │ ├── ExternalMediaPlayerCommon.h │ │ │ ├── ExternalMediaPlayerInterface.h │ │ │ └── ExternalMediaPlayerObserverInterface.h │ │ ├── src │ │ ├── AdapterUtils.cpp │ │ └── CMakeLists.txt │ │ └── test │ │ ├── CMakeLists.txt │ │ └── acsdkExternalMediaPlayerInterfaces │ │ ├── MockExternalMediaPlayer.h │ │ ├── MockExternalMediaPlayerAdapter.h │ │ ├── MockExternalMediaPlayerObserver.h │ │ └── MockRenderPlayerInfoCardsProviderRegistrar.h ├── InputController │ ├── .clang-format │ ├── AlexaInputController │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaInputController │ │ │ │ └── InputControllerFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── AlexaInputController │ │ │ │ └── private │ │ │ │ └── InputControllerCapabilityAgent.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── InputControllerCapabilityAgent.cpp │ │ │ └── InputControllerFactory.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── InputControllerCapabilityAgentTest.cpp │ ├── AlexaInputControllerInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaInputControllerInterfaces │ │ │ │ ├── InputControllerInterface.h │ │ │ │ ├── InputControllerObserverInterface.h │ │ │ │ └── InputType.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── InputType.cpp │ └── CMakeLists.txt ├── LiveViewController │ ├── .clang-format │ ├── AlexaLiveViewController │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AlexaLiveViewController │ │ │ │ └── AlexaLiveViewControllerFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── AlexaLiveViewController │ │ │ │ └── private │ │ │ │ └── AlexaLiveViewControllerCapabilityAgent.h │ │ ├── src │ │ │ ├── AlexaLiveViewControllerCapabilityAgent.cpp │ │ │ ├── AlexaLiveViewControllerFactory.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AlexaLiveViewControllerCapabilityAgentTest.cpp │ │ │ └── CMakeLists.txt │ ├── AlexaLiveViewControllerInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── acsdk │ │ │ └── AlexaLiveViewControllerInterfaces │ │ │ ├── LiveViewControllerConfiguration.h │ │ │ ├── LiveViewControllerInterface.h │ │ │ ├── LiveViewControllerObserverInterface.h │ │ │ └── LiveViewControllerTypes.h │ └── CMakeLists.txt ├── MultiRoomMusic │ ├── .clang-format │ ├── CMakeLists.txt │ └── acsdkMultiRoomMusic │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkMultiRoomMusic │ │ │ ├── MRMCapabilityAgent.h │ │ │ └── MRMHandlerInterface.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ └── MRMCapabilityAgent.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ └── MRMCapabilityAgentTest.cpp ├── Notifications │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── acsdkNotifications │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkNotifications │ │ │ │ ├── IndicatorState.h │ │ │ │ ├── NotificationIndicator.h │ │ │ │ ├── NotificationRenderer.h │ │ │ │ ├── NotificationsCapabilityAgent.h │ │ │ │ ├── NotificationsCapabilityAgentState.h │ │ │ │ ├── NotificationsComponent.h │ │ │ │ ├── NotificationsNotifier.h │ │ │ │ └── SQLiteNotificationsStorage.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── NotificationIndicator.cpp │ │ │ ├── NotificationRenderer.cpp │ │ │ ├── NotificationsCapabilityAgent.cpp │ │ │ ├── NotificationsComponent.cpp │ │ │ ├── NotificationsNotifier.cpp │ │ │ └── SQLiteNotificationsStorage.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── NotificationRendererTest.cpp │ │ │ ├── NotificationsCapabilityAgentTest.cpp │ │ │ └── NotificationsStorageTest.cpp │ └── acsdkNotificationsInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkNotificationsInterfaces │ │ ├── NotificationRendererInterface.h │ │ ├── NotificationRendererObserverInterface.h │ │ ├── NotificationsNotifierInterface.h │ │ ├── NotificationsObserverInterface.h │ │ └── NotificationsStorageInterface.h ├── TemplateRuntime │ ├── .clang-format │ ├── CMakeLists.txt │ ├── TemplateRuntime │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── TemplateRuntime │ │ │ │ ├── RenderPlayerInfoCardsProviderRegistrarFactory.h │ │ │ │ └── TemplateRuntimeFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── TemplateRuntime │ │ │ │ └── private │ │ │ │ ├── RenderPlayerInfoCardsProviderRegistrar.h │ │ │ │ └── TemplateRuntime.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── RenderPlayerInfoCardsProviderRegistrar.cpp │ │ │ ├── RenderPlayerInfoCardsProviderRegistrarFactory.cpp │ │ │ ├── TemplateRuntime.cpp │ │ │ └── TemplateRuntimeFactory.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── RenderPlayerInfoCardsProviderRegistrarTest.cpp │ │ │ └── TemplateRuntimeTest.cpp │ └── TemplateRuntimeInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdk │ │ └── TemplateRuntimeInterfaces │ │ ├── TemplateRuntimeInterface.h │ │ └── TemplateRuntimeObserverInterface.h └── VisualCharacteristics │ ├── .clang-format │ ├── CMakeLists.txt │ ├── VisualCharacteristics │ ├── CMakeLists.txt │ ├── include │ │ └── acsdk │ │ │ └── VisualCharacteristics │ │ │ ├── VisualCharacteristicsFactory.h │ │ │ └── VisualCharacteristicsSerializerFactory.h │ ├── privateInclude │ │ └── acsdk │ │ │ └── VisualCharacteristics │ │ │ └── private │ │ │ ├── VCConfigParser.h │ │ │ ├── VisualCharacteristics.h │ │ │ └── VisualCharacteristicsSerializer.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── VCConfigParser.cpp │ │ ├── VisualCharacteristics.cpp │ │ ├── VisualCharacteristicsFactory.cpp │ │ ├── VisualCharacteristicsSerializer.cpp │ │ └── VisualCharacteristicsSerializerFactory.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── VCConfigParserTest.cpp │ │ └── VisualCharacteristicsTest.cpp │ └── VisualCharacteristicsInterfaces │ ├── CMakeLists.txt │ └── include │ └── acsdk │ └── VisualCharacteristicsInterfaces │ ├── VisualCharacteristicsInterface.h │ └── VisualCharacteristicsSerializerInterface.h ├── cmakeBuild ├── BuildDefaults.cmake └── cmake │ ├── A4B.cmake │ ├── ACSUtils.cmake │ ├── Android.cmake │ ├── AssetManager.cmake │ ├── AuthorizationManager.cmake │ ├── Bluetooth.cmake │ ├── BuildOptions.cmake │ ├── Captions.cmake │ ├── Ccache.cmake │ ├── CodeCoverage │ ├── CTestCustom.cmake.template │ ├── CodeCoverage.cmake │ ├── postCTest.sh │ └── preCTest.sh │ ├── Comms.cmake │ ├── Crypto.cmake │ ├── Curl.cmake │ ├── CustomSDSTraits.cmake │ ├── DefaultLibNames.cmake │ ├── Diagnostics.cmake │ ├── DisallowOutOfSourceBuilds.cmake │ ├── EndpointControllers.cmake │ ├── EndpointVideoControllers.cmake │ ├── ExtensionPath.cmake │ ├── ExternalMediaPlayerAdapters.cmake │ ├── FFmpeg.cmake │ ├── FileSystemUtils.cmake │ ├── GeneratePkgConfig.cmake │ ├── KeywordDetector.cmake │ ├── LibArchive.cmake │ ├── LocalDucking.cmake │ ├── Logger.cmake │ ├── LowPowerMode.cmake │ ├── MC.cmake │ ├── MCC.cmake │ ├── MRM.cmake │ ├── MediaPlayer.cmake │ ├── Metrics.cmake │ ├── Opus.cmake │ ├── PCC.cmake │ ├── PKCS11.cmake │ ├── PackageConfigs.cmake │ ├── Platforms.cmake │ ├── PortAudio.cmake │ ├── PrepareInstall.cmake │ ├── RTCSC.cmake │ ├── Rapidjson.cmake │ ├── Rpath.cmake │ ├── SampleApplications.cmake │ ├── Sqlite.cmake │ ├── TestOptions.cmake │ └── UseRTTI.cmake ├── core ├── AudioEncoder │ ├── AudioEncoder │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── AudioEncoder │ │ │ │ ├── AudioEncoderFactory.h │ │ │ │ └── AudioEncoderParams.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── AudioEncoder │ │ │ │ └── private │ │ │ │ ├── AudioEncoder.h │ │ │ │ └── AudioEncoderState.h │ │ ├── src │ │ │ ├── AudioEncoder.cpp │ │ │ ├── AudioEncoderFactory.cpp │ │ │ ├── AudioEncoderParams.cpp │ │ │ ├── AudioEncoderState.cpp │ │ │ └── CMakeLists.txt │ │ └── test │ │ │ ├── AudioEncoderTest.cpp │ │ │ └── CMakeLists.txt │ ├── AudioEncoderComponent │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── acsdk │ │ │ └── AudioEncoderComponent │ │ │ └── ComponentFactory.h │ ├── AudioEncoderInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── acsdk │ │ │ └── AudioEncoderInterfaces │ │ │ ├── AudioEncoderInterface.h │ │ │ └── BlockAudioEncoderInterface.h │ ├── CMakeLists.txt │ └── OpusAudioEncoder │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdk │ │ │ └── OpusAudioEncoder │ │ │ └── AudioEncoderFactory.h │ │ ├── privateInclude │ │ └── acsdk │ │ │ └── OpusAudioEncoder │ │ │ └── private │ │ │ └── OpusAudioEncoder.h │ │ └── src │ │ ├── AudioEncoderFactory.cpp │ │ ├── CMakeLists.txt │ │ └── OpusAudioEncoder.cpp ├── Authorization │ ├── CMakeLists.txt │ ├── acsdkAuthorization │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkAuthorization │ │ │ │ ├── AuthorizationManager.h │ │ │ │ ├── AuthorizationManagerStorage.h │ │ │ │ └── LWA │ │ │ │ ├── LWAAuthorizationAdapter.h │ │ │ │ ├── LWAAuthorizationConfiguration.h │ │ │ │ └── LWAAuthorizationStorage.h │ │ ├── privateInclude │ │ │ └── acsdkAuthorization │ │ │ │ └── private │ │ │ │ ├── LWA │ │ │ │ ├── LWAStorageConstants.h │ │ │ │ └── LWAStorageDataMigration.h │ │ │ │ └── Logging.h │ │ ├── src │ │ │ ├── AuthorizationManager.cpp │ │ │ ├── AuthorizationManagerStorage.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── LWA │ │ │ │ ├── LWAAuthorizationAdapter.cpp │ │ │ │ ├── LWAAuthorizationConfiguration.cpp │ │ │ │ ├── LWAAuthorizationStorage.cpp │ │ │ │ ├── LWAStorageConstants.cpp │ │ │ │ └── LWAStorageDataMigration.cpp │ │ └── test │ │ │ ├── AuthorizationManagerTest.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── LWAAuthStorageMigrationTest.cpp │ │ │ ├── LWAAuthorizationAdapterTest.cpp │ │ │ ├── LWAAuthorizationStorageTest.cpp │ │ │ ├── StubStorage.cpp │ │ │ └── include │ │ │ └── acsdkAuthorization │ │ │ └── LWA │ │ │ └── test │ │ │ └── StubStorage.h │ └── acsdkAuthorizationInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ └── acsdkAuthorizationInterfaces │ │ ├── AuthorizationAdapterInterface.h │ │ ├── AuthorizationAuthorityInterface.h │ │ ├── AuthorizationInterface.h │ │ ├── AuthorizationManagerInterface.h │ │ └── LWA │ │ ├── CBLAuthorizationObserverInterface.h │ │ ├── LWAAuthorizationInterface.h │ │ └── LWAAuthorizationStorageInterface.h ├── CMakeLists.txt ├── CodecUtils │ ├── CMakeLists.txt │ ├── doc │ │ └── CodecUtils.dox │ ├── include │ │ └── acsdk │ │ │ └── CodecUtils │ │ │ ├── Base64.h │ │ │ ├── Hex.h │ │ │ └── Types.h │ ├── privateInclude │ │ └── acsdk │ │ │ └── CodecUtils │ │ │ └── private │ │ │ ├── Base64Common.h │ │ │ └── CodecsCommon.h │ ├── src │ │ ├── Base64Common.cpp │ │ ├── Base64Internal.cpp │ │ ├── Base64OpenSsl.cpp │ │ ├── CMakeLists.txt │ │ ├── CodecsCommon.cpp │ │ └── Hex.cpp │ └── test │ │ ├── Base64CodecTest.cpp │ │ ├── Base64InternalCodecTest.cpp │ │ ├── CMakeLists.txt │ │ └── HexCodecTest.cpp ├── Crypto │ ├── CMakeLists.txt │ ├── Crypto │ │ ├── CMakeLists.txt │ │ ├── doc │ │ │ └── Crypto.dox │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── Crypto │ │ │ │ └── CryptoFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── Crypto │ │ │ │ └── private │ │ │ │ ├── Logging.h │ │ │ │ ├── OpenSslCryptoCodec.h │ │ │ │ ├── OpenSslCryptoFactory.h │ │ │ │ ├── OpenSslDigest.h │ │ │ │ ├── OpenSslErrorCleanup.h │ │ │ │ ├── OpenSslKeyFactory.h │ │ │ │ ├── OpenSslTypeMapper.h │ │ │ │ └── OpenSslTypes.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── CryptoFactory.cpp │ │ │ ├── OpenSslCryptoCodec.cpp │ │ │ ├── OpenSslCryptoFactory.cpp │ │ │ ├── OpenSslDigest.cpp │ │ │ ├── OpenSslErrorCleanup.cpp │ │ │ ├── OpenSslKeyFactory.cpp │ │ │ ├── OpenSslTypeMapper.cpp │ │ │ └── OpenSslTypes.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── OpenSslCryptoCodecAEADTest.cpp │ │ │ ├── OpenSslCryptoCodecTest.cpp │ │ │ ├── OpenSslCryptoFactoryTest.cpp │ │ │ ├── OpenSslDigestTest.cpp │ │ │ ├── OpenSslKeyFactoryTest.cpp │ │ │ └── OpenSslTypeMapperTest.cpp │ ├── CryptoInterfaces │ │ ├── CMakeLists.txt │ │ ├── doc │ │ │ ├── CryptoInterfaces.dox │ │ │ └── Namespaces.dox │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── CryptoInterfaces │ │ │ │ ├── AlgorithmType.h │ │ │ │ ├── CryptoCodecInterface.h │ │ │ │ ├── CryptoFactoryInterface.h │ │ │ │ ├── DigestInterface.h │ │ │ │ ├── DigestType.h │ │ │ │ ├── KeyFactoryInterface.h │ │ │ │ └── KeyStoreInterface.h │ │ ├── src │ │ │ ├── AlgorithmType.cpp │ │ │ ├── CMakeLists.txt │ │ │ └── DigestType.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── doc │ │ │ └── Namespaces.dox │ │ │ └── include │ │ │ └── acsdk │ │ │ └── CryptoInterfaces │ │ │ └── test │ │ │ ├── MockCryptoCodec.h │ │ │ ├── MockCryptoFactory.h │ │ │ ├── MockDigest.h │ │ │ ├── MockKeyFactory.h │ │ │ └── MockKeyStore.h │ └── Pkcs11 │ │ ├── CMakeLists.txt │ │ ├── doc │ │ └── CryptoPKCS11.dox │ │ ├── include │ │ └── acsdk │ │ │ └── Pkcs11 │ │ │ └── KeyStoreFactory.h │ │ ├── privateInclude │ │ └── acsdk │ │ │ └── Pkcs11 │ │ │ └── private │ │ │ ├── ErrorCleanupGuard.h │ │ │ ├── Logging.h │ │ │ ├── PKCS11API.h │ │ │ ├── PKCS11Config.h │ │ │ ├── PKCS11Functions.h │ │ │ ├── PKCS11Key.h │ │ │ ├── PKCS11KeyDescriptor.h │ │ │ ├── PKCS11KeyStore.h │ │ │ ├── PKCS11Session.h │ │ │ └── PKCS11Slot.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── KeyStoreFactory.cpp │ │ ├── PKCS11Config.cpp │ │ ├── PKCS11Functions.cpp │ │ ├── PKCS11FunctionsPosix.cpp │ │ ├── PKCS11FunctionsUwp.cpp │ │ ├── PKCS11Key.cpp │ │ ├── PKCS11KeyDescriptor.cpp │ │ ├── PKCS11KeyStore.cpp │ │ ├── PKCS11Session.cpp │ │ └── PKCS11Slot.cpp │ │ ├── test │ │ ├── CMakeLists.txt │ │ ├── ErrorCleanupGuardTest.cpp │ │ ├── PKCS11ConfigTest.cpp │ │ ├── PKCS11FunctionsTest.cpp │ │ ├── PKCS11KeyStoreTest.cpp │ │ ├── PKCS11KeyTest.cpp │ │ ├── PKCS11SessionTest.cpp │ │ └── PKCS11SlotTest.cpp │ │ └── testStubs │ │ ├── CMakeLists.txt │ │ ├── doc │ │ └── CryptoPKCS11Stubs.dox │ │ └── src │ │ └── Pkcs11Stubs.cpp ├── Properties │ ├── CMakeLists.txt │ ├── Properties │ │ ├── CMakeLists.txt │ │ ├── doc │ │ │ ├── Namespaces.dox │ │ │ └── acsdkProperties.dox │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── Properties │ │ │ │ ├── EncryptedPropertiesFactories.h │ │ │ │ ├── ErrorCallbackInterface.h │ │ │ │ ├── ErrorCallbackSetter.h │ │ │ │ └── MiscStorageAdapter.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── Properties │ │ │ │ └── private │ │ │ │ ├── Asn1Helper.h │ │ │ │ ├── Asn1Types.h │ │ │ │ ├── DataPropertyCodec.h │ │ │ │ ├── DataPropertyCodecState.h │ │ │ │ ├── EncryptedProperties.h │ │ │ │ ├── EncryptedPropertiesFactory.h │ │ │ │ ├── EncryptionKeyPropertyCodec.h │ │ │ │ ├── EncryptionKeyPropertyCodecState.h │ │ │ │ ├── Logging.h │ │ │ │ ├── MiscStorageProperties.h │ │ │ │ ├── MiscStoragePropertiesFactory.h │ │ │ │ └── RetryExecutor.h │ │ ├── src │ │ │ ├── Asn1Helper.cpp │ │ │ ├── Asn1Types.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── DataPropertyCodec.cpp │ │ │ ├── DataPropertyCodecState.cpp │ │ │ ├── EncryptedProperties.cpp │ │ │ ├── EncryptedPropertiesFactories.cpp │ │ │ ├── EncryptedPropertiesFactory.cpp │ │ │ ├── EncryptionKeyPropertyCodec.cpp │ │ │ ├── EncryptionKeyPropertyCodecState.cpp │ │ │ ├── ErrorCallbackSetter.cpp │ │ │ ├── Logging.cpp │ │ │ ├── MiscStorageAdapter.cpp │ │ │ ├── MiscStorageProperties.cpp │ │ │ ├── MiscStoragePropertiesFactory.cpp │ │ │ ├── RetryExecutor.cpp │ │ │ └── SimpleMiscStorageUriMapper.cpp │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── MiscStoragePropertiesFactoryTest.cpp │ │ │ └── MiscStoragePropertiesTest.cpp │ │ └── testCrypto │ │ │ ├── CMakeLists.txt │ │ │ ├── DataPropertyCodecTest.cpp │ │ │ ├── EncryptedPropertiesFactoryTest.cpp │ │ │ ├── EncryptedPropertiesTest.cpp │ │ │ └── EncryptionKeyPropertyCodecTest.cpp │ └── PropertiesInterfaces │ │ ├── CMakeLists.txt │ │ ├── doc │ │ ├── Namespaces.dox │ │ └── acsdkPropertiesInterfaces.dox │ │ ├── include │ │ └── acsdk │ │ │ └── PropertiesInterfaces │ │ │ ├── PropertiesFactoryInterface.h │ │ │ └── PropertiesInterface.h │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── doc │ │ └── Namespaces.dox │ │ ├── include │ │ └── acsdk │ │ │ └── PropertiesInterfaces │ │ │ └── test │ │ │ ├── MockProperties.h │ │ │ ├── MockPropertiesFactory.h │ │ │ ├── StubProperties.h │ │ │ └── StubPropertiesFactory.h │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── StubProperties.cpp │ │ └── StubPropertiesFactory.cpp ├── acsdkAlexaEventProcessedNotifierInterfaces │ ├── CMakeLists.txt │ └── include │ │ └── acsdkAlexaEventProcessedNotifierInterfaces │ │ └── AlexaEventProcessedNotifierInterface.h ├── acsdkCore │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkCore │ │ │ └── CoreComponent.h │ └── src │ │ ├── CMakeLists.txt │ │ └── CoreComponent.cpp ├── acsdkPostConnectOperationProviderRegistrar │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkPostConnectOperationProviderRegistrar │ │ │ └── PostConnectOperationProviderRegistrar.h │ ├── src │ │ ├── CMakeLists.txt │ │ └── PostConnectOperationProviderRegistrar.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── PostConnectOperationProviderRegistrarTest.cpp ├── acsdkPostConnectOperationProviderRegistrarInterfaces │ ├── CMakeLists.txt │ └── include │ │ └── acsdkPostConnectOperationProviderRegistrarInterfaces │ │ └── PostConnectOperationProviderRegistrarInterface.h ├── acsdkRegistrationManager │ ├── CMakeLists.txt │ ├── include │ │ └── RegistrationManager │ │ │ ├── CustomerDataHandler.h │ │ │ ├── CustomerDataManagerFactory.h │ │ │ ├── RegistrationManagerComponent.h │ │ │ └── RegistrationManagerFactory.h │ ├── privateInclude │ │ └── RegistrationManager │ │ │ ├── CustomerDataManager.h │ │ │ ├── RegistrationManager.h │ │ │ └── RegistrationNotifier.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── CustomerDataHandler.cpp │ │ ├── CustomerDataManager.cpp │ │ ├── CustomerDataManagerFactory.cpp │ │ ├── RegistrationManager.cpp │ │ ├── RegistrationManagerComponent.cpp │ │ ├── RegistrationManagerFactory.cpp │ │ └── RegistrationNotifier.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── CustomerDataManagerTest.cpp │ │ └── RegistrationManagerTest.cpp ├── acsdkRegistrationManagerInterfaces │ ├── CMakeLists.txt │ ├── include │ │ └── RegistrationManager │ │ │ ├── CustomerDataHandlerInterface.h │ │ │ ├── CustomerDataManagerInterface.h │ │ │ ├── RegistrationManagerInterface.h │ │ │ ├── RegistrationNotifierInterface.h │ │ │ └── RegistrationObserverInterface.h │ └── test │ │ ├── CMakeLists.txt │ │ └── include │ │ └── RegistrationManager │ │ └── MockCustomerDataManager.h ├── acsdkSystemClockMonitor │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkSystemClockMonitor │ │ │ ├── SystemClockMonitor.h │ │ │ └── SystemClockNotifier.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── SystemClockMonitor.cpp │ │ └── SystemClockNotifier.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── SystemClockMonitorTest.cpp └── acsdkSystemClockMonitorInterfaces │ ├── CMakeLists.txt │ └── include │ └── acsdkSystemClockMonitorInterfaces │ ├── SystemClockMonitorInterface.h │ ├── SystemClockMonitorObserverInterface.h │ └── SystemClockNotifierInterface.h ├── doc ├── CMakeLists.txt ├── avs-cpp-sdk-architecture.png ├── avs-logo.png ├── doxygen.cfg.in └── footer.html ├── issue_template.md ├── pkg-config.pc.cmake ├── shared ├── CMakeLists.txt ├── KWD │ ├── CMakeLists.txt │ ├── acsdkKWD │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkKWD │ │ │ │ └── KWDComponent.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── KWDComponent.cpp │ ├── acsdkKWDImplementations │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdkKWDImplementations │ │ │ │ ├── AbstractKeywordDetector.h │ │ │ │ └── KWDNotifierFactories.h │ │ ├── inputs │ │ │ ├── alexa_joke.wav │ │ │ ├── alexa_stop_alexa_joke.wav │ │ │ ├── four_alexa.wav │ │ │ └── stop_stop.wav │ │ ├── privateInclude │ │ │ └── acsdkKWDImplementations │ │ │ │ ├── KeywordDetectorStateNotifier.h │ │ │ │ └── KeywordNotifier.h │ │ ├── src │ │ │ ├── AbstractKeywordDetector.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── KWDNotifierFactories.cpp │ │ │ ├── KeywordDetectorStateNotifier.cpp │ │ │ └── KeywordNotifier.cpp │ │ └── test │ │ │ ├── AbstractKeywordDetectorTest.cpp │ │ │ └── CMakeLists.txt │ ├── acsdkKWDInterfaces │ │ ├── CMakeLists.txt │ │ └── include │ │ │ └── acsdkKWDInterfaces │ │ │ ├── KeywordDetectorStateNotifierInterface.h │ │ │ └── KeywordNotifierInterface.h │ └── acsdkKWDProvider │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdkKWDProvider │ │ │ └── KWDProvider │ │ │ └── KeywordDetectorProvider.h │ │ └── src │ │ ├── CMakeLists.txt │ │ └── KeywordDetectorProvider.cpp ├── Notifier │ ├── CMakeLists.txt │ ├── doc │ │ ├── Namespaces.dox │ │ └── Notifier.dox │ ├── include │ │ └── acsdk │ │ │ └── Notifier │ │ │ ├── Notifier.h │ │ │ └── internal │ │ │ ├── DataInterface.h │ │ │ └── NotifierTraits.h │ ├── privateInclude │ │ └── acsdk │ │ │ └── Notifier │ │ │ └── private │ │ │ ├── NotifierData.h │ │ │ ├── ObserverWrapper.h │ │ │ └── ReferenceType.h │ ├── src │ │ ├── NotifierData.cpp │ │ └── ObserverWrapper.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── Namespaces.dox │ │ ├── NotifierDataTest.cpp │ │ ├── NotifierTest.cpp │ │ ├── NotifierTests.dox │ │ ├── NotifierTraitsTest.cpp │ │ └── ObserverWrapperTest.cpp ├── NotifierInterfaces │ ├── CMakeLists.txt │ ├── doc │ │ ├── Namespaces.dox │ │ └── NotifierInterfaces.dox │ ├── include │ │ └── acsdk │ │ │ └── NotifierInterfaces │ │ │ └── NotifierInterface.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── MockNotifierTest.cpp │ │ ├── Namespaces.dox │ │ ├── NotifierInterfacesTests.dox │ │ └── include │ │ └── acsdk │ │ └── NotifierInterfaces │ │ └── test │ │ └── MockNotifier.h ├── PresentationOrchestrator │ ├── .clang-format │ ├── CMakeLists.txt │ ├── PresentationOrchestratorClient │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── PresentationOrchestratorClient │ │ │ │ └── PresentationOrchestratorClientFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── PresentationOrchestratorClient │ │ │ │ └── private │ │ │ │ ├── MultiWindowManagerInterface.h │ │ │ │ ├── Presentation.h │ │ │ │ ├── PresentationLifespanToTimeoutMapper.h │ │ │ │ ├── PresentationOrchestratorClient.h │ │ │ │ ├── ReorderableUniqueStack.h │ │ │ │ └── WindowManager.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── Presentation.cpp │ │ │ ├── PresentationLifespanToTimeoutMapper.cpp │ │ │ ├── PresentationOrchestratorClient.cpp │ │ │ ├── PresentationOrchestratorClientFactory.cpp │ │ │ └── WindowManager.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── PresentationOrchestratorClientTest.cpp │ ├── PresentationOrchestratorInterfaces │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── PresentationOrchestratorInterfaces │ │ │ │ ├── PresentationInterface.h │ │ │ │ ├── PresentationObserverInterface.h │ │ │ │ ├── PresentationOrchestratorClientInterface.h │ │ │ │ ├── PresentationOrchestratorInterface.h │ │ │ │ ├── PresentationOrchestratorStateObserverInterface.h │ │ │ │ ├── PresentationOrchestratorStateTrackerInterface.h │ │ │ │ ├── PresentationOrchestratorTypes.h │ │ │ │ ├── PresentationOrchestratorWindowObserverInterface.h │ │ │ │ ├── PresentationTypes.h │ │ │ │ └── VisualTimeoutManagerInterface.h │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── acsdk │ │ │ └── PresentationOrchestratorInterfaces │ │ │ ├── MockPresentationObserver.h │ │ │ ├── MockPresentationOrchestratorStateTracker.h │ │ │ └── MockVisualTimeoutManager.h │ ├── PresentationOrchestratorStateTracker │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── acsdk │ │ │ │ └── PresentationOrchestratorStateTracker │ │ │ │ └── PresentationOrchestratorStateTrackerFactory.h │ │ ├── privateInclude │ │ │ └── acsdk │ │ │ │ └── PresentationOrchestratorStateTracker │ │ │ │ └── private │ │ │ │ └── PresentationOrchestratorStateTracker.h │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── PresentationOrchestratorStateTracker.cpp │ │ │ └── PresentationOrchestratorStateTrackerFactory.cpp │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ └── PresentationOrchestratorStateTrackerTest.cpp │ └── VisualTimeoutManager │ │ ├── CMakeLists.txt │ │ ├── include │ │ └── acsdk │ │ │ └── VisualTimeoutManager │ │ │ └── VisualTimeoutManagerFactory.h │ │ ├── privateInclude │ │ └── acsdk │ │ │ └── VisualTimeoutManager │ │ │ └── private │ │ │ └── VisualTimeoutManager.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── VisualTimeoutManager.cpp │ │ └── VisualTimeoutManagerFactory.cpp │ │ └── test │ │ ├── CMakeLists.txt │ │ ├── MockTimerFactory.h │ │ └── VisualTimeoutManagerTest.cpp ├── SDKClient │ ├── CMakeLists.txt │ ├── include │ │ └── acsdk │ │ │ └── SDKClient │ │ │ ├── Annotated.h │ │ │ ├── FeatureClientBuilderInterface.h │ │ │ ├── FeatureClientInterface.h │ │ │ ├── SDKClientBuilder.h │ │ │ ├── SDKClientRegistry.h │ │ │ └── internal │ │ │ ├── FeatureClientBuilderInterface_impl.h │ │ │ ├── SDKClientBuilder_impl.h │ │ │ ├── SDKClientRegistry_impl.h │ │ │ ├── TypeRegistry.h │ │ │ └── Utils.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── SDKClientBuilder.cpp │ │ ├── SDKClientRegistry.cpp │ │ └── TypeRegistry.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── SDKClientRegistryTest.cpp ├── acsdkCommunication │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkCommunication │ │ │ ├── AlwaysTrueCommunicationValidator.h │ │ │ ├── InMemoryCommunicationInvokeHandler.h │ │ │ └── InMemoryCommunicationPropertiesHandler.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── InMemoryCommunicationInvokeHandlerTest.cpp │ │ └── InMemoryCommunicationPropertiesHandlerTest.cpp ├── acsdkCommunicationInterfaces │ ├── CMakeLists.txt │ └── include │ │ └── acsdkCommunicationInterfaces │ │ ├── CommunicationInvokeHandlerInterface.h │ │ ├── CommunicationPropertiesHandlerInterface.h │ │ ├── CommunicationProperty.h │ │ ├── CommunicationPropertyChangeSubscriber.h │ │ ├── CommunicationPropertyValidatorInterface.h │ │ └── FunctionInvokerInterface.h ├── acsdkManufactory │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkManufactory │ │ │ ├── Annotated.h │ │ │ ├── Component.h │ │ │ ├── ComponentAccumulator.h │ │ │ ├── FactorySequencer.h │ │ │ ├── Import.h │ │ │ ├── Manufactory.h │ │ │ ├── OptionalImport.h │ │ │ └── internal │ │ │ ├── AbstractPointerCache.h │ │ │ ├── AbstractRecipe.h │ │ │ ├── ComponentAccumulator_imp.h │ │ │ ├── Component_imp.h │ │ │ ├── CookBook.h │ │ │ ├── CookBook_imp.h │ │ │ ├── MakeOptional.h │ │ │ ├── Manufactory_imp.h │ │ │ ├── RuntimeManufactory.h │ │ │ ├── RuntimeManufactory_imp.h │ │ │ ├── SharedPointerCache.h │ │ │ ├── TypeTraitsHelper.h │ │ │ ├── Utils.h │ │ │ └── WeakPointerCache.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── CookBook.cpp │ │ ├── SharedPointerCache.cpp │ │ └── WeakPointerCache.cpp │ └── test │ │ ├── CMakeLists.txt │ │ ├── ManufactoryTest.cpp │ │ └── ManufactoryUtilsTest.cpp ├── acsdkShared │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkShared │ │ │ └── SharedComponent.h │ └── src │ │ ├── CMakeLists.txt │ │ └── SharedComponent.cpp ├── acsdkShutdownManager │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkShutdownManager │ │ │ ├── ShutdownManager.h │ │ │ └── ShutdownNotifier.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── ShutdownManager.cpp │ │ └── ShutdownNotifier.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── ShutdownManagerTest.cpp ├── acsdkShutdownManagerInterfaces │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkShutdownManagerInterfaces │ │ │ ├── ShutdownManagerInterface.h │ │ │ └── ShutdownNotifierInterface.h │ └── test │ │ ├── CMakeLists.txt │ │ └── acsdkShutdownManagerInterfaces │ │ └── MockShutdownNotifier.h ├── acsdkStartupManager │ ├── CMakeLists.txt │ ├── include │ │ └── acsdkStartupManager │ │ │ ├── StartupManager.h │ │ │ └── StartupNotifier.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── StartupManager.cpp │ │ └── StartupNotifier.cpp │ └── test │ │ ├── CMakeLists.txt │ │ └── StartupManagerTest.cpp └── acsdkStartupManagerInterfaces │ ├── CMakeLists.txt │ ├── include │ └── acsdkStartupManagerInterfaces │ │ ├── RequiresStartupInterface.h │ │ ├── StartupManagerInterface.h │ │ └── StartupNotifierInterface.h │ └── test │ ├── CMakeLists.txt │ └── acsdkStartupManagerInterfaces │ └── MockStartupNotifier.h └── tools ├── Install ├── android.sh ├── androidConfig.txt ├── genConfig.sh ├── mingw.sh ├── pi.sh └── setup.sh ├── Testing.cmake └── Testing └── android_test.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /ACL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/CMakeLists.txt -------------------------------------------------------------------------------- /ACL/include/ACL/AVSConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/AVSConnectionManager.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/DownchannelHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/DownchannelHandler.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/ExchangeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/ExchangeHandler.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/HTTP2Transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/HTTP2Transport.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/HTTP2TransportFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/HTTP2TransportFactory.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/MessageRequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/MessageRequestHandler.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/MessageRequestQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/MessageRequestQueue.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/MessageRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/MessageRouter.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/MessageRouterFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/MessageRouterFactory.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/MessageRouterInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/MessageRouterInterface.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/MimeResponseSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/MimeResponseSink.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/PingHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/PingHandler.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/PostConnectInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/PostConnectInterface.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/PostConnectSequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/PostConnectSequencer.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/TransportDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/TransportDefines.h -------------------------------------------------------------------------------- /ACL/include/ACL/Transport/TransportInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/include/ACL/Transport/TransportInterface.h -------------------------------------------------------------------------------- /ACL/src/AVSConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/AVSConnectionManager.cpp -------------------------------------------------------------------------------- /ACL/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/CMakeLists.txt -------------------------------------------------------------------------------- /ACL/src/Transport/DownchannelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/DownchannelHandler.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/ExchangeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/ExchangeHandler.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/HTTP2Transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/HTTP2Transport.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/HTTP2TransportFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/HTTP2TransportFactory.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/MessageRequestHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/MessageRequestHandler.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/MessageRequestQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/MessageRequestQueue.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/MessageRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/MessageRouter.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/MessageRouterFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/MessageRouterFactory.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/MimeResponseSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/MimeResponseSink.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/PingHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/PingHandler.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/PostConnectSequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/PostConnectSequencer.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/PostConnectSequencerFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/PostConnectSequencerFactory.cpp -------------------------------------------------------------------------------- /ACL/src/Transport/TransportDefines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/src/Transport/TransportDefines.cpp -------------------------------------------------------------------------------- /ACL/test/AVSConnectionManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/AVSConnectionManagerTest.cpp -------------------------------------------------------------------------------- /ACL/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/CMakeLists.txt -------------------------------------------------------------------------------- /ACL/test/Transport/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.1 FATAL_ERROR) 2 | 3 | add_subdirectory("Common") -------------------------------------------------------------------------------- /ACL/test/Transport/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/Common/CMakeLists.txt -------------------------------------------------------------------------------- /ACL/test/Transport/Common/MockHTTP2Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/Common/MockHTTP2Connection.cpp -------------------------------------------------------------------------------- /ACL/test/Transport/Common/MockHTTP2Request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/Common/MockHTTP2Request.cpp -------------------------------------------------------------------------------- /ACL/test/Transport/Common/MockMimeResponseSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/Common/MockMimeResponseSink.cpp -------------------------------------------------------------------------------- /ACL/test/Transport/HTTP2TransportTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/HTTP2TransportTest.cpp -------------------------------------------------------------------------------- /ACL/test/Transport/MessageRequestHandlerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MessageRequestHandlerTest.cpp -------------------------------------------------------------------------------- /ACL/test/Transport/MessageRouterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MessageRouterTest.cpp -------------------------------------------------------------------------------- /ACL/test/Transport/MessageRouterTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MessageRouterTest.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockAuthDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockAuthDelegate.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockEventTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockEventTracer.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockHTTP2Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockHTTP2Connection.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockHTTP2Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockHTTP2Request.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockMessageConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockMessageConsumer.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockMessageRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockMessageRequest.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockMessageRouterObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockMessageRouterObserver.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockMimeResponseSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockMimeResponseSink.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockPostConnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockPostConnect.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockPostConnectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockPostConnectFactory.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockPostConnectObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockPostConnectObserver.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockPostConnectOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockPostConnectOperation.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockTransport.h -------------------------------------------------------------------------------- /ACL/test/Transport/MockTransportObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/MockTransportObserver.h -------------------------------------------------------------------------------- /ACL/test/Transport/PostConnectSequencerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/PostConnectSequencerTest.cpp -------------------------------------------------------------------------------- /ACL/test/Transport/TestMessageRequestObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/TestMessageRequestObserver.h -------------------------------------------------------------------------------- /ACL/test/Transport/TestableConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ACL/test/Transport/TestableConsumer.h -------------------------------------------------------------------------------- /ADSL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/CMakeLists.txt -------------------------------------------------------------------------------- /ADSL/include/ADSL/ADSLComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/include/ADSL/ADSLComponent.h -------------------------------------------------------------------------------- /ADSL/include/ADSL/DirectiveProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/include/ADSL/DirectiveProcessor.h -------------------------------------------------------------------------------- /ADSL/include/ADSL/DirectiveRouter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/include/ADSL/DirectiveRouter.h -------------------------------------------------------------------------------- /ADSL/include/ADSL/DirectiveSequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/include/ADSL/DirectiveSequencer.h -------------------------------------------------------------------------------- /ADSL/include/ADSL/MessageInterpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/include/ADSL/MessageInterpreter.h -------------------------------------------------------------------------------- /ADSL/src/ADSLComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/src/ADSLComponent.cpp -------------------------------------------------------------------------------- /ADSL/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/src/CMakeLists.txt -------------------------------------------------------------------------------- /ADSL/src/DirectiveProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/src/DirectiveProcessor.cpp -------------------------------------------------------------------------------- /ADSL/src/DirectiveRouter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/src/DirectiveRouter.cpp -------------------------------------------------------------------------------- /ADSL/src/DirectiveSequencer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/src/DirectiveSequencer.cpp -------------------------------------------------------------------------------- /ADSL/src/MessageInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/src/MessageInterpreter.cpp -------------------------------------------------------------------------------- /ADSL/test/ADSL/MockDirectiveSequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/ADSL/MockDirectiveSequencer.h -------------------------------------------------------------------------------- /ADSL/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/CMakeLists.txt -------------------------------------------------------------------------------- /ADSL/test/DirectiveProcessorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/DirectiveProcessorTest.cpp -------------------------------------------------------------------------------- /ADSL/test/DirectiveRouterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/DirectiveRouterTest.cpp -------------------------------------------------------------------------------- /ADSL/test/DirectiveSequencerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/DirectiveSequencerTest.cpp -------------------------------------------------------------------------------- /ADSL/test/MessageInterpreterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/MessageInterpreterTest.cpp -------------------------------------------------------------------------------- /ADSL/test/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/common/CMakeLists.txt -------------------------------------------------------------------------------- /ADSL/test/common/MockDirectiveHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/common/MockDirectiveHandler.cpp -------------------------------------------------------------------------------- /ADSL/test/common/MockDirectiveHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ADSL/test/common/MockDirectiveHandler.h -------------------------------------------------------------------------------- /AFML/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/CMakeLists.txt -------------------------------------------------------------------------------- /AFML/include/AFML/ActivityTrackerInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/include/AFML/ActivityTrackerInterface.h -------------------------------------------------------------------------------- /AFML/include/AFML/AudioActivityTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/include/AFML/AudioActivityTracker.h -------------------------------------------------------------------------------- /AFML/include/AFML/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/include/AFML/Channel.h -------------------------------------------------------------------------------- /AFML/include/AFML/FocusManagementComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/include/AFML/FocusManagementComponent.h -------------------------------------------------------------------------------- /AFML/include/AFML/FocusManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/include/AFML/FocusManager.h -------------------------------------------------------------------------------- /AFML/include/AFML/VisualActivityTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/include/AFML/VisualActivityTracker.h -------------------------------------------------------------------------------- /AFML/src/AudioActivityTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/src/AudioActivityTracker.cpp -------------------------------------------------------------------------------- /AFML/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/src/CMakeLists.txt -------------------------------------------------------------------------------- /AFML/src/Channel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/src/Channel.cpp -------------------------------------------------------------------------------- /AFML/src/FocusManagementComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/src/FocusManagementComponent.cpp -------------------------------------------------------------------------------- /AFML/src/FocusManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/src/FocusManager.cpp -------------------------------------------------------------------------------- /AFML/src/VisualActivityTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/src/VisualActivityTracker.cpp -------------------------------------------------------------------------------- /AFML/test/AudioActivityTrackerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/test/AudioActivityTrackerTest.cpp -------------------------------------------------------------------------------- /AFML/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/test/CMakeLists.txt -------------------------------------------------------------------------------- /AFML/test/FocusManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/test/FocusManagerTest.cpp -------------------------------------------------------------------------------- /AFML/test/VisualActivityTrackerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AFML/test/VisualActivityTrackerTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory("test") 2 | -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/AVSContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/AVSContext.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/AVSDirective.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/AVSDirective.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/AVSMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/AVSMessage.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/AlexaAssetId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/AlexaAssetId.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/CapabilityTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/CapabilityTag.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/ContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/ContentType.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/EventBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/EventBuilder.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/FocusState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/FocusState.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/PlayBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/PlayBehavior.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/PlayRequestor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/PlayRequestor.h -------------------------------------------------------------------------------- /AVSCommon/AVS/include/AVSCommon/AVS/Requester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/include/AVSCommon/AVS/Requester.h -------------------------------------------------------------------------------- /AVSCommon/AVS/src/AVSContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/AVSContext.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/AVSDirective.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/AVSDirective.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/AVSMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/AVSMessage.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/AVSMessageHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/AVSMessageHeader.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/AbstractAVSConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/AbstractAVSConnectionManager.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/AlexaClientSDKInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/AlexaClientSDKInit.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/Attachment/Attachment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/Attachment/Attachment.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/Attachment/AttachmentManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/Attachment/AttachmentManager.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/Attachment/AttachmentUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/Attachment/AttachmentUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/BlockingPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/BlockingPolicy.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/CapabilityAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/CapabilityAgent.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/CapabilityConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/CapabilityConfiguration.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/CapabilityResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/CapabilityResources.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/CapabilityTag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/CapabilityTag.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/ComponentConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/ComponentConfiguration.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/DialogUXStateAggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/DialogUXStateAggregator.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/DirectiveRoutingRule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/DirectiveRoutingRule.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/EditableMessageRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/EditableMessageRequest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/EventBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/EventBuilder.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/ExceptionEncounteredSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/ExceptionEncounteredSender.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/HandlerAndPolicy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/HandlerAndPolicy.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/MessageRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/MessageRequest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/NamespaceAndName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/NamespaceAndName.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/src/WaitableMessageRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/src/WaitableMessageRequest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/AVSContextTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/AVSContextTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/AVSDirectiveTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/AVSDirectiveTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/AVSMessageHeaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/AVSMessageHeaderTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/AlexaClientSDKInitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/AlexaClientSDKInitTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/Attachment/AttachmentTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/Attachment/AttachmentTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/Attachment/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory("Common") 2 | -------------------------------------------------------------------------------- /AVSCommon/AVS/test/Attachment/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/Attachment/Common/CMakeLists.txt -------------------------------------------------------------------------------- /AVSCommon/AVS/test/Attachment/Common/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/Attachment/Common/Common.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/Attachment/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/Attachment/Common/Common.h -------------------------------------------------------------------------------- /AVSCommon/AVS/test/BlockingPolicyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/BlockingPolicyTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/CMakeLists.txt -------------------------------------------------------------------------------- /AVSCommon/AVS/test/CapabilityAgentTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/CapabilityAgentTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/CapabilityConfigurationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/CapabilityConfigurationTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/CapabilityResourcesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/CapabilityResourcesTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/CapabilitySemanticsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/CapabilitySemanticsTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/ComponentConfigurationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/ComponentConfigurationTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/DialogUXStateAggregatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/DialogUXStateAggregatorTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/EditableMessageRequestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/EditableMessageRequestTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/EventBuilderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/EventBuilderTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/HandlerAndPolicyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/HandlerAndPolicyTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/MessageRequestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/MessageRequestTest.cpp -------------------------------------------------------------------------------- /AVSCommon/AVS/test/NamespaceAndNameTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/AVS/test/NamespaceAndNameTest.cpp -------------------------------------------------------------------------------- /AVSCommon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/CMakeLists.txt -------------------------------------------------------------------------------- /AVSCommon/SDKInterfaces/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory("test") 2 | -------------------------------------------------------------------------------- /AVSCommon/SDKInterfaces/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/SDKInterfaces/test/CMakeLists.txt -------------------------------------------------------------------------------- /AVSCommon/Utils/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory("test") 2 | -------------------------------------------------------------------------------- /AVSCommon/Utils/include/AVSCommon/Utils/CoutMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/include/AVSCommon/Utils/CoutMutex.h -------------------------------------------------------------------------------- /AVSCommon/Utils/include/AVSCommon/Utils/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/include/AVSCommon/Utils/Endian.h -------------------------------------------------------------------------------- /AVSCommon/Utils/include/AVSCommon/Utils/MediaType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/include/AVSCommon/Utils/MediaType.h -------------------------------------------------------------------------------- /AVSCommon/Utils/include/AVSCommon/Utils/Metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/include/AVSCommon/Utils/Metrics.h -------------------------------------------------------------------------------- /AVSCommon/Utils/include/AVSCommon/Utils/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/include/AVSCommon/Utils/Optional.h -------------------------------------------------------------------------------- /AVSCommon/Utils/include/AVSCommon/Utils/TypeIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/include/AVSCommon/Utils/TypeIndex.h -------------------------------------------------------------------------------- /AVSCommon/Utils/include/AVSCommon/Utils/WaitEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/include/AVSCommon/Utils/WaitEvent.h -------------------------------------------------------------------------------- /AVSCommon/Utils/include/AVSCommon/Utils/WavUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/include/AVSCommon/Utils/WavUtils.h -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Bluetooth/SDPRecords.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Bluetooth/SDPRecords.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/BluetoothEventBus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/BluetoothEventBus.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/DeviceInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/DeviceInfo.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/FileUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/FormattedAudioStreamAdapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/FormattedAudioStreamAdapter.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/HTTP2/HTTP2SendDataResult.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/HTTP2/HTTP2SendDataResult.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/ID3Tags/ID3v2Tags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/ID3Tags/ID3v2Tags.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/JSON/JSONGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/JSON/JSONGenerator.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/JSON/JSONUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/JSON/JSONUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/LibcurlUtils/CallbackData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/LibcurlUtils/CallbackData.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/LibcurlUtils/HTTPResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/LibcurlUtils/HTTPResponse.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/LibcurlUtils/HttpPost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/LibcurlUtils/HttpPost.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/LibcurlUtils/HttpPut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/LibcurlUtils/HttpPut.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/LibcurlUtils/LibcurlUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/LibcurlUtils/LibcurlUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/ConsoleLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/ConsoleLogger.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/Level.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/LogEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/LogEntry.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/LogEntryBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/LogEntryBuffer.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/LogEntryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/LogEntryStream.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/LogStringFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/LogStringFormatter.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/Logger.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/LoggerSinkManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/LoggerSinkManager.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/LoggerUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/LoggerUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/ModuleLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/ModuleLogger.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Logger/ThreadMoniker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Logger/ThreadMoniker.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/MacAddressString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/MacAddressString.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/MediaPlayer/PlaybackContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/MediaPlayer/PlaybackContext.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Metrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Metrics.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Metrics/DataPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Metrics/DataPoint.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Metrics/MetricEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Metrics/MetricEvent.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Metrics/MetricEventBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Metrics/MetricEventBuilder.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Metrics/UplData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Metrics/UplData.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/MultiTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/MultiTimer.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Power/PowerMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Power/PowerMonitor.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Power/PowerResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Power/PowerResource.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Power/WakeGuard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Power/WakeGuard.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/RequiresShutdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/RequiresShutdown.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/RetryTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/RetryTimer.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/SafeCTimeAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/SafeCTimeAccess.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Stopwatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Stopwatch.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Stream/StreamFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Stream/StreamFunctions.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Stream/Streambuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Stream/Streambuf.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/StringUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/TaskThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/TaskThread.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/ThreadPool.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Threading/Executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Threading/Executor.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Threading/ExecutorFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Threading/ExecutorFactory.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Threading/SharedExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Threading/SharedExecutor.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/TimePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/TimePoint.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/TimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/TimeUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Timer.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Timing/TimerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Timing/TimerDelegate.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/Timing/TimerDelegateFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/Timing/TimerDelegateFactory.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/UUIDGeneration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/UUIDGeneration.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/WaitEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/WaitEvent.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/WavUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/WavUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/src/WorkerThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/src/WorkerThread.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/CMakeLists.txt -------------------------------------------------------------------------------- /AVSCommon/Utils/test/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/Common/CMakeLists.txt -------------------------------------------------------------------------------- /AVSCommon/Utils/test/Common/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/Common/Common.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/Common/MimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/Common/MimeUtils.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/Common/MockMediaPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/Common/MockMediaPlayer.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/Common/TestTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/Common/TestTrace.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/ConfigurationNodeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/ConfigurationNodeTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/DataPointTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/DataPointTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/DeviceInfoTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/DeviceInfoTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/EndianTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/EndianTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/ExecutorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/ExecutorTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/ExecutorTestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/ExecutorTestUtils.h -------------------------------------------------------------------------------- /AVSCommon/Utils/test/FileSystemUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/FileSystemUtilsTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/GmockExtensionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/GmockExtensionTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/HTTPContentTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/HTTPContentTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/ID3v2TagsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/ID3v2TagsTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/JSONGeneratorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/JSONGeneratorTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/JSONUtilTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/JSONUtilTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/LibCurlHTTP2ConnectionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/LibCurlHTTP2ConnectionTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/LogEntryStreamTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/LogEntryStreamTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/LoggerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/LoggerTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/MIMEParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/MIMEParserTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/MacAddressStringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/MacAddressStringTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/MetricEventTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/MetricEventTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/MultiTimerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/MultiTimerTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/RequiresShutdownTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/RequiresShutdownTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/SafeTimeAccessTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/SafeTimeAccessTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/SharedDataStreamTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/SharedDataStreamTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/StopwatchTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/StopwatchTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/StreamFunctionsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/StreamFunctionsTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/StreambufTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/StreambufTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/StringUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/StringUtilsTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/TaskThreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/TaskThreadTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/ThreadPoolTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/ThreadPoolTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/TimeUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/TimeUtilsTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/TimerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/TimerTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/UUIDGenerationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/UUIDGenerationTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/WorkerThreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/WorkerThreadTest.cpp -------------------------------------------------------------------------------- /AVSCommon/Utils/test/acsdk/Test/GmockExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSCommon/Utils/test/acsdk/Test/GmockExtensions.h -------------------------------------------------------------------------------- /AVSGatewayManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSGatewayManager/CMakeLists.txt -------------------------------------------------------------------------------- /AVSGatewayManager/src/AVSGatewayManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSGatewayManager/src/AVSGatewayManager.cpp -------------------------------------------------------------------------------- /AVSGatewayManager/src/AuthRefreshedObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSGatewayManager/src/AuthRefreshedObserver.cpp -------------------------------------------------------------------------------- /AVSGatewayManager/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSGatewayManager/src/CMakeLists.txt -------------------------------------------------------------------------------- /AVSGatewayManager/test/AVSGatewayManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSGatewayManager/test/AVSGatewayManagerTest.cpp -------------------------------------------------------------------------------- /AVSGatewayManager/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/AVSGatewayManager/test/CMakeLists.txt -------------------------------------------------------------------------------- /ApplicationUtilities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ApplicationUtilities/CMakeLists.txt -------------------------------------------------------------------------------- /ApplicationUtilities/DefaultClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ApplicationUtilities/DefaultClient/CMakeLists.txt -------------------------------------------------------------------------------- /ApplicationUtilities/Resources/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.1 FATAL_ERROR) 2 | 3 | add_subdirectory("Audio") 4 | -------------------------------------------------------------------------------- /ApplicationUtilities/SDKComponent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ApplicationUtilities/SDKComponent/CMakeLists.txt -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/CMakeLists.txt -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/src/BlueZHFP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/src/BlueZHFP.cpp -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/src/BlueZHID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/src/BlueZHID.cpp -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/src/BlueZSPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/src/BlueZSPP.cpp -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/src/CMakeLists.txt -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/src/DBusProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/src/DBusProxy.cpp -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/src/MPRISPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/src/MPRISPlayer.cpp -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/src/MediaContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/src/MediaContext.cpp -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/src/PairingAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/src/PairingAgent.cpp -------------------------------------------------------------------------------- /BluetoothImplementations/BlueZ/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/BlueZ/test/CMakeLists.txt -------------------------------------------------------------------------------- /BluetoothImplementations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/BluetoothImplementations/CMakeLists.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CapabilitiesDelegate/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilitiesDelegate/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilitiesDelegate/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilitiesDelegate/src/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilitiesDelegate/src/CapabilitiesDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilitiesDelegate/src/CapabilitiesDelegate.cpp -------------------------------------------------------------------------------- /CapabilitiesDelegate/src/DiscoveryEventSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilitiesDelegate/src/DiscoveryEventSender.cpp -------------------------------------------------------------------------------- /CapabilitiesDelegate/src/Utils/DiscoveryUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilitiesDelegate/src/Utils/DiscoveryUtils.cpp -------------------------------------------------------------------------------- /CapabilitiesDelegate/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilitiesDelegate/test/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilitiesDelegate/test/MockAuthDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilitiesDelegate/test/MockAuthDelegate.h -------------------------------------------------------------------------------- /CapabilitiesDelegate/test/MockCapabilitiesStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilitiesDelegate/test/MockCapabilitiesStorage.h -------------------------------------------------------------------------------- /CapabilityAgents/AIP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/AIP/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/AIP/include/AIP/ASRProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/AIP/include/AIP/ASRProfile.h -------------------------------------------------------------------------------- /CapabilityAgents/AIP/include/AIP/AudioProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/AIP/include/AIP/AudioProvider.h -------------------------------------------------------------------------------- /CapabilityAgents/AIP/include/AIP/Initiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/AIP/include/AIP/Initiator.h -------------------------------------------------------------------------------- /CapabilityAgents/AIP/src/AudioInputProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/AIP/src/AudioInputProcessor.cpp -------------------------------------------------------------------------------- /CapabilityAgents/AIP/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/AIP/src/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/AIP/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/AIP/test/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/AIP/test/MockObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/AIP/test/MockObserver.h -------------------------------------------------------------------------------- /CapabilityAgents/Alexa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/Alexa/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/Alexa/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/Alexa/src/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/Alexa/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/Alexa/test/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/ApiGateway/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/ApiGateway/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/ApiGateway/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/ApiGateway/src/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/ApiGateway/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/ApiGateway/test/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/InteractionModel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/InteractionModel/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/ModeController/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/ModeController/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/ModeController/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/ModeController/src/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/ModeController/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/ModeController/test/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/PlaybackController/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/PlaybackController/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/PowerController/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/PowerController/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/PowerController/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/PowerController/src/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/RangeController/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/RangeController/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/RangeController/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/RangeController/src/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/SpeakerManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/SpeakerManager/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/SpeechSynthesizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/SpeechSynthesizer/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/System/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/System/a4btest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/a4btest/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/System/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/src/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/System/src/LocaleHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/src/LocaleHandler.cpp -------------------------------------------------------------------------------- /CapabilityAgents/System/src/ReportStateHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/src/ReportStateHandler.cpp -------------------------------------------------------------------------------- /CapabilityAgents/System/src/SoftwareInfoSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/src/SoftwareInfoSender.cpp -------------------------------------------------------------------------------- /CapabilityAgents/System/src/SystemComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/src/SystemComponent.cpp -------------------------------------------------------------------------------- /CapabilityAgents/System/src/TimeZoneHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/src/TimeZoneHandler.cpp -------------------------------------------------------------------------------- /CapabilityAgents/System/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/test/CMakeLists.txt -------------------------------------------------------------------------------- /CapabilityAgents/System/test/LocaleHandlerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/test/LocaleHandlerTest.cpp -------------------------------------------------------------------------------- /CapabilityAgents/System/test/SoftwareInfoTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/System/test/SoftwareInfoTest.cpp -------------------------------------------------------------------------------- /CapabilityAgents/ToggleController/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CapabilityAgents/ToggleController/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/Component/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory("src") -------------------------------------------------------------------------------- /Captions/Component/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Component/src/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/Component/src/CaptionsComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Component/src/CaptionsComponent.cpp -------------------------------------------------------------------------------- /Captions/Implementation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/Implementation/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/src/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/Implementation/src/CaptionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/src/CaptionManager.cpp -------------------------------------------------------------------------------- /Captions/Implementation/src/SystemClockDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/src/SystemClockDelay.cpp -------------------------------------------------------------------------------- /Captions/Implementation/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/test/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/Implementation/test/CaptionManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/test/CaptionManagerTest.cpp -------------------------------------------------------------------------------- /Captions/Implementation/test/MockCaptionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/test/MockCaptionManager.h -------------------------------------------------------------------------------- /Captions/Implementation/test/MockCaptionParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/test/MockCaptionParser.h -------------------------------------------------------------------------------- /Captions/Implementation/test/MockCaptionPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/test/MockCaptionPresenter.h -------------------------------------------------------------------------------- /Captions/Implementation/test/MockSystemClockDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Implementation/test/MockSystemClockDelay.h -------------------------------------------------------------------------------- /Captions/Interface/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/Interface/include/Captions/CaptionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/include/Captions/CaptionData.h -------------------------------------------------------------------------------- /Captions/Interface/include/Captions/CaptionFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/include/Captions/CaptionFormat.h -------------------------------------------------------------------------------- /Captions/Interface/include/Captions/CaptionFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/include/Captions/CaptionFrame.h -------------------------------------------------------------------------------- /Captions/Interface/include/Captions/CaptionLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/include/Captions/CaptionLine.h -------------------------------------------------------------------------------- /Captions/Interface/include/Captions/TextStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/include/Captions/TextStyle.h -------------------------------------------------------------------------------- /Captions/Interface/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/src/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/Interface/src/CaptionData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/src/CaptionData.cpp -------------------------------------------------------------------------------- /Captions/Interface/src/CaptionFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/src/CaptionFrame.cpp -------------------------------------------------------------------------------- /Captions/Interface/src/CaptionLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/src/CaptionLine.cpp -------------------------------------------------------------------------------- /Captions/Interface/src/TextStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/src/TextStyle.cpp -------------------------------------------------------------------------------- /Captions/Interface/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/test/CMakeLists.txt -------------------------------------------------------------------------------- /Captions/Interface/test/CaptionDataTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/test/CaptionDataTest.cpp -------------------------------------------------------------------------------- /Captions/Interface/test/CaptionFormatAvsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/test/CaptionFormatAvsTest.cpp -------------------------------------------------------------------------------- /Captions/Interface/test/CaptionFormatUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/test/CaptionFormatUtilsTest.cpp -------------------------------------------------------------------------------- /Captions/Interface/test/CaptionFrameTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/test/CaptionFrameTest.cpp -------------------------------------------------------------------------------- /Captions/Interface/test/CaptionLineTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/test/CaptionLineTest.cpp -------------------------------------------------------------------------------- /Captions/Interface/test/TextStyleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Captions/Interface/test/TextStyleTest.cpp -------------------------------------------------------------------------------- /CertifiedSender/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/CMakeLists.txt -------------------------------------------------------------------------------- /CertifiedSender/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/src/CMakeLists.txt -------------------------------------------------------------------------------- /CertifiedSender/src/CertifiedSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/src/CertifiedSender.cpp -------------------------------------------------------------------------------- /CertifiedSender/src/SQLiteMessageStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/src/SQLiteMessageStorage.cpp -------------------------------------------------------------------------------- /CertifiedSender/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/test/CMakeLists.txt -------------------------------------------------------------------------------- /CertifiedSender/test/CertifiedSenderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/test/CertifiedSenderTest.cpp -------------------------------------------------------------------------------- /CertifiedSender/test/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/test/Common/CMakeLists.txt -------------------------------------------------------------------------------- /CertifiedSender/test/Common/MockCertifiedSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/test/Common/MockCertifiedSender.cpp -------------------------------------------------------------------------------- /CertifiedSender/test/MessageStorageTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/test/MessageStorageTest.cpp -------------------------------------------------------------------------------- /CertifiedSender/test/MockCertifiedSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/test/MockCertifiedSender.h -------------------------------------------------------------------------------- /CertifiedSender/test/MockMessageStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/CertifiedSender/test/MockMessageStorage.h -------------------------------------------------------------------------------- /ContextManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ContextManager/CMakeLists.txt -------------------------------------------------------------------------------- /ContextManager/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ContextManager/src/CMakeLists.txt -------------------------------------------------------------------------------- /ContextManager/src/ContextManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ContextManager/src/ContextManager.cpp -------------------------------------------------------------------------------- /ContextManager/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ContextManager/test/CMakeLists.txt -------------------------------------------------------------------------------- /ContextManager/test/ContextManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ContextManager/test/ContextManagerTest.cpp -------------------------------------------------------------------------------- /Diagnostics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/CMakeLists.txt -------------------------------------------------------------------------------- /Diagnostics/include/Diagnostics/DiagnosticsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/include/Diagnostics/DiagnosticsUtils.h -------------------------------------------------------------------------------- /Diagnostics/src/AudioInjectorMicrophone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/src/AudioInjectorMicrophone.cpp -------------------------------------------------------------------------------- /Diagnostics/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/src/CMakeLists.txt -------------------------------------------------------------------------------- /Diagnostics/src/DevicePropertyAggregator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/src/DevicePropertyAggregator.cpp -------------------------------------------------------------------------------- /Diagnostics/src/DeviceProtocolTracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/src/DeviceProtocolTracer.cpp -------------------------------------------------------------------------------- /Diagnostics/src/DiagnosticsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/src/DiagnosticsUtils.cpp -------------------------------------------------------------------------------- /Diagnostics/src/FileBasedAudioInjector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/src/FileBasedAudioInjector.cpp -------------------------------------------------------------------------------- /Diagnostics/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/test/CMakeLists.txt -------------------------------------------------------------------------------- /Diagnostics/test/DevicePropertyAggregatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/test/DevicePropertyAggregatorTest.cpp -------------------------------------------------------------------------------- /Diagnostics/test/DeviceProtocolTracerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Diagnostics/test/DeviceProtocolTracerTest.cpp -------------------------------------------------------------------------------- /Endpoints/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/CMakeLists.txt -------------------------------------------------------------------------------- /Endpoints/include/Endpoints/Endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/include/Endpoints/Endpoint.h -------------------------------------------------------------------------------- /Endpoints/include/Endpoints/EndpointBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/include/Endpoints/EndpointBuilder.h -------------------------------------------------------------------------------- /Endpoints/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/src/CMakeLists.txt -------------------------------------------------------------------------------- /Endpoints/src/DefaultEndpointBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/src/DefaultEndpointBuilder.cpp -------------------------------------------------------------------------------- /Endpoints/src/Endpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/src/Endpoint.cpp -------------------------------------------------------------------------------- /Endpoints/src/EndpointAttributeValidation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/src/EndpointAttributeValidation.cpp -------------------------------------------------------------------------------- /Endpoints/src/EndpointBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/src/EndpointBuilder.cpp -------------------------------------------------------------------------------- /Endpoints/src/EndpointRegistrationManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/src/EndpointRegistrationManager.cpp -------------------------------------------------------------------------------- /Endpoints/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/test/CMakeLists.txt -------------------------------------------------------------------------------- /Endpoints/test/DefaultEndpointBuilderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/test/DefaultEndpointBuilderTest.cpp -------------------------------------------------------------------------------- /Endpoints/test/EndpointAttributeValidationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/test/EndpointAttributeValidationTest.cpp -------------------------------------------------------------------------------- /Endpoints/test/EndpointBuilderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/test/EndpointBuilderTest.cpp -------------------------------------------------------------------------------- /Endpoints/test/EndpointRegistrationManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/test/EndpointRegistrationManagerTest.cpp -------------------------------------------------------------------------------- /Endpoints/test/EndpointTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Endpoints/test/EndpointTest.cpp -------------------------------------------------------------------------------- /Integration/AlexaClientSDKConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Integration/AlexaClientSDKConfig.json -------------------------------------------------------------------------------- /InterruptModel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/InterruptModel/CMakeLists.txt -------------------------------------------------------------------------------- /InterruptModel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/InterruptModel/LICENSE -------------------------------------------------------------------------------- /InterruptModel/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/InterruptModel/src/CMakeLists.txt -------------------------------------------------------------------------------- /InterruptModel/src/InterruptModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/InterruptModel/src/InterruptModel.cpp -------------------------------------------------------------------------------- /InterruptModel/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/InterruptModel/test/CMakeLists.txt -------------------------------------------------------------------------------- /InterruptModel/test/InterruptModelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/InterruptModel/test/InterruptModelTest.cpp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MediaPlayer/.gitignore: -------------------------------------------------------------------------------- 1 | /ReggaeMediaPlayer 2 | -------------------------------------------------------------------------------- /MediaPlayer/AndroidSLESMediaPlayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/MediaPlayer/AndroidSLESMediaPlayer/CMakeLists.txt -------------------------------------------------------------------------------- /MediaPlayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/MediaPlayer/CMakeLists.txt -------------------------------------------------------------------------------- /MediaPlayer/GStreamerMediaPlayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/MediaPlayer/GStreamerMediaPlayer/CMakeLists.txt -------------------------------------------------------------------------------- /MediaPlayer/GStreamerMediaPlayer/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/MediaPlayer/GStreamerMediaPlayer/src/CMakeLists.txt -------------------------------------------------------------------------------- /MediaPlayer/GStreamerMediaPlayer/src/Normalizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/MediaPlayer/GStreamerMediaPlayer/src/Normalizer.cpp -------------------------------------------------------------------------------- /MediaPlayer/inputs/fox_dog.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/MediaPlayer/inputs/fox_dog.mp3 -------------------------------------------------------------------------------- /Metrics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/CMakeLists.txt -------------------------------------------------------------------------------- /Metrics/MetricRecorder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/MetricRecorder/CMakeLists.txt -------------------------------------------------------------------------------- /Metrics/MetricRecorder/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/MetricRecorder/src/CMakeLists.txt -------------------------------------------------------------------------------- /Metrics/MetricRecorder/src/MetricRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/MetricRecorder/src/MetricRecorder.cpp -------------------------------------------------------------------------------- /Metrics/SampleMetricSink/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/SampleMetricSink/CMakeLists.txt -------------------------------------------------------------------------------- /Metrics/SampleMetricSink/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/SampleMetricSink/src/CMakeLists.txt -------------------------------------------------------------------------------- /Metrics/UplCalculator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/UplCalculator/CMakeLists.txt -------------------------------------------------------------------------------- /Metrics/UplCalculator/src/BaseUplCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/UplCalculator/src/BaseUplCalculator.cpp -------------------------------------------------------------------------------- /Metrics/UplCalculator/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/UplCalculator/src/CMakeLists.txt -------------------------------------------------------------------------------- /Metrics/UplCalculator/src/MediaUplCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/UplCalculator/src/MediaUplCalculator.cpp -------------------------------------------------------------------------------- /Metrics/UplCalculator/src/TtsUplCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/UplCalculator/src/TtsUplCalculator.cpp -------------------------------------------------------------------------------- /Metrics/UplCalculator/src/UplMetricSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Metrics/UplCalculator/src/UplMetricSink.cpp -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /PlaylistParser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/CMakeLists.txt -------------------------------------------------------------------------------- /PlaylistParser/inputs/sample.m3u8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/inputs/sample.m3u8 -------------------------------------------------------------------------------- /PlaylistParser/inputs/sample2.m3u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/inputs/sample2.m3u -------------------------------------------------------------------------------- /PlaylistParser/inputs/sample3.pls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/inputs/sample3.pls -------------------------------------------------------------------------------- /PlaylistParser/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/src/CMakeLists.txt -------------------------------------------------------------------------------- /PlaylistParser/src/ContentDecrypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/src/ContentDecrypter.cpp -------------------------------------------------------------------------------- /PlaylistParser/src/FFMpegInputBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/src/FFMpegInputBuffer.cpp -------------------------------------------------------------------------------- /PlaylistParser/src/Id3TagsRemover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/src/Id3TagsRemover.cpp -------------------------------------------------------------------------------- /PlaylistParser/src/IterativePlaylistParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/src/IterativePlaylistParser.cpp -------------------------------------------------------------------------------- /PlaylistParser/src/M3UParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/src/M3UParser.cpp -------------------------------------------------------------------------------- /PlaylistParser/src/PlaylistParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/src/PlaylistParser.cpp -------------------------------------------------------------------------------- /PlaylistParser/src/PlaylistUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/src/PlaylistUtils.cpp -------------------------------------------------------------------------------- /PlaylistParser/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/test/CMakeLists.txt -------------------------------------------------------------------------------- /PlaylistParser/test/ContentDecrypterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/test/ContentDecrypterTest.cpp -------------------------------------------------------------------------------- /PlaylistParser/test/Id3TagsRemoverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/test/Id3TagsRemoverTest.cpp -------------------------------------------------------------------------------- /PlaylistParser/test/M3UParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/test/M3UParserTest.cpp -------------------------------------------------------------------------------- /PlaylistParser/test/PlaylistParserTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/test/PlaylistParserTest.cpp -------------------------------------------------------------------------------- /PlaylistParser/test/PlaylistUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/PlaylistParser/test/PlaylistUtilsTest.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SampleApplications/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/SampleApplications/CMakeLists.txt -------------------------------------------------------------------------------- /SampleApplications/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/SampleApplications/Common/CMakeLists.txt -------------------------------------------------------------------------------- /SampleApplications/IPCServerSampleApplication/ThirdParty/googletest-release-1.8.0/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SampleApplications/IPCServerSampleApplication/ThirdParty/googletest-release-1.8.0/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SampleApplications/IPCServerSampleApplication/ThirdParty/googletest-release-1.8.0/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /SampleApplications/IPCServerSampleApplication/ThirdParty/googletest-release-1.8.0/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/CMakeLists.txt -------------------------------------------------------------------------------- /Settings/include/Settings/SetSettingResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/SetSettingResult.h -------------------------------------------------------------------------------- /Settings/include/Settings/Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/Setting.h -------------------------------------------------------------------------------- /Settings/include/Settings/SettingCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/SettingCallbacks.h -------------------------------------------------------------------------------- /Settings/include/Settings/SettingEventMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/SettingEventMetadata.h -------------------------------------------------------------------------------- /Settings/include/Settings/SettingEventSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/SettingEventSender.h -------------------------------------------------------------------------------- /Settings/include/Settings/SettingInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/SettingInterface.h -------------------------------------------------------------------------------- /Settings/include/Settings/SettingStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/SettingStatus.h -------------------------------------------------------------------------------- /Settings/include/Settings/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/SettingsManager.h -------------------------------------------------------------------------------- /Settings/include/Settings/Types/NetworkInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/include/Settings/Types/NetworkInfo.h -------------------------------------------------------------------------------- /Settings/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/CMakeLists.txt -------------------------------------------------------------------------------- /Settings/src/CloudControlledSettingProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/CloudControlledSettingProtocol.cpp -------------------------------------------------------------------------------- /Settings/src/DeviceControlledSettingProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/DeviceControlledSettingProtocol.cpp -------------------------------------------------------------------------------- /Settings/src/SettingConnectionObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/SettingConnectionObserver.cpp -------------------------------------------------------------------------------- /Settings/src/SettingEventRequestObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/SettingEventRequestObserver.cpp -------------------------------------------------------------------------------- /Settings/src/SettingEventSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/SettingEventSender.cpp -------------------------------------------------------------------------------- /Settings/src/SharedAVSSettingProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/SharedAVSSettingProtocol.cpp -------------------------------------------------------------------------------- /Settings/src/Types/LocaleWakeWordsSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/Types/LocaleWakeWordsSetting.cpp -------------------------------------------------------------------------------- /Settings/src/Types/NetworkInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/src/Types/NetworkInfo.cpp -------------------------------------------------------------------------------- /Settings/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/CMakeLists.txt -------------------------------------------------------------------------------- /Settings/test/LocaleWakeWordsSettingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/LocaleWakeWordsSettingTest.cpp -------------------------------------------------------------------------------- /Settings/test/NetworkInfoTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/NetworkInfoTest.cpp -------------------------------------------------------------------------------- /Settings/test/SQLiteDeviceSettingStorageTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/SQLiteDeviceSettingStorageTest.cpp -------------------------------------------------------------------------------- /Settings/test/SettingCallbackAdapterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/SettingCallbackAdapterTest.cpp -------------------------------------------------------------------------------- /Settings/test/SettingCallbacksTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/SettingCallbacksTest.cpp -------------------------------------------------------------------------------- /Settings/test/SettingEventSenderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/SettingEventSenderTest.cpp -------------------------------------------------------------------------------- /Settings/test/SettingStringConversionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/SettingStringConversionTest.cpp -------------------------------------------------------------------------------- /Settings/test/SettingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/SettingTest.cpp -------------------------------------------------------------------------------- /Settings/test/Settings/MockSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/Settings/MockSetting.h -------------------------------------------------------------------------------- /Settings/test/Settings/MockSettingEventSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/Settings/MockSettingEventSender.h -------------------------------------------------------------------------------- /Settings/test/Settings/MockSettingObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/Settings/MockSettingObserver.h -------------------------------------------------------------------------------- /Settings/test/Settings/MockSettingProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/Settings/MockSettingProtocol.h -------------------------------------------------------------------------------- /Settings/test/SettingsManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/SettingsManagerTest.cpp -------------------------------------------------------------------------------- /Settings/test/SharedAVSSettingProtocolTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Settings/test/SharedAVSSettingProtocolTest.cpp -------------------------------------------------------------------------------- /Storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Storage/CMakeLists.txt -------------------------------------------------------------------------------- /Storage/SQLiteStorage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Storage/SQLiteStorage/CMakeLists.txt -------------------------------------------------------------------------------- /Storage/SQLiteStorage/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Storage/SQLiteStorage/src/CMakeLists.txt -------------------------------------------------------------------------------- /Storage/SQLiteStorage/src/SQLiteDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Storage/SQLiteStorage/src/SQLiteDatabase.cpp -------------------------------------------------------------------------------- /Storage/SQLiteStorage/src/SQLiteMiscStorage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Storage/SQLiteStorage/src/SQLiteMiscStorage.cpp -------------------------------------------------------------------------------- /Storage/SQLiteStorage/src/SQLiteStatement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Storage/SQLiteStorage/src/SQLiteStatement.cpp -------------------------------------------------------------------------------- /Storage/SQLiteStorage/src/SQLiteUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Storage/SQLiteStorage/src/SQLiteUtils.cpp -------------------------------------------------------------------------------- /Storage/SQLiteStorage/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/Storage/SQLiteStorage/test/CMakeLists.txt -------------------------------------------------------------------------------- /SynchronizeStateSender/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/SynchronizeStateSender/CMakeLists.txt -------------------------------------------------------------------------------- /SynchronizeStateSender/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/SynchronizeStateSender/src/CMakeLists.txt -------------------------------------------------------------------------------- /SynchronizeStateSender/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/SynchronizeStateSender/test/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/.clang-format -------------------------------------------------------------------------------- /ThirdParty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/MultipartParser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/MultipartParser/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/MultipartParser/MultipartParser/.gitignore: -------------------------------------------------------------------------------- 1 | *.dSYM 2 | multipart 3 | -------------------------------------------------------------------------------- /ThirdParty/bluez-alsa/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.1 FATAL_ERROR) 2 | project(BlueZAlsa LANGUAGES CXX) 3 | -------------------------------------------------------------------------------- /ThirdParty/bluez-alsa/bluez-alsa/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/bluez-alsa/bluez-alsa/LICENSE.txt -------------------------------------------------------------------------------- /ThirdParty/bluez-alsa/bluez-alsa/a2dp-rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/bluez-alsa/bluez-alsa/a2dp-rtp.h -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/googletest-release-1.8.0/.gitignore -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/googletest-release-1.8.0/.travis.yml -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/googletest-release-1.8.0/README.md -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/googletest-release-1.8.0/appveyor.yml -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/googlemock/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/googletest/.gitignore: -------------------------------------------------------------------------------- 1 | # python 2 | *.pyc 3 | -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/googletest/build-aux/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ThirdParty/googletest-release-1.8.0/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/googletest-release-1.8.0/travis.sh -------------------------------------------------------------------------------- /ThirdParty/googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/googletest.cmake -------------------------------------------------------------------------------- /ThirdParty/pkcs11-2.40/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/pkcs11-2.40/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/pkcs11-2.40/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/pkcs11-2.40/NOTICE.txt -------------------------------------------------------------------------------- /ThirdParty/pkcs11-2.40/include/pkcs11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/pkcs11-2.40/include/pkcs11.h -------------------------------------------------------------------------------- /ThirdParty/pkcs11-2.40/include/pkcs11f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/pkcs11-2.40/include/pkcs11f.h -------------------------------------------------------------------------------- /ThirdParty/pkcs11-2.40/include/pkcs11t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/pkcs11-2.40/include/pkcs11t.h -------------------------------------------------------------------------------- /ThirdParty/rapidjson/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/CMakeLists.txt -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/rapidjson-1.1.0/.gitmodules -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/rapidjson-1.1.0/.travis.yml -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/bin/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/doc/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/rapidjson-1.1.0/doc/dom.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/doc/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/rapidjson-1.1.0/doc/faq.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/doc/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/rapidjson-1.1.0/doc/npm.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/doc/sax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/rapidjson-1.1.0/doc/sax.md -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/rapidjson-1.1.0/license.txt -------------------------------------------------------------------------------- /ThirdParty/rapidjson/rapidjson-1.1.0/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/ThirdParty/rapidjson/rapidjson-1.1.0/readme.md -------------------------------------------------------------------------------- /applications/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/applications/CMakeLists.txt -------------------------------------------------------------------------------- /applications/FeatureClients/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/applications/FeatureClients/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/APLCapabilityCommon/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/APLCapabilityCommon/.clang-format -------------------------------------------------------------------------------- /capabilities/APLCapabilityCommon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/APLCapabilityCommon/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/Alerts/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Alerts/.clang-format -------------------------------------------------------------------------------- /capabilities/Alerts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Alerts/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/Alerts/acsdkAlerts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Alerts/acsdkAlerts/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/Alerts/acsdkAlerts/src/Alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Alerts/acsdkAlerts/src/Alarm.cpp -------------------------------------------------------------------------------- /capabilities/Alerts/acsdkAlerts/src/Alert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Alerts/acsdkAlerts/src/Alert.cpp -------------------------------------------------------------------------------- /capabilities/Alerts/acsdkAlerts/src/Reminder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Alerts/acsdkAlerts/src/Reminder.cpp -------------------------------------------------------------------------------- /capabilities/Alerts/acsdkAlerts/src/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Alerts/acsdkAlerts/src/Timer.cpp -------------------------------------------------------------------------------- /capabilities/AlexaKeypadController/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaKeypadController/.clang-format -------------------------------------------------------------------------------- /capabilities/AlexaLauncher/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaLauncher/.clang-format -------------------------------------------------------------------------------- /capabilities/AlexaLauncher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaLauncher/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/AlexaPresentation/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaPresentation/.clang-format -------------------------------------------------------------------------------- /capabilities/AlexaPresentation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaPresentation/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/AlexaPresentationAPL/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaPresentationAPL/.clang-format -------------------------------------------------------------------------------- /capabilities/AlexaPresentationAPL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaPresentationAPL/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/AlexaRecordController/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaRecordController/.clang-format -------------------------------------------------------------------------------- /capabilities/AlexaSeekController/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaSeekController/.clang-format -------------------------------------------------------------------------------- /capabilities/AlexaSeekController/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaSeekController/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/AlexaVideoCommon/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaVideoCommon/.clang-format -------------------------------------------------------------------------------- /capabilities/AlexaVideoCommon/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.1 FATAL_ERROR) 2 | add_subdirectory("VideoContent") 3 | -------------------------------------------------------------------------------- /capabilities/AlexaVideoRecorder/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaVideoRecorder/.clang-format -------------------------------------------------------------------------------- /capabilities/AlexaVideoRecorder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AlexaVideoRecorder/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/AssetManager/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AssetManager/.clang-format -------------------------------------------------------------------------------- /capabilities/AssetManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AssetManager/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/AudioPlayer/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AudioPlayer/.clang-format -------------------------------------------------------------------------------- /capabilities/AudioPlayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/AudioPlayer/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/Bluetooth/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Bluetooth/.clang-format -------------------------------------------------------------------------------- /capabilities/Bluetooth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Bluetooth/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/DavsClient/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/DavsClient/.clang-format -------------------------------------------------------------------------------- /capabilities/DavsClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/DavsClient/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/DeviceSetup/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/DeviceSetup/.clang-format -------------------------------------------------------------------------------- /capabilities/DeviceSetup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/DeviceSetup/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/DoNotDisturb/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/DoNotDisturb/.clang-format -------------------------------------------------------------------------------- /capabilities/DoNotDisturb/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.0 FATAL_ERROR) 2 | 3 | add_subdirectory("acsdkDoNotDisturb") -------------------------------------------------------------------------------- /capabilities/Equalizer/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Equalizer/.clang-format -------------------------------------------------------------------------------- /capabilities/Equalizer/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /capabilities/Equalizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Equalizer/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/ExternalMediaPlayer/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/ExternalMediaPlayer/.clang-format -------------------------------------------------------------------------------- /capabilities/ExternalMediaPlayer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/ExternalMediaPlayer/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/InputController/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/InputController/.clang-format -------------------------------------------------------------------------------- /capabilities/InputController/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/InputController/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/LiveViewController/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/LiveViewController/.clang-format -------------------------------------------------------------------------------- /capabilities/LiveViewController/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/LiveViewController/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/MultiRoomMusic/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/MultiRoomMusic/.clang-format -------------------------------------------------------------------------------- /capabilities/MultiRoomMusic/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.0 FATAL_ERROR) 2 | 3 | add_subdirectory("acsdkMultiRoomMusic") -------------------------------------------------------------------------------- /capabilities/Notifications/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Notifications/.clang-format -------------------------------------------------------------------------------- /capabilities/Notifications/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /capabilities/Notifications/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/Notifications/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/TemplateRuntime/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/TemplateRuntime/.clang-format -------------------------------------------------------------------------------- /capabilities/TemplateRuntime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/TemplateRuntime/CMakeLists.txt -------------------------------------------------------------------------------- /capabilities/VisualCharacteristics/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/capabilities/VisualCharacteristics/.clang-format -------------------------------------------------------------------------------- /cmakeBuild/BuildDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/BuildDefaults.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/A4B.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/A4B.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/ACSUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/ACSUtils.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Android.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Android.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/AssetManager.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/AssetManager.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/AuthorizationManager.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/AuthorizationManager.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Bluetooth.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Bluetooth.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/BuildOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/BuildOptions.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Captions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Captions.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Ccache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Ccache.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/CodeCoverage/CodeCoverage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/CodeCoverage/CodeCoverage.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/CodeCoverage/postCTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/CodeCoverage/postCTest.sh -------------------------------------------------------------------------------- /cmakeBuild/cmake/CodeCoverage/preCTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/CodeCoverage/preCTest.sh -------------------------------------------------------------------------------- /cmakeBuild/cmake/Comms.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Comms.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Crypto.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Crypto.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Curl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Curl.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/CustomSDSTraits.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/CustomSDSTraits.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/DefaultLibNames.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/DefaultLibNames.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Diagnostics.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Diagnostics.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/DisallowOutOfSourceBuilds.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/DisallowOutOfSourceBuilds.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/EndpointControllers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/EndpointControllers.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/EndpointVideoControllers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/EndpointVideoControllers.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/ExtensionPath.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/ExtensionPath.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/FFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/FFmpeg.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/FileSystemUtils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/FileSystemUtils.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/GeneratePkgConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/GeneratePkgConfig.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/KeywordDetector.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/KeywordDetector.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/LibArchive.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/LibArchive.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/LocalDucking.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/LocalDucking.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Logger.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Logger.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/LowPowerMode.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/LowPowerMode.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/MC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/MC.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/MCC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/MCC.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/MRM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/MRM.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/MediaPlayer.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/MediaPlayer.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Metrics.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Metrics.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Opus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Opus.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/PCC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/PCC.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/PKCS11.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/PKCS11.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/PackageConfigs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/PackageConfigs.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Platforms.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Platforms.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/PortAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/PortAudio.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/PrepareInstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/PrepareInstall.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/RTCSC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/RTCSC.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Rapidjson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Rapidjson.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Rpath.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Rpath.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/SampleApplications.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/SampleApplications.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/Sqlite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/Sqlite.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/TestOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/TestOptions.cmake -------------------------------------------------------------------------------- /cmakeBuild/cmake/UseRTTI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/cmakeBuild/cmake/UseRTTI.cmake -------------------------------------------------------------------------------- /core/AudioEncoder/AudioEncoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/AudioEncoder/AudioEncoder/CMakeLists.txt -------------------------------------------------------------------------------- /core/AudioEncoder/AudioEncoder/test/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | discover_unit_tests("" acsdkAudioEncoder) 2 | -------------------------------------------------------------------------------- /core/AudioEncoder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/AudioEncoder/CMakeLists.txt -------------------------------------------------------------------------------- /core/Authorization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Authorization/CMakeLists.txt -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/CodecUtils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/CMakeLists.txt -------------------------------------------------------------------------------- /core/CodecUtils/doc/CodecUtils.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/doc/CodecUtils.dox -------------------------------------------------------------------------------- /core/CodecUtils/include/acsdk/CodecUtils/Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/include/acsdk/CodecUtils/Hex.h -------------------------------------------------------------------------------- /core/CodecUtils/include/acsdk/CodecUtils/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/include/acsdk/CodecUtils/Types.h -------------------------------------------------------------------------------- /core/CodecUtils/src/Base64Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/src/Base64Common.cpp -------------------------------------------------------------------------------- /core/CodecUtils/src/Base64Internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/src/Base64Internal.cpp -------------------------------------------------------------------------------- /core/CodecUtils/src/Base64OpenSsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/src/Base64OpenSsl.cpp -------------------------------------------------------------------------------- /core/CodecUtils/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/CodecUtils/src/CodecsCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/src/CodecsCommon.cpp -------------------------------------------------------------------------------- /core/CodecUtils/src/Hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/src/Hex.cpp -------------------------------------------------------------------------------- /core/CodecUtils/test/Base64CodecTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/test/Base64CodecTest.cpp -------------------------------------------------------------------------------- /core/CodecUtils/test/Base64InternalCodecTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/test/Base64InternalCodecTest.cpp -------------------------------------------------------------------------------- /core/CodecUtils/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/test/CMakeLists.txt -------------------------------------------------------------------------------- /core/CodecUtils/test/HexCodecTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/CodecUtils/test/HexCodecTest.cpp -------------------------------------------------------------------------------- /core/Crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Crypto/doc/Crypto.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/doc/Crypto.dox -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/CryptoFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/CryptoFactory.cpp -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/OpenSslCryptoCodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/OpenSslCryptoCodec.cpp -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/OpenSslCryptoFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/OpenSslCryptoFactory.cpp -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/OpenSslDigest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/OpenSslDigest.cpp -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/OpenSslErrorCleanup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/OpenSslErrorCleanup.cpp -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/OpenSslKeyFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/OpenSslKeyFactory.cpp -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/OpenSslTypeMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/OpenSslTypeMapper.cpp -------------------------------------------------------------------------------- /core/Crypto/Crypto/src/OpenSslTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/src/OpenSslTypes.cpp -------------------------------------------------------------------------------- /core/Crypto/Crypto/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/test/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Crypto/test/OpenSslDigestTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Crypto/test/OpenSslDigestTest.cpp -------------------------------------------------------------------------------- /core/Crypto/CryptoInterfaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/CryptoInterfaces/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/CryptoInterfaces/doc/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/CryptoInterfaces/doc/Namespaces.dox -------------------------------------------------------------------------------- /core/Crypto/CryptoInterfaces/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/CryptoInterfaces/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/CryptoInterfaces/src/DigestType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/CryptoInterfaces/src/DigestType.cpp -------------------------------------------------------------------------------- /core/Crypto/CryptoInterfaces/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/CryptoInterfaces/test/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/doc/CryptoPKCS11.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/doc/CryptoPKCS11.dox -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/KeyStoreFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/KeyStoreFactory.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11Config.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11Functions.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11FunctionsPosix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11FunctionsPosix.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11FunctionsUwp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11FunctionsUwp.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11Key.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11KeyDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11KeyDescriptor.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11KeyStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11KeyStore.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11Session.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/src/PKCS11Slot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/src/PKCS11Slot.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/test/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/test/PKCS11ConfigTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/test/PKCS11ConfigTest.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/test/PKCS11FunctionsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/test/PKCS11FunctionsTest.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/test/PKCS11KeyStoreTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/test/PKCS11KeyStoreTest.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/test/PKCS11KeyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/test/PKCS11KeyTest.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/test/PKCS11SessionTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/test/PKCS11SessionTest.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/test/PKCS11SlotTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/test/PKCS11SlotTest.cpp -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/testStubs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/testStubs/CMakeLists.txt -------------------------------------------------------------------------------- /core/Crypto/Pkcs11/testStubs/src/Pkcs11Stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Crypto/Pkcs11/testStubs/src/Pkcs11Stubs.cpp -------------------------------------------------------------------------------- /core/Properties/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/CMakeLists.txt -------------------------------------------------------------------------------- /core/Properties/Properties/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/Properties/CMakeLists.txt -------------------------------------------------------------------------------- /core/Properties/Properties/doc/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/Properties/doc/Namespaces.dox -------------------------------------------------------------------------------- /core/Properties/Properties/src/Asn1Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/Properties/src/Asn1Helper.cpp -------------------------------------------------------------------------------- /core/Properties/Properties/src/Asn1Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/Properties/src/Asn1Types.cpp -------------------------------------------------------------------------------- /core/Properties/Properties/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/Properties/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/Properties/Properties/src/Logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/Properties/src/Logging.cpp -------------------------------------------------------------------------------- /core/Properties/Properties/src/RetryExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/Properties/src/RetryExecutor.cpp -------------------------------------------------------------------------------- /core/Properties/Properties/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/Properties/Properties/test/CMakeLists.txt -------------------------------------------------------------------------------- /core/acsdkCore/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.1 FATAL_ERROR) 2 | project(acsdkCore LANGUAGES CXX) 3 | 4 | add_subdirectory("src") 5 | -------------------------------------------------------------------------------- /core/acsdkCore/include/acsdkCore/CoreComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/acsdkCore/include/acsdkCore/CoreComponent.h -------------------------------------------------------------------------------- /core/acsdkCore/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/acsdkCore/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/acsdkCore/src/CoreComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/acsdkCore/src/CoreComponent.cpp -------------------------------------------------------------------------------- /core/acsdkRegistrationManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/acsdkRegistrationManager/CMakeLists.txt -------------------------------------------------------------------------------- /core/acsdkRegistrationManager/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/acsdkRegistrationManager/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/acsdkSystemClockMonitor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/acsdkSystemClockMonitor/CMakeLists.txt -------------------------------------------------------------------------------- /core/acsdkSystemClockMonitor/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/acsdkSystemClockMonitor/src/CMakeLists.txt -------------------------------------------------------------------------------- /core/acsdkSystemClockMonitor/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/core/acsdkSystemClockMonitor/test/CMakeLists.txt -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/avs-cpp-sdk-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/doc/avs-cpp-sdk-architecture.png -------------------------------------------------------------------------------- /doc/avs-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/doc/avs-logo.png -------------------------------------------------------------------------------- /doc/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/doc/doxygen.cfg.in -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/doc/footer.html -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/issue_template.md -------------------------------------------------------------------------------- /pkg-config.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/pkg-config.pc.cmake -------------------------------------------------------------------------------- /shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/CMakeLists.txt -------------------------------------------------------------------------------- /shared/KWD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/KWD/CMakeLists.txt -------------------------------------------------------------------------------- /shared/KWD/acsdkKWD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/KWD/acsdkKWD/CMakeLists.txt -------------------------------------------------------------------------------- /shared/KWD/acsdkKWD/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/KWD/acsdkKWD/src/CMakeLists.txt -------------------------------------------------------------------------------- /shared/KWD/acsdkKWD/src/KWDComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/KWD/acsdkKWD/src/KWDComponent.cpp -------------------------------------------------------------------------------- /shared/KWD/acsdkKWDInterfaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/KWD/acsdkKWDInterfaces/CMakeLists.txt -------------------------------------------------------------------------------- /shared/KWD/acsdkKWDProvider/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/KWD/acsdkKWDProvider/CMakeLists.txt -------------------------------------------------------------------------------- /shared/KWD/acsdkKWDProvider/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/KWD/acsdkKWDProvider/src/CMakeLists.txt -------------------------------------------------------------------------------- /shared/Notifier/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/CMakeLists.txt -------------------------------------------------------------------------------- /shared/Notifier/doc/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/doc/Namespaces.dox -------------------------------------------------------------------------------- /shared/Notifier/doc/Notifier.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/doc/Notifier.dox -------------------------------------------------------------------------------- /shared/Notifier/src/NotifierData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/src/NotifierData.cpp -------------------------------------------------------------------------------- /shared/Notifier/src/ObserverWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/src/ObserverWrapper.cpp -------------------------------------------------------------------------------- /shared/Notifier/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/test/CMakeLists.txt -------------------------------------------------------------------------------- /shared/Notifier/test/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/test/Namespaces.dox -------------------------------------------------------------------------------- /shared/Notifier/test/NotifierDataTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/test/NotifierDataTest.cpp -------------------------------------------------------------------------------- /shared/Notifier/test/NotifierTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/test/NotifierTest.cpp -------------------------------------------------------------------------------- /shared/Notifier/test/NotifierTests.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/test/NotifierTests.dox -------------------------------------------------------------------------------- /shared/Notifier/test/NotifierTraitsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/test/NotifierTraitsTest.cpp -------------------------------------------------------------------------------- /shared/Notifier/test/ObserverWrapperTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/Notifier/test/ObserverWrapperTest.cpp -------------------------------------------------------------------------------- /shared/NotifierInterfaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/NotifierInterfaces/CMakeLists.txt -------------------------------------------------------------------------------- /shared/NotifierInterfaces/doc/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/NotifierInterfaces/doc/Namespaces.dox -------------------------------------------------------------------------------- /shared/NotifierInterfaces/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/NotifierInterfaces/test/CMakeLists.txt -------------------------------------------------------------------------------- /shared/NotifierInterfaces/test/Namespaces.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/NotifierInterfaces/test/Namespaces.dox -------------------------------------------------------------------------------- /shared/PresentationOrchestrator/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/PresentationOrchestrator/.clang-format -------------------------------------------------------------------------------- /shared/PresentationOrchestrator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/PresentationOrchestrator/CMakeLists.txt -------------------------------------------------------------------------------- /shared/SDKClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/SDKClient/CMakeLists.txt -------------------------------------------------------------------------------- /shared/SDKClient/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/SDKClient/src/CMakeLists.txt -------------------------------------------------------------------------------- /shared/SDKClient/src/SDKClientBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/SDKClient/src/SDKClientBuilder.cpp -------------------------------------------------------------------------------- /shared/SDKClient/src/SDKClientRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/SDKClient/src/SDKClientRegistry.cpp -------------------------------------------------------------------------------- /shared/SDKClient/src/TypeRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/SDKClient/src/TypeRegistry.cpp -------------------------------------------------------------------------------- /shared/SDKClient/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/SDKClient/test/CMakeLists.txt -------------------------------------------------------------------------------- /shared/SDKClient/test/SDKClientRegistryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/SDKClient/test/SDKClientRegistryTest.cpp -------------------------------------------------------------------------------- /shared/acsdkCommunication/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkCommunication/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkCommunication/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkCommunication/test/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkManufactory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkManufactory/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkManufactory/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkManufactory/src/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkManufactory/src/CookBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkManufactory/src/CookBook.cpp -------------------------------------------------------------------------------- /shared/acsdkManufactory/src/WeakPointerCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkManufactory/src/WeakPointerCache.cpp -------------------------------------------------------------------------------- /shared/acsdkManufactory/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkManufactory/test/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkManufactory/test/ManufactoryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkManufactory/test/ManufactoryTest.cpp -------------------------------------------------------------------------------- /shared/acsdkShared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkShared/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkShared/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkShared/src/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkShared/src/SharedComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkShared/src/SharedComponent.cpp -------------------------------------------------------------------------------- /shared/acsdkShutdownManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkShutdownManager/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkShutdownManager/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkShutdownManager/src/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkShutdownManager/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkShutdownManager/test/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkStartupManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkStartupManager/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkStartupManager/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkStartupManager/src/CMakeLists.txt -------------------------------------------------------------------------------- /shared/acsdkStartupManager/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/shared/acsdkStartupManager/test/CMakeLists.txt -------------------------------------------------------------------------------- /tools/Install/android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/tools/Install/android.sh -------------------------------------------------------------------------------- /tools/Install/androidConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/tools/Install/androidConfig.txt -------------------------------------------------------------------------------- /tools/Install/genConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/tools/Install/genConfig.sh -------------------------------------------------------------------------------- /tools/Install/mingw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/tools/Install/mingw.sh -------------------------------------------------------------------------------- /tools/Install/pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/tools/Install/pi.sh -------------------------------------------------------------------------------- /tools/Install/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/tools/Install/setup.sh -------------------------------------------------------------------------------- /tools/Testing.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/tools/Testing.cmake -------------------------------------------------------------------------------- /tools/Testing/android_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa/avs-device-sdk/HEAD/tools/Testing/android_test.py --------------------------------------------------------------------------------