| /external/openthread/third_party/mbedtls/repo/docs/architecture/ |
| D | alternative-implementations.md | 1 Alternative implementations of Mbed TLS functionality 12 …MBEDTLS_PLATFORM_XXX_ALT` and [register an alternative implementation during the platform setup](#… 16 For timing functions, you can [declare an alternative implementation of the timing module](#module-… 18 On multithreaded platforms, [declare an alternative implementation of the threading module](#module… 22 For networking, the `net_sockets` module does not currently support alternative implementations. If… 24 …alternative implementation of the corresponding module(s)](#module-alternative-implementations) or… 32 ## Module alternative implementations 34 …d modules (threading, timing). Such custom implementations are called “alternative implementations… 36 The general principle of an alternative implementation is: 45 Generally, alternative implementations can define their context types to any C type except incomple… [all …]
|
| /external/mbedtls/docs/architecture/ |
| D | alternative-implementations.md | 1 Alternative implementations of Mbed TLS functionality 12 …MBEDTLS_PLATFORM_XXX_ALT` and [register an alternative implementation during the platform setup](#… 16 For timing functions, you can [declare an alternative implementation of the timing module](#module-… 18 On multithreaded platforms, [declare an alternative implementation of the threading module](#module… 22 For networking, the `net_sockets` module does not currently support alternative implementations. If… 24 …alternative implementation of the corresponding module(s)](#module-alternative-implementations) or… 32 ## Module alternative implementations 34 …d modules (threading, timing). Such custom implementations are called “alternative implementations… 36 The general principle of an alternative implementation is: 45 Generally, alternative implementations can define their context types to any C type except incomple… [all …]
|
| /external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/core/composite/impl/ |
| D | alternative.ipp | 20 // alternative class implementation 24 inline alternative<A, B> 27 return alternative<A, B>(a.derived(), b.derived()); 31 inline alternative<A, chlit<char> > 34 return alternative<A, chlit<char> >(a.derived(), b); 38 inline alternative<chlit<char>, B> 41 return alternative<chlit<char>, B>(a, b.derived()); 45 inline alternative<A, strlit<char const*> > 48 return alternative<A, strlit<char const*> >(a.derived(), b); 52 inline alternative<strlit<char const*>, B> [all …]
|
| /external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/core/composite/ |
| D | alternative.hpp | 25 // alternative class 48 struct alternative struct 49 : public binary<A, B, parser<alternative<A, B> > > 51 typedef alternative<A, B> self_t; argument 56 alternative(A const& a, B const& b) in alternative() function 85 alternative< 93 static alternative< 99 return alternative<BOOST_DEDUCED_TYPENAME as_parser<A>::type, in generate() 106 alternative<A, B> 110 alternative<A, chlit<char> > [all …]
|
| /external/cronet/stable/net/http/ |
| D | broken_alternative_services.h | 25 // Contains information about a broken alternative service, and the context in 41 // The context in which the alternative service is known to be broken in. Used 46 // Stores broken alternative services and when their brokenness expires. 50 // Stores how many times an alternative service has been marked broken. 60 // This class tracks HTTP alternative services that have been marked as broken. 74 // Called when a broken alternative service's expiration time is reached. 81 // |delegate| will be notified when a broken alternative service expires. It 84 // expiration of broken alternative services. It must not be null. 95 // Clears all broken and recently-broken alternative services (i.e. mark all 120 // Returns true if the alternative service is considered broken. [all …]
|
| D | http_stream_pool_job_controller.h | 89 // Represents an alternative endpoint for the request. 90 struct Alternative { struct 98 // Calculate an alternative endpoint for the request. 99 static std::optional<Alternative> CalculateAlternative( argument 145 // Called when all jobs complete. Record brokenness of the alternative 146 // service if the origin job has no error and the alternative job has an 165 const std::optional<Alternative> alternative_; 174 // Set to `OK` when the alternative job is not needed.
|
| /external/cronet/tot/net/http/ |
| D | broken_alternative_services.h | 25 // Contains information about a broken alternative service, and the context in 41 // The context in which the alternative service is known to be broken in. Used 46 // Stores broken alternative services and when their brokenness expires. 50 // Stores how many times an alternative service has been marked broken. 60 // This class tracks HTTP alternative services that have been marked as broken. 74 // Called when a broken alternative service's expiration time is reached. 81 // |delegate| will be notified when a broken alternative service expires. It 84 // expiration of broken alternative services. It must not be null. 95 // Clears all broken and recently-broken alternative services (i.e. mark all 120 // Returns true if the alternative service is considered broken. [all …]
|
| D | http_stream_pool_job_controller.h | 89 // Represents an alternative endpoint for the request. 90 struct Alternative { struct 98 // Calculate an alternative endpoint for the request. 99 static std::optional<Alternative> CalculateAlternative( argument 145 // Called when all jobs complete. Record brokenness of the alternative 146 // service if the origin job has no error and the alternative job has an 165 const std::optional<Alternative> alternative_; 174 // Set to `OK` when the alternative job is not needed.
|
| /external/linux-kselftest/tools/testing/selftests/net/ |
| D | altnames.sh | 21 check_err $? "Failed to add short alternative name" 24 check_err $? "Failed to do link show with short alternative name" 27 check_err $? "Failed to get short alternative name from link show JSON" 30 check_err $? "Got unexpected short alternative name from link show JSON" 36 check_err $? "Failed to add long alternative name" 39 check_err $? "Failed to do link show with long alternative name" 42 check_err $? "Failed to get long alternative name from link show JSON" 45 check_err $? "Got unexpected long alternative name from link show JSON" 48 check_err $? "Failed to delete short alternative name" 51 check_fail $? "Unexpected success while trying to do link show with deleted short alternative name"
|
| /external/sdv/vsomeip/third_party/boost/spirit/doc/karma/ |
| D | complex.qbk | 27 where the first alternative should be used for numbers having a non-zero 31 succeeds the whole alternative fails. 34 the first alternative. We need to add some additional rules allowing to make the 35 first alternative fail. So, if the first alternative fails the second one will 36 be chosen instead. The decision about whether to choose the first alternative 49 fail. This is exactly what we need, forcing the second alternative to be chosen 173 happens for instance in alternative generators, where some of the alternatives 174 need to extract only part of the overall attribute passed to the alternative 189 complex number is equal to zero or not. The first alternative is executed if the 190 imaginary part is not zero, the second alternative otherwise. This time we make [all …]
|
| /external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/operator/ |
| D | alternative.hpp | 12 #include <boost/spirit/home/x3/operator/detail/alternative.hpp> 19 struct alternative : binary_parser<Left, Right, alternative<Left, Right>> struct 21 typedef binary_parser<Left, Right, alternative<Left, Right>> base_type; argument 23 constexpr alternative(Left const& left, Right const& right) in alternative() function 47 constexpr alternative< 59 struct attribute_of<x3::alternative<Left, Right>, Context> 60 : x3::detail::attribute_of_binary<boost::variant, x3::alternative, Left, Right, Context> {};
|
| /external/pcre/doc/ |
| D | pcre2matching.3 | 18 An alternative algorithm is provided by the \fBpcre2_dfa_match()\fP function; 19 it operates in a different way, and is not Perl-compatible. This alternative 34 them, whereas the alternative algorithm finds all three. 57 alternative branch at that level. This often involves backing up (moving to the 74 .SH "THE ALTERNATIVE MATCHING ALGORITHM" 122 supported or behave differently in the alternative matching function. Those 161 the alternative algorithm moves through the subject string one character (not 171 .SH "ADVANTAGES OF THE ALTERNATIVE ALGORITHM" 174 The main advantage of the alternative algorithm is that all possible matches 188 .SH "DISADVANTAGES OF THE ALTERNATIVE ALGORITHM" [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | dns_v1.policies.html | 117 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 119 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 151 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 153 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 208 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 210 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 257 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 259 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 309 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 311 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… [all …]
|
| D | dns_v1beta2.policies.html | 117 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 119 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 152 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 154 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 210 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 212 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 260 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 262 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 313 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… 315 …alternative name server for the associated networks. When specified, all DNS queries are forwarded… [all …]
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
| D | AltSignatureValue.java | 13 …* This alternative signature shall be created by the issuer using its alternative private key, and… 14 * alternative public key of the issuer. 23 …* creating the alternative digital signature on an issued public-key certificate or CRL, the signe… 26 * The procedures for creating and validating alternative digital signatures are specified in:
|
| D | AltSignatureAlgorithm.java | 13 …the algorithm identifier for the alternative digital signature algorithm used by the signer when c… 14 * digital signature and by the relying party when validating the alternative digital signature. 26 …* altSignatureValue extension, the alternative digital signature algorithm is protected by the alt… 30 * the extension and the alternative public-key algorithms
|
| /external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x509/ |
| D | AltSignatureValue.java | 14 …* This alternative signature shall be created by the issuer using its alternative private key, and… 15 * alternative public key of the issuer. 24 …* creating the alternative digital signature on an issued public-key certificate or CRL, the signe… 27 * The procedures for creating and validating alternative digital signatures are specified in:
|
| D | AltSignatureAlgorithm.java | 14 …the algorithm identifier for the alternative digital signature algorithm used by the signer when c… 15 * digital signature and by the relying party when validating the alternative digital signature. 27 …* altSignatureValue extension, the alternative digital signature algorithm is protected by the alt… 31 * the extension and the alternative public-key algorithms
|
| /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/ |
| D | AltSignatureValue.java | 14 …* This alternative signature shall be created by the issuer using its alternative private key, and… 15 * alternative public key of the issuer. 24 …* creating the alternative digital signature on an issued public-key certificate or CRL, the signe… 27 * The procedures for creating and validating alternative digital signatures are specified in:
|
| D | AltSignatureAlgorithm.java | 14 …the algorithm identifier for the alternative digital signature algorithm used by the signer when c… 15 * digital signature and by the relying party when validating the alternative digital signature. 27 …* altSignatureValue extension, the alternative digital signature algorithm is protected by the alt… 31 * the extension and the alternative public-key algorithms
|
| /external/pcre/doc/html/ |
| D | pcre2matching.html | 19 <li><a name="TOC4" href="#SEC4">THE ALTERNATIVE MATCHING ALGORITHM</a> 20 <li><a name="TOC5" href="#SEC5">ADVANTAGES OF THE ALTERNATIVE ALGORITHM</a> 21 <li><a name="TOC6" href="#SEC6">DISADVANTAGES OF THE ALTERNATIVE ALGORITHM</a> 37 An alternative algorithm is provided by the <b>pcre2_dfa_match()</b> function; 38 it operates in a different way, and is not Perl-compatible. This alternative 54 them, whereas the alternative algorithm finds all three. 73 alternative branch at that level. This often involves backing up (moving to the 91 <br><a name="SEC4" href="#TOC1">THE ALTERNATIVE MATCHING ALGORITHM</a><br> 144 supported or behave differently in the alternative matching function. Those 191 the alternative algorithm moves through the subject string one character (not [all …]
|
| /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/event_code_tests/ |
| D | event_alternatives_tests_p9.c | 34 * alternative events is handled by respective PMU driver in event_alternatives_tests_p9() 50 * Expected to pass since PM_RUN_CYC_ALT in PMC2 has alternative event in event_alternatives_tests_p9() 63 * Expected to pass since PM_INST_DISP in PMC2 has alternative event in event_alternatives_tests_p9() 76 * Expected to pass since PM_BR_2PATH in PMC2 has alternative event in event_alternatives_tests_p9() 89 * Expected to pass since PM_LD_MISS_L1 in PMC3 has alternative event in event_alternatives_tests_p9() 102 * Expected to pass since PM_RUN_INST_CMPL_ALT in PMC4 has alternative event in event_alternatives_tests_p9()
|
| /external/pdfium/third_party/abseil-cpp/absl/types/ |
| D | variant.h | 20 // value of some prescribed set of types (noted as alternative types), and 24 // should always hold a value of one of its alternative types (except in the 26 // `absl::variant` will hold the value of its first alternative type, provided 89 // except in exceptional cases -- always holds a value of one of its alternative 99 // // the first alternative type. 117 // An `absl::variant` holding a value of one of its alternative types `T` holds 121 // region of the variant storage suitably aligned for all alternative types. 130 // Note that this function requires all alternative types to be both swappable 147 // Returns the number of alternative types available for a given `absl::variant` 149 // is not generally useful for accessing the number of alternative types of [all …]
|
| /external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/types/ |
| D | variant.h | 20 // value of some prescribed set of types (noted as alternative types), and 24 // should always hold a value of one of its alternative types (except in the 26 // `absl::variant` will hold the value of its first alternative type, provided 89 // except in exceptional cases -- always holds a value of one of its alternative 99 // // the first alternative type. 117 // An `absl::variant` holding a value of one of its alternative types `T` holds 121 // region of the variant storage suitably aligned for all alternative types. 130 // Note that this function requires all alternative types to be both swappable 147 // Returns the number of alternative types available for a given `absl::variant` 149 // is not generally useful for accessing the number of alternative types of [all …]
|
| /external/cronet/stable/third_party/abseil-cpp/absl/types/ |
| D | variant.h | 20 // value of some prescribed set of types (noted as alternative types), and 24 // should always hold a value of one of its alternative types (except in the 26 // `absl::variant` will hold the value of its first alternative type, provided 89 // except in exceptional cases -- always holds a value of one of its alternative 99 // // the first alternative type. 117 // An `absl::variant` holding a value of one of its alternative types `T` holds 121 // region of the variant storage suitably aligned for all alternative types. 130 // Note that this function requires all alternative types to be both swappable 147 // Returns the number of alternative types available for a given `absl::variant` 149 // is not generally useful for accessing the number of alternative types of [all …]
|