| /external/sdv/vsomeip/implementation/e2e_protection/src/e2e/profile/ |
| D | e2e_provider_impl.cpp | 11 #include "../../../../e2e_protection/include/e2e/profile/e2e_provider_impl.hpp" 13 #include "../../../../e2e_protection/include/e2e/profile/profile01/checker.hpp" 14 #include "../../../../e2e_protection/include/e2e/profile/profile01/profile_01.hpp" 15 #include "../../../../e2e_protection/include/e2e/profile/profile01/protector.hpp" 17 #include "../../../../e2e_protection/include/e2e/profile/profile04/checker.hpp" 18 #include "../../../../e2e_protection/include/e2e/profile/profile04/profile_04.hpp" 19 #include "../../../../e2e_protection/include/e2e/profile/profile04/protector.hpp" 21 #include "../../../../e2e_protection/include/e2e/profile/profile_custom/checker.hpp" 22 #include "../../../../e2e_protection/include/e2e/profile/profile_custom/profile_custom.hpp" 23 #include "../../../../e2e_protection/include/e2e/profile/profile_custom/protector.hpp" [all …]
|
| /external/sdv/vsomeip/implementation/e2e_protection/src/e2e/profile/profile01/ |
| D | checker.cpp | 6 #include "../../../../../e2e_protection/include/e2e/profile/profile01/checker.hpp" 15 namespace e2e { namespace 20 e2e::profile_interface::check_status_t &_generic_check_status) { in check() 25 _generic_check_status = e2e::profile_interface::generic_check_status::E2E_ERROR; in check() 33 _generic_check_status = e2e::profile_interface::generic_check_status::E2E_OK; in check() 35 _generic_check_status = e2e::profile_interface::generic_check_status::E2E_WRONG_CRC; in check() 36 VSOMEIP_INFO << std::hex << "E2E protection: CRC8 does not match: calculated CRC: " in check() 43 } // namespace e2e
|
| D | profile_01.cpp | 6 #include "../../../../../e2e_protection/include/e2e/profile/profile01/profile_01.hpp" 14 namespace e2e { namespace 26 … * Two bytes are included in the CRC (double ID configuration) This is used in E2E variant 1A. in compute_crc() 49 * This is used in E2E variant 1B. in compute_crc() 67 * up to 12 bits. This is used in E2E variant 1C. in compute_crc() 95 …n done on computed CRC by the last CalculateCRC8(), there is a XORing doneexternally by E2E Library in compute_crc() 109 } // namespace e2e
|
| /external/sdv/vsomeip/implementation/e2e_protection/src/e2e/profile/profile_custom/ |
| D | checker.cpp | 6 #include "../../../../../e2e_protection/include/e2e/profile/profile_custom/checker.hpp" 15 namespace e2e { namespace 20 e2e::profile_interface::check_status_t &_generic_check_status) { in check() 25 _generic_check_status = e2e::profile_interface::generic_check_status::E2E_ERROR; in check() 34 _generic_check_status = e2e::profile_interface::generic_check_status::E2E_OK; in check() 36 _generic_check_status = e2e::profile_interface::generic_check_status::E2E_WRONG_CRC; in check() 37 VSOMEIP_INFO << std::hex << "E2E protection: CRC32 does not match: calculated CRC: " in check() 51 } // namespace e2e
|
| D | profile_custom.cpp | 6 #include "../../../../../e2e_protection/include/e2e/profile/profile_custom/profile_custom.hpp" 14 namespace e2e { namespace 27 } // namespace e2e
|
| D | protector.cpp | 6 #include "../../../../../e2e_protection/include/e2e/profile/profile_custom/protector.hpp" 16 namespace e2e { namespace 41 } // namespace e2e
|
| /external/sdv/vsomeip/implementation/e2e_protection/src/e2e/profile/profile04/ |
| D | checker.cpp | 11 #include "../../../../../e2e_protection/include/e2e/profile/profile04/checker.hpp" 15 namespace e2e { namespace 20 e2e::profile_interface::check_status_t &_generic_check_status) { in check() 23 _generic_check_status = e2e::profile_interface::generic_check_status::E2E_ERROR; in check() 26 VSOMEIP_ERROR << "E2E Profile 4 can only be used for instances [1-255]"; in check() 47 … _generic_check_status = e2e::profile_interface::generic_check_status::E2E_WRONG_CRC; in check() 48 … VSOMEIP_ERROR << std::hex << "E2E P04 protection: CRC32 does not match: calculated CRC: " in check() 55 … _generic_check_status = e2e::profile_interface::generic_check_status::E2E_OK; in check() 113 } // namespace e2e
|
| D | protector.cpp | 8 #include "../../../../../e2e_protection/include/e2e/profile/profile04/protector.hpp" 14 namespace e2e { namespace 23 VSOMEIP_ERROR << "E2E Profile 4 can only be used for instances [1-255]"; in protect() 80 } // namespace e2e
|
| D | profile_04.cpp | 11 #include "../../../../../e2e_protection/include/e2e/profile/profile04/profile_04.hpp" 15 namespace e2e { namespace 32 } // namespace e2e
|
| /external/sdv/vsomeip/implementation/e2e_protection/include/e2e/profile/ |
| D | e2e_provider_impl.hpp | 20 namespace e2e { namespace 30 VSOMEIP_EXPORT bool add_configuration(std::shared_ptr<cfg::e2e> config) override; 49 config_t make_e2e_profile_config(const std::shared_ptr<cfg::e2e>& config); 52 void process_e2e_profile(std::shared_ptr<cfg::e2e> config) { in process_e2e_profile() 56 std::shared_ptr<e2e::profile_interface::checker> checker; in process_e2e_profile() 61 std::shared_ptr<e2e::profile_interface::protector> protector; in process_e2e_profile() 70 } // namespace e2e
|
| D | e2e_provider.hpp | 14 #include "../../../../configuration/include/e2e.hpp" 18 namespace e2e { namespace 22 virtual bool add_configuration(std::shared_ptr<cfg::e2e> config) = 0; 33 e2e::profile_interface::check_status_t &_generic_check_status) = 0; 36 } // namespace e2e
|
| /external/sdv/vsomeip/implementation/e2e_protection/include/e2e/profile/profile_custom/ |
| D | checker.hpp | 14 namespace e2e { namespace 18 : public e2e::profile_interface::checker { 23 explicit profile_custom_checker(const e2e::profile_custom::profile_config &_config) : in profile_custom_checker() 27 e2e::profile_interface::check_status_t &_generic_check_status) override final; 39 } // namespace e2e
|
| D | protector.hpp | 14 namespace e2e { namespace 17 class protector final : public e2e::profile_interface::protector { 35 } // namespace e2e
|
| /external/webrtc/test/pc/e2e/g3doc/ |
| D | architecture.md | 186 [2]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/peer_c… 187 [3]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/media/… 188 [4]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/analyz… 189 [5]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/analyz… 191 [7]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/test_a… 195 [11]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/test_… 196 [12]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/test_… 197 [13]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/test_… 201 [17]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/cross… 202 [18]: https://source.chromium.org/chromium/chromium/src/+/main:third_party/webrtc/test/pc/e2e/cross… [all …]
|
| D | default_video_quality_analyzer.md | 181 [1]: https://source.chromium.org/chromium/chromium/src/+/master:third_party/webrtc/test/pc/e2e/anal… 183 [3]: https://source.chromium.org/chromium/chromium/src/+/master:third_party/webrtc/test/pc/e2e/anal… 192 [12]: https://source.chromium.org/chromium/chromium/src/+/master:third_party/webrtc/test/pc/e2e/ana… 193 [13]: https://source.chromium.org/chromium/chromium/src/+/master:third_party/webrtc/test/pc/e2e/ana… 194 [14]: https://source.chromium.org/chromium/chromium/src/+/master:third_party/webrtc/test/pc/e2e/ana… 195 [15]: https://source.chromium.org/chromium/chromium/src/+/master:third_party/webrtc/test/pc/e2e/ana… 196 [16]: https://source.chromium.org/chromium/chromium/src/+/master:third_party/webrtc/test/pc/e2e/ana…
|
| /external/webrtc/test/pc/e2e/ |
| D | peer_connection_quality_test.h | 34 #include "test/pc/e2e/analyzer/video/single_process_encoded_image_data_injector.h" 35 #include "test/pc/e2e/analyzer/video/video_quality_analyzer_injection_helper.h" 36 #include "test/pc/e2e/analyzer_helper.h" 37 #include "test/pc/e2e/media/media_helper.h" 38 #include "test/pc/e2e/sdp/sdp_changer.h" 39 #include "test/pc/e2e/test_activities_executor.h" 40 #include "test/pc/e2e/test_peer.h"
|
| /external/sdv/vsomeip/implementation/e2e_protection/include/e2e/profile/profile01/ |
| D | checker.hpp | 13 namespace e2e { namespace 16 class profile_01_checker final : public e2e::profile_interface::checker { 26 e2e::profile_interface::check_status_t &_generic_check_status) override final; 35 } // namespace e2e
|
| D | protector.hpp | 15 namespace e2e { namespace 18 class protector final : public e2e::profile_interface::protector { 43 } // namespace e2e
|
| /external/sdv/vsomeip/implementation/e2e_protection/include/e2e/profile/profile04/ |
| D | checker.hpp | 13 namespace e2e { namespace 16 class profile_04_checker final : public e2e::profile_interface::checker { 26 e2e::profile_interface::check_status_t &_generic_check_status) override final; 42 } // namespace e2e
|
| D | protector.hpp | 14 namespace e2e { namespace 17 class protector final : public e2e::profile_interface::protector { 40 } // namespace e2e
|
| /external/webrtc/test/pc/e2e/analyzer/video/ |
| D | default_video_quality_analyzer.h | 33 #include "test/pc/e2e/analyzer/video/default_video_quality_analyzer_cpu_measurer.h" 34 #include "test/pc/e2e/analyzer/video/default_video_quality_analyzer_frame_in_flight.h" 35 #include "test/pc/e2e/analyzer/video/default_video_quality_analyzer_frames_comparator.h" 36 #include "test/pc/e2e/analyzer/video/default_video_quality_analyzer_internal_shared_objects.h" 37 #include "test/pc/e2e/analyzer/video/default_video_quality_analyzer_shared_objects.h" 38 #include "test/pc/e2e/analyzer/video/default_video_quality_analyzer_stream_state.h" 39 #include "test/pc/e2e/analyzer/video/names_collection.h"
|
| D | video_quality_analyzer_injection_helper.cc | 11 #include "test/pc/e2e/analyzer/video/video_quality_analyzer_injection_helper.h" 28 #include "test/pc/e2e/analyzer/video/analyzing_video_sink.h" 29 #include "test/pc/e2e/analyzer/video/quality_analyzing_video_decoder.h" 30 #include "test/pc/e2e/analyzer/video/quality_analyzing_video_encoder.h" 31 #include "test/pc/e2e/analyzer/video/simulcast_dummy_buffer_helper.h" 32 #include "test/pc/e2e/analyzer/video/video_dumping.h"
|
| /external/libopus/dnn/training_tf2/ |
| D | dataloader.py | 16 def __init__(self, data, features, periods, batch_size, e2e=False, lookahead=2): argument 22 self.e2e = e2e 42 if self.e2e:
|
| /external/sdv/vsomeip/implementation/configuration/include/ |
| D | e2e.hpp | 18 struct e2e { struct 21 e2e() : in e2e() argument 28 e2e(std::string _variant, std::string _profile, service_t _service_id, in e2e() argument
|
| /external/webrtc/test/pc/e2e/media/ |
| D | media_helper.h | 20 #include "test/pc/e2e/analyzer/video/video_quality_analyzer_injection_helper.h" 21 #include "test/pc/e2e/media/test_video_capturer_video_track_source.h" 22 #include "test/pc/e2e/test_peer.h"
|