| /system/bt/vendor_libs/test_vendor_lib/src/ |
| packet.cc | 21 #include <algorithm>
|
| /system/chre/apps/wifi_offload/ |
| chre_scan_params_safe.cc | 17 #include <algorithm>
|
| /system/core/init/ |
| service_test.cpp | 19 #include <algorithm>
|
| /system/core/libcutils/tests/ |
| sched_policy_test.cpp | 17 #include <algorithm>
|
| /system/extras/perfprofd/quipper/base/ |
| logging.cc | 20 #include <algorithm>
|
| /system/tools/aidl/tests/ |
| test_helpers.h | 17 #include <algorithm>
|
| /system/update_engine/payload_generator/ |
| tarjan.cc | 18 #include <algorithm>
|
| /external/mesa3d/src/gallium/drivers/svga/svgadump/ |
| svga_dump.py | 41 from pygccxml.declarations import algorithm 86 algorithm.apply_visitor(dumper, decl) 163 algorithm.apply_visitor(visitor, type_)
|
| /external/nist-sip/java/gov/nist/javax/sip/header/ |
| AuthenticationHeader.java | 58 public static final String ALGORITHM = ParameterNames.ALGORITHM; 283 * Sets the Algorithm of the WWWAuthenicateHeader to the new <var>algorithm</var> 286 * @param algorithm - 287 * the new algorithm String of this WWWAuthenicateHeader. 290 * while parsing the algorithm value. 293 public void setAlgorithm(String algorithm) throws ParseException { 294 if (algorithm == null) 296 setParameter(ParameterNames.ALGORITHM, algorithm) [all...] |
| /external/vboot_reference/firmware/2lib/ |
| 2rsa.c | 161 * @param algorithm Crypto algorithm (vb2_crypto_algorithm) 163 * @return The signature algorithm for that crypto algorithm, or 164 * VB2_SIG_INVALID if the crypto algorithm or its corresponding signature 165 * algorithm is invalid or not supported. 167 enum vb2_signature_algorithm vb2_crypto_to_signature(uint32_t algorithm) 169 if (algorithm < ARRAY_SIZE(crypto_to_sig)) 170 return crypto_to_sig[algorithm];
|
| /external/vboot_reference/futility/ |
| cmd_vbutil_keyblock.c | 59 " Signing private key in .pem format and algorithm id.\n" 203 printf("Data key algorithm: %" PRIu64 " %s\n", data_key->algorithm, 204 (data_key->algorithm < kNumAlgorithms ? 205 algo_strings[data_key->algorithm] : "(invalid)"));
|
| /external/vboot_reference/tests/ |
| vb20_common2_tests.c | 39 TEST_EQ(pubk.sig_alg, vb2_crypto_to_signature(key->algorithm), 41 TEST_EQ(pubk.hash_alg, vb2_crypto_to_hash(key->algorithm), 46 key->algorithm = VB2_ALG_COUNT; 49 "vb2_unpack_key() invalid algorithm"); 147 printf("***Testing algorithm: %s\n", algo_strings[key_algorithm]);
|
| /frameworks/av/drm/libmediadrm/ |
| IDrm.cpp | 398 String8 const &algorithm) { 403 data.writeString8(algorithm); 412 String8 const &algorithm) { 417 data.writeString8(algorithm); 511 String8 const &algorithm, 519 data.writeString8(algorithm); 837 String8 algorithm = data.readString8(); local 838 reply->writeInt32(setCipherAlgorithm(sessionId, algorithm)); 847 String8 algorithm = data.readString8(); local 848 reply->writeInt32(setMacAlgorithm(sessionId, algorithm)); 913 String8 algorithm = data.readString8(); local [all...] |
| /frameworks/av/drm/mediadrm/plugins/mock/ |
| MockDrmCryptoPlugin.h | 105 String8 const &algorithm); 108 String8 const &algorithm); 134 String8 const &algorithm,
|
| /frameworks/av/media/libmedia/include/media/ |
| Drm.h | 94 String8 const &algorithm); 97 String8 const &algorithm); 123 String8 const &algorithm,
|
| DrmHal.h | 109 String8 const &algorithm); 112 String8 const &algorithm); 138 String8 const &algorithm,
|
| /frameworks/native/headers/media_plugin/media/drm/ |
| DrmAPI.h | 276 // The algorithm string conforms to JCA Standard Names for Cipher 279 // Return OK if the algorithm is supported, otherwise return BAD_VALUE 282 String8 const &algorithm) = 0; 285 // The algorithm string conforms to JCA Standard Names for Mac 288 // Return OK if the algorithm is supported, otherwise return BAD_VALUE 291 String8 const &algorithm) = 0; 293 // Encrypt the provided input buffer with the cipher algorithm 302 // Decrypt the provided input buffer with the cipher algorithm 311 // Compute a signature on the provided message using the mac algorithm 319 // Compute a signature on the provided message using the mac algorithm [all...] |
| /hardware/interfaces/drm/1.0/default/ |
| DrmPlugin.h | 104 const hidl_string& algorithm) override; 107 const hidl_string& algorithm) override; 126 const hidl_string& algorithm, const hidl_vec<uint8_t>& message,
|
| /libcore/ojluni/src/main/java/sun/security/pkcs/ |
| PKCS8Key.java | 57 /* The algorithm information (name, parameters, etc). */ 60 /* The key bytes, without the algorithm information */ 71 * and algorithm initialized before it may be used, for example 79 * about this particular algorithm is available. 109 * information. Also, when a key (or algorithm) needs some special 117 AlgorithmId algorithm; local 131 algorithm = AlgorithmId.parse (in.data.getDerValue ()); 134 privKey = buildPKCS8Key (algorithm, in.data.getOctetString ()); 165 * specific algorithm ID or else returning this generic base class. 182 // Instantiate the key factory of the appropriate algorithm [all...] |
| /libcore/ojluni/src/main/java/sun/security/x509/ |
| X509Key.java | 46 * certificate. Includes a description of the algorithm to be used 64 /* The algorithm information (name, parameters, etc). */ 68 * The key bytes, without the algorithm information. 93 * and algorithm initialized before it may be used, for example 101 * about this particular algorithm is available. 154 * information. Also, when a key (or algorithm) needs some special 162 AlgorithmId algorithm; local 168 algorithm = AlgorithmId.parse(in.data.getDerValue()); 170 subjectKey = buildX509Key(algorithm, 202 * specific algorithm ID or else returning this generic base class [all...] |
| /libcore/tools/docs/crypto/ |
| update_crypto_support.py | 20 ListProviders.java along with a JSON file of the previous set of algorithm 22 record of algorithm support. 88 """Returns a normalized version of the given algorithm name.""" 104 """Returns a version of the given algorithm name with capitalization fixed.""" 122 The input file-like object must supply a "BEGIN ALGORITHM LIST" line 123 followed by any number of lines of an algorithm category and algorithm name 124 separated by whitespace followed by a "END ALGORITHM LIST" line. The 131 A dict of categories to lists of normalized algorithm names and a 132 dict of normalized algorithm names to original algorithm names [all...] |
| /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
| ContactMatcher.java | 56 // Maximum number of characters in a name to be considered by the matching algorithm. 84 * We use a string matching algorithm, which is particularly suited for 194 int nameType, String name, int algorithm) { 205 if (algorithm == MATCHING_ALGORITHM_EXACT) { 225 NameDistance nameDistance = algorithm == MATCHING_ALGORITHM_CONSERVATIVE ?
|
| RawContactMatcher.java | 57 // Maximum number of characters in a name to be considered by the matching algorithm. 88 * We use a string matching algorithm, which is particularly suited for 192 candidateNameType, String candidateName, int nameType, String name, int algorithm) { 203 if (algorithm == MATCHING_ALGORITHM_EXACT) { 223 NameDistance nameDistance = algorithm == MATCHING_ALGORITHM_CONSERVATIVE ?
|
| /system/keymaster/ |
| ec_key_factory.cpp | 190 keymaster_algorithm_t algorithm = KM_ALGORITHM_EC; local 191 if (!updated_description->GetTagValue(TAG_ALGORITHM, &algorithm)) { 193 } else if (algorithm != KM_ALGORITHM_EC) {
|
| /system/tpm/trunks/ |
| tpm_state_impl.cc | 180 bool TpmStateImpl::GetAlgorithmProperties(TPM_ALG_ID algorithm, 183 if (algorithm_properties_.count(algorithm) == 0) { 187 *properties = algorithm_properties_[algorithm]; 261 VLOG(1) << "Algorithm Properties 0x" << std::hex << property.alg
|