Home
last modified time | relevance | path

Searched +full:case +full:- +full:sensitive (Results 1 – 25 of 1384) sorted by relevance

12345678910>>...56

/aosp_15_r20/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/
H A DCryptUtil.c63 digestSize = CryptHmacStart2B(&hmacState, signature->signature.any.hashAlg, in CryptHmacSign()
64 &signKey->sensitive.sensitive.bits.b); in CryptHmacSign()
65 CryptDigestUpdate2B(&hmacState.hashState, &hashData->b); in CryptHmacSign()
67 (BYTE *)&signature->signature.hmac.digest); in CryptHmacSign()
88 &signKey->publicArea.parameters.keyedHashDetail.scheme; in CryptHMACVerifySignature()
90 if((signature->sigAlg != TPM_ALG_HMAC) in CryptHMACVerifySignature()
91 || (signature->signature.hmac.hashAlg == TPM_ALG_NULL)) in CryptHMACVerifySignature()
98 if((keyScheme->scheme != TPM_ALG_NULL) in CryptHMACVerifySignature()
99 && ((keyScheme->scheme != signature->sigAlg) in CryptHMACVerifySignature()
100 || (keyScheme->details.hmac.hashAlg in CryptHMACVerifySignature()
[all …]
H A DCryptRsa.c81 bigNum *bn = (bigNum *)&Z->P; in RsaInitializeExponent()
86 bn[i] = (bigNum)&Z->entries[i]; in RsaInitializeExponent()
87 BnInit(bn[i], BYTES_TO_CRYPT_WORDS(sizeof(Z->entries[0].d))); in RsaInitializeExponent()
99 if(BnUnsignedCmp(Z->P, Z->Q) < 0) in MakePgreaterThanQ()
101 bigNum bnT = Z->P; in MakePgreaterThanQ()
102 Z->P = Z->Q; in MakePgreaterThanQ()
103 Z->Q = bnT; in MakePgreaterThanQ()
126 UINT16 primeSize = (UINT16)BITS_TO_BYTES(BnMsb(Z->P)); in PackExponent()
129 pAssert((primeSize * 5) <= sizeof(packed->t.buffer)); in PackExponent()
130 packed->t.size = (primeSize * 5) + RSA_prime_flag; in PackExponent()
[all …]
/aosp_15_r20/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DPacket.java9 * http://www.apache.org/licenses/LICENSE-2.0
103 data = new byte[p.length - HEADER_SIZE]; in Packet()
104 System.arraycopy(p, HEADER_SIZE, data, 0, p.length - HEADER_SIZE); in Packet()
164 case JDWPConstants.Tag.ARRAY_TAG: { in isValuePrimitiveType()
167 case JDWPConstants.Tag.BYTE_TAG: { in isValuePrimitiveType()
170 case JDWPConstants.Tag.CHAR_TAG: { in isValuePrimitiveType()
173 case JDWPConstants.Tag.OBJECT_TAG: { in isValuePrimitiveType()
176 case JDWPConstants.Tag.FLOAT_TAG: { in isValuePrimitiveType()
179 case JDWPConstants.Tag.DOUBLE_TAG: { in isValuePrimitiveType()
182 case JDWPConstants.Tag.INT_TAG: { in isValuePrimitiveType()
[all …]
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/
H A DIOCase.java9 * http://www.apache.org/licenses/LICENSE-2.0
23 * Enumeration of IO case sensitivity.
25 * Different filing systems have different rules for case-sensitivity.
26 * Windows is case-insensitive, Unix is case-sensitive.
43 * The constant for case-sensitive regardless of operating system.
45 SENSITIVE("Sensitive", true), enumConstant
48 * The constant for case-insensitive regardless of operating system.
53 * The constant for case sensitivity determined by the current operating system.
54 * Windows is case-insensitive when comparing file names, Unix is case-sensitive.
57 * systems (e.g. OSX and OpenVMS) are treated as case-sensitive if they use the
[all …]
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/filefilter/
H A DWildcardFileFilter.java9 * http://www.apache.org/licenses/LICENSE-2.0
35 …cts files and directories based on one or more wildcards. Testing is case-sensitive by default, bu…
39 …* command lines. The check is case-sensitive by default. See {@link FilenameUtils#wildcardMatchOnS…
97 /** Whether the comparison is case-sensitive. */
98 private IOCase ioCase = IOCase.SENSITIVE;
106 * Sets how to handle case sensitivity, null means case-sensitive.
108 * @param ioCase how to handle case sensitivity, null means case-sensitive.
112 this.ioCase = IOCase.value(ioCase, IOCase.SENSITIVE); in setIoCase()
140 private static final long serialVersionUID = -7426486598995782105L;
159 /** Whether the comparison is case-sensitive. */
[all …]
H A DNameFileFilter.java9 * http://www.apache.org/licenses/LICENSE-2.0
79 /** Whether the comparison is case-sensitive. */
83 * Constructs a new case-sensitive name file filter for a list of names.
94 * Constructs a new name file filter for a list of names specifying case-sensitivity.
97 * @param ioCase how to handle case sensitivity, null means case-sensitive
108 * Constructs a new case-sensitive name file filter for a single name.
114 this(name, IOCase.SENSITIVE); in NameFileFilter()
118 * Constructs a new case-sensitive name file filter for an array of names.
128 this(names, IOCase.SENSITIVE); in NameFileFilter()
132 * Constructs a new name file filter specifying case-sensitivity.
[all …]
H A DSuffixFileFilter.java9 * http://www.apache.org/licenses/LICENSE-2.0
75 private static final long serialVersionUID = -3389157631240246157L;
80 /** Whether the comparison is case-sensitive. */
91 this(suffixes, IOCase.SENSITIVE); in SuffixFileFilter()
96 * specifying case-sensitivity.
99 * @param ioCase how to handle case sensitivity, null means case-sensitive
107 this.ioCase = IOCase.value(ioCase, IOCase.SENSITIVE); in SuffixFileFilter()
117 this(suffix, IOCase.SENSITIVE); in SuffixFileFilter()
130 this(suffixes, IOCase.SENSITIVE); in SuffixFileFilter()
135 * specifying case-sensitivity.
[all …]
H A DPrefixFileFilter.java9 * http://www.apache.org/licenses/LICENSE-2.0
79 /** Whether the comparison is case-sensitive. */
90 this(prefixes, IOCase.SENSITIVE); in PrefixFileFilter()
95 * specifying case-sensitivity.
98 * @param ioCase how to handle case sensitivity, null means case-sensitive
106 this.isCase = IOCase.value(ioCase, IOCase.SENSITIVE); in PrefixFileFilter()
116 this(prefix, IOCase.SENSITIVE); in PrefixFileFilter()
129 this(prefixes, IOCase.SENSITIVE); in PrefixFileFilter()
134 * specifying case-sensitivity.
137 * @param ioCase how to handle case sensitivity, null means case-sensitive
[all …]
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/comparator/
H A DPathFileComparator.java9 * http://www.apache.org/licenses/LICENSE-2.0
29 * by their path either in a case-sensitive, case-insensitive or
30 * system dependent case-sensitive way. A number of singleton instances
31 * are provided for the various case sensitivity options (using {@link IOCase})
35 * Example of a <i>case-sensitive</i> file path sort using the
43 * Example of a <i>reverse case-insensitive</i> file path sort using the
60 /** Case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */
63 /** Reverse case-sensitive path comparator instance (see {@link IOCase#SENSITIVE}) */
66 /** Case-insensitive path comparator instance (see {@link IOCase#INSENSITIVE}) */
69 /** Reverse case-insensitive path comparator instance (see {@link IOCase#INSENSITIVE}) */
[all …]
H A DExtensionFileComparator.java9 * http://www.apache.org/licenses/LICENSE-2.0
31 * by their file extension either in a case-sensitive, case-insensitive or
32 * system dependent case-sensitive way. A number of singleton instances
33 * are provided for the various case sensitivity options (using {@link IOCase})
37 * Example of a <i>case-sensitive</i> file extension sort using the
45 * Example of a <i>reverse case-insensitive</i> file extension sort using the
63 /** Case-sensitive extension comparator instance (see {@link IOCase#SENSITIVE}) */
66 /** Reverse case-sensitive extension comparator instance (see {@link IOCase#SENSITIVE}) */
69 /** Case-insensitive extension comparator instance (see {@link IOCase#INSENSITIVE}) */
73 /** Reverse case-insensitive extension comparator instance (see {@link IOCase#INSENSITIVE}) */
[all …]
H A DNameFileComparator.java9 * http://www.apache.org/licenses/LICENSE-2.0
29 * by their name either in a case-sensitive, case-insensitive or
30 * system dependent case-sensitive way. A number of singleton instances
31 * are provided for the various case sensitivity options (using {@link IOCase})
35 * Example of a <i>case-sensitive</i> file name sort using the
43 * Example of a <i>reverse case-insensitive</i> file name sort using the
61 /** Case-sensitive name comparator instance (see {@link IOCase#SENSITIVE}) */
64 /** Reverse case-sensitive name comparator instance (see {@link IOCase#SENSITIVE}) */
67 /** Case-insensitive name comparator instance (see {@link IOCase#INSENSITIVE}) */
70 /** Reverse case-insensitive name comparator instance (see {@link IOCase#INSENSITIVE}) */
[all …]
/aosp_15_r20/external/google-cloud-java/java-datacatalog/proto-google-cloud-datacatalog-v1beta1/src/main/java/com/google/cloud/datacatalog/v1beta1/
H A DLookupEntryRequest.java8 * https://www.apache.org/licenses/LICENSE-2.0
96 case 1: in forNumber()
98 case 3: in forNumber()
100 case 0: in forNumber()
124 * Full names are case-sensitive.
144 * Full names are case-sensitive.
177 * Full names are case-sensitive.
209 * The SQL name of the entry. SQL names are case-sensitive.
217 * https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical.
231 * The SQL name of the entry. SQL names are case-sensitive.
[all …]
/aosp_15_r20/external/json-schema-validator/src/main/java/com/networknt/org/apache/commons/validator/routines/
H A DRegexValidator.java9 * http://www.apache.org/licenses/LICENSE-2.0
28 * regular expressions. By default validation is <i>case sensitive</i> but constructors
29 * are provided to allow <i>case in-sensitive</i> validation. For example to create
30 * a validator which does <i>case in-sensitive</i> validation for a set of regular
64 * Cached instances pre-compile and re-use {@link Pattern}(s) - which according
65 * to the {@link Pattern} API are safe to use in a multi-threaded environment.
72 private static final long serialVersionUID = -8832409930574867162L;
77 * Constructs a <i>case sensitive</i> validator that matches any one
88 * Constructs a <i>case sensitive</i> validator for a single
100 * with the specified case sensitivity.
[all …]
/aosp_15_r20/external/google-cloud-java/java-datacatalog/proto-google-cloud-datacatalog-v1/src/main/java/com/google/cloud/datacatalog/v1/
H A DLookupEntryRequest.java8 * https://www.apache.org/licenses/LICENSE-2.0
97 case 1: in forNumber()
99 case 3: in forNumber()
101 case 5: in forNumber()
103 case 0: in forNumber()
127 * Full names are case-sensitive. For example:
146 * Full names are case-sensitive. For example:
178 * Full names are case-sensitive. For example:
209 * The SQL name of the entry. SQL names are case-sensitive.
218 * (https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical).
[all …]
/aosp_15_r20/external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/java/com/google/cloud/compute/v1/
H A DNetworkEndpointGroupAppEngine.java8 * https://www.apache.org/licenses/LICENSE-2.0
81 …serving service. The service name is case-sensitive and must be 1-63 characters long. Example valu…
96 …serving service. The service name is case-sensitive and must be 1-63 characters long. Example valu…
119 …serving service. The service name is case-sensitive and must be 1-63 characters long. Example valu…
147 …"foo1-dot-appname.appspot.com/v1" and "foo1-dot-appname.appspot.com/v2" can be backed by the same …
162 …"foo1-dot-appname.appspot.com/v1" and "foo1-dot-appname.appspot.com/v2" can be backed by the same …
185 …"foo1-dot-appname.appspot.com/v1" and "foo1-dot-appname.appspot.com/v2" can be backed by the same …
213 …* Optional serving version. The version name is case-sensitive and must be 1-100 characters long. …
228 …* Optional serving version. The version name is case-sensitive and must be 1-100 characters long. …
251 …* Optional serving version. The version name is case-sensitive and must be 1-100 characters long. …
[all …]
/aosp_15_r20/external/angle/src/common/
H A Dstring_utils.h3 // Use of this source code is governed by a BSD-style license that can be
53 // The comparison is case sensitive.
58 // The comparison is case sensitive.
63 // The comparison is case sensitive.
68 // The comparison is case sensitive.
72 // The comparison is case sensitive.
77 // The comparison is case sensitive.
82 // The comparison is case sensitive.
87 // The comparison is case sensitive.
90 // Convert to lower-case.
[all …]
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/android/include/external/icu/icu4c/source/common/unicode/
H A Dcasemap.h19 * \brief C++ API: Low-level C++ case mapping functions.
29 * Low-level C++ case mapping functions.
36 * Lowercases a UTF-16 string and optionally records edits.
37 * Casing is locale-dependent and context-sensitive.
44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
45 * @param dest A buffer for the result string. The result will be NUL-terminated if
47 * The contents is undefined in case of failure.
54 * This function calls edits->reset() first unless
72 * Uppercases a UTF-16 string and optionally records edits.
73 * Casing is locale-dependent and context-sensitive.
[all …]
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/linux_glibc/include/external/icu/icu4c/source/common/unicode/
H A Dcasemap.h19 * \brief C++ API: Low-level C++ case mapping functions.
29 * Low-level C++ case mapping functions.
36 * Lowercases a UTF-16 string and optionally records edits.
37 * Casing is locale-dependent and context-sensitive.
44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
45 * @param dest A buffer for the result string. The result will be NUL-terminated if
47 * The contents is undefined in case of failure.
54 * This function calls edits->reset() first unless
72 * Uppercases a UTF-16 string and optionally records edits.
73 * Casing is locale-dependent and context-sensitive.
[all …]
/aosp_15_r20/external/icu/libicu/cts_headers/unicode/
H A Dcasemap.h19 * \brief C++ API: Low-level C++ case mapping functions.
29 * Low-level C++ case mapping functions.
36 * Lowercases a UTF-16 string and optionally records edits.
37 * Casing is locale-dependent and context-sensitive.
44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
45 * @param dest A buffer for the result string. The result will be NUL-terminated if
47 * The contents is undefined in case of failure.
54 * This function calls edits->reset() first unless
72 * Uppercases a UTF-16 string and optionally records edits.
73 * Casing is locale-dependent and context-sensitive.
[all …]
/aosp_15_r20/prebuilts/runtime/mainline/i18n/sdk/common_os/include/external/icu/icu4c/source/common/unicode/
H A Dcasemap.h19 * \brief C++ API: Low-level C++ case mapping functions.
29 * Low-level C++ case mapping functions.
36 * Lowercases a UTF-16 string and optionally records edits.
37 * Casing is locale-dependent and context-sensitive.
44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
45 * @param dest A buffer for the result string. The result will be NUL-terminated if
47 * The contents is undefined in case of failure.
54 * This function calls edits->reset() first unless
72 * Uppercases a UTF-16 string and optionally records edits.
73 * Casing is locale-dependent and context-sensitive.
[all …]
/aosp_15_r20/external/icu/icu4c/source/common/unicode/
H A Dcasemap.h19 * \brief C++ API: Low-level C++ case mapping functions.
29 * Low-level C++ case mapping functions.
36 * Lowercases a UTF-16 string and optionally records edits.
37 * Casing is locale-dependent and context-sensitive.
44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
45 * @param dest A buffer for the result string. The result will be NUL-terminated if
47 * The contents is undefined in case of failure.
54 * This function calls edits->reset() first unless
72 * Uppercases a UTF-16 string and optionally records edits.
73 * Casing is locale-dependent and context-sensitive.
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/common/unicode/
H A Dcasemap.h19 * \brief C++ API: Low-level C++ case mapping functions.
29 * Low-level C++ case mapping functions.
36 * Lowercases a UTF-16 string and optionally records edits.
37 * Casing is locale-dependent and context-sensitive.
44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
45 * @param dest A buffer for the result string. The result will be NUL-terminated if
47 * The contents is undefined in case of failure.
54 * This function calls edits->reset() first unless
72 * Uppercases a UTF-16 string and optionally records edits.
73 * Casing is locale-dependent and context-sensitive.
[all …]
/aosp_15_r20/prebuilts/runtime/mainline/i18n/test-exports/linux_bionic/include/external/icu/icu4c/source/common/unicode/
H A Dcasemap.h19 * \brief C++ API: Low-level C++ case mapping functions.
29 * Low-level C++ case mapping functions.
36 * Lowercases a UTF-16 string and optionally records edits.
37 * Casing is locale-dependent and context-sensitive.
44 * @param srcLength The length of the original string. If -1, then src must be NUL-terminated.
45 * @param dest A buffer for the result string. The result will be NUL-terminated if
47 * The contents is undefined in case of failure.
54 * This function calls edits->reset() first unless
72 * Uppercases a UTF-16 string and optionally records edits.
73 * Casing is locale-dependent and context-sensitive.
[all …]
/aosp_15_r20/external/apache-xml/test/java/src/org/apache/qetest/xsl/
H A DConformanceXSLFileRules.java10 * http://www.apache.org/licenses/LICENSE-2.0
29 * Simple file filter; returns *.xsl non-dir files.
31 * Copied from ConformanceFileRules, used for ad-hoc testing
39 /** Initialize for defaults (not using inclusion list) no-op. */
43 * Initialize with a case-sensitive Hash of file names to exclude.
45 * @param excludesHash where keys are case-sensitive filenames
54 * Initialize with a case-insensitive semicolon-delimited String of file names to exclude.
56 * @param excludesStr well, mostly case-insensitive string
66 * file names may be case-sensitive.</p>
72 * Accessor methods to set a case-sensitive Hash of file names to exclude.
[all …]
/aosp_15_r20/external/ms-tpm-20-ref/TPMCmd/tpm/src/subsystem/
H A DObject.c55 object->attributes.occupied = CLEAR; in ObjectFlush()
65 object->attributes.occupied = SET; in ObjectSetInUse()
105 if(object->attributes.evict == SET) in ObjectCleanupEvict()
115 // implementation-dependent allowed in range for loaded transient objects.
125 UINT32 slotIndex = handle - TRANSIENT_FIRST; in IsObjectPresent()
128 // TRANSIENT_FIRST -- (TRANSIENT_FIRST + MAX_LOADED_OBJECT - 1) in IsObjectPresent()
148 return (object->attributes.hmacSeq == SET in ObjectIsSequence()
149 || object->attributes.hashSeq == SET in ObjectIsSequence()
150 || object->attributes.eventSeq == SET); in ObjectIsSequence()
171 index = handle - TRANSIENT_FIRST; in HandleToObject()
[all …]

12345678910>>...56