Home
last modified time | relevance | path

Searched refs:complexity (Results 1 – 17 of 17) sorted by relevance

/frameworks/proto_logging/stats/enums/devicepolicy/
Denums.proto37 // The required password complexity.
39 COMPLEXITY_UNSPECIFIED = 0; // If password complexity is none of the below
40 COMPLEXITY_NONE = 1; // If password complexity is PASSWORD_COMPLEXITY_NONE
42 COMPLEXITY_LOW = 3; // If password complexity is PASSWORD_COMPLEXITY_LOW
43 COMPLEXITY_MEDIUM = 4; // If password complexity is PASSWORD_COMPLEXITY_MEDIUM
44 COMPLEXITY_HIGH = 5; // If password complexity is PASSWORD_COMPLEXITY_HIGH
/frameworks/opt/car/setupwizard/library/utils/src/com/android/car/setupwizardlib/
DInitialLockSetupClient.java386 int complexity; in doInBackground() local
389 complexity = PasswordComplexity.PASSWORD_COMPLEXITY_MEDIUM; in doInBackground()
392 complexity = PasswordComplexity.PASSWORD_COMPLEXITY_LOW; in doInBackground()
395 complexity = PasswordComplexity.PASSWORD_COMPLEXITY_LOW; in doInBackground()
403 return km.isValidLockPasswordComplexity(mLockType, passwords[0], complexity) in doInBackground()
464 int complexity; in doInBackground() local
467 complexity = PasswordComplexity.PASSWORD_COMPLEXITY_MEDIUM; in doInBackground()
470 complexity = PasswordComplexity.PASSWORD_COMPLEXITY_LOW; in doInBackground()
473 complexity = PasswordComplexity.PASSWORD_COMPLEXITY_LOW; in doInBackground()
481 return km.setLock(mLockType, passwords[0], complexity) in doInBackground()
/frameworks/av/media/module/codecs/m4v_h263/dec/src/
Dvop.cpp604 currVol->complexity.text_1 = BitstreamReadBits16(stream, 4); in DecodeVOLHeader()
612 currVol->complexity.text_2 = BitstreamReadBits16(stream, 4); in DecodeVOLHeader()
618 currVol->complexity.mc = BitstreamReadBits16(stream, 6); in DecodeVOLHeader()
957 if ((currVol->complexity.text_1 >> 3) & 0x1) /* intra */ in DecodeVOPHeader()
959 if (currVol->complexity.text_1 & 0x1) /* not_coded */ in DecodeVOPHeader()
961 if ((currVol->complexity.text_2 >> 3) & 0x1) /* dct_coefs */ in DecodeVOPHeader()
963 if ((currVol->complexity.text_2 >> 2) & 0x1) /* dct_lines */ in DecodeVOPHeader()
965 if ((currVol->complexity.text_2 >> 1) & 0x1) /* vlc_symbols */ in DecodeVOPHeader()
967 if (currVol->complexity.text_2 & 0x1) /* vlc_bits */ in DecodeVOPHeader()
972 if ((currVol->complexity.text_1 >> 2) & 0x1) /* inter */ in DecodeVOPHeader()
[all …]
Dmp4lib_int.h94 Complexity_Est complexity; /* complexity estimation flags */ member
/frameworks/base/core/java/android/app/
DKeyguardManager.java967 @PasswordComplexity int complexity) { in isValidLockPasswordComplexity() argument
972 complexity = PasswordMetrics.sanitizeComplexityLevel(complexity); in isValidLockPasswordComplexity()
976 return PasswordMetrics.validateCredential(adminMetrics, complexity, in isValidLockPasswordComplexity()
992 public int getMinLockLength(boolean isPin, @PasswordComplexity int complexity) { in getMinLockLength() argument
996 complexity = PasswordMetrics.sanitizeComplexityLevel(complexity); in getMinLockLength()
1000 PasswordMetrics.applyComplexity(adminMetrics, isPin, complexity); in getMinLockLength()
1020 @PasswordComplexity int complexity) { in setLock() argument
1030 if (!isValidLockPasswordComplexity(lockType, password, complexity)) { in setLock()
/frameworks/av/media/module/codecs/amrwb/enc/inc/
Dq_gain2.tab24 * pitch gain are ordered in table to reduce complexity *
/frameworks/base/core/java/android/app/admin/
DSecurityLogTags.logtags42 … security_password_complexity_required (package|3),(admin_user|1),(target_user|1),(complexity|1)
DPasswordMetrics.java366 public static int complexityLevelToMinQuality(int complexity) { in complexityLevelToMinQuality() argument
367 switch (complexity) { in complexityLevelToMinQuality()
672 int complexity) { in applyComplexity() argument
673 return applyComplexity(adminMetrics, isPin, ComplexityBucket.forComplexity(complexity)); in applyComplexity()
/frameworks/proto_logging/stats/enums/stats/mediametrics/
Dmediametrics.proto208 // Audio data format: MPEG-H low complexity profile, level 3
210 // Audio data format: MPEG-H low complexity profile, level 4
/frameworks/av/media/codec2/components/opus/
DC2SoftOpusEnc.cpp152 int complexity = mIntf->getComplexity(); in configureEncoder() local
181 mEncoder, OPUS_SET_COMPLEXITY(complexity)) != OPUS_OK) { in configureEncoder()
/frameworks/base/media/java/android/media/
DMediaCodecInfo.java3950 Integer complexity, Integer quality, Integer profile) {
3952 if (ok && complexity != null) {
3953 ok = mComplexityRange.contains(complexity);
4000 Integer complexity = (Integer)map.get(MediaFormat.KEY_COMPLEXITY);
4004 if (complexity == null) {
4005 complexity = flacComplexity;
4006 } else if (flacComplexity != null && !complexity.equals(flacComplexity)) {
4027 return supports(complexity, quality, profile);
/frameworks/base/services/permission/java/com/android/server/permission/access/immutable/
DImmutable.md182 terms of complexity and in terms of performance, and vastly different from the Android-specific
202 | Integration complexity | A `SnapshotCache` field for every existing field, and a correctly implem…
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DDevicePolicyManagerTest.java7618 for (int complexity : allowedModes) { in testSetRequiredPasswordComplexity_validValuesOnly()
7620 dpm.setRequiredPasswordComplexity(complexity); in testSetRequiredPasswordComplexity_validValuesOnly()
7633 for (int complexity : allowedModes) { in testSetRequiredPasswordComplexity_setAndGet()
7634 dpm.setRequiredPasswordComplexity(complexity); in testSetRequiredPasswordComplexity_setAndGet()
7635 assertThat(dpm.getRequiredPasswordComplexity()).isEqualTo(complexity); in testSetRequiredPasswordComplexity_setAndGet()
7652 for (int complexity : allowedModes) { in testSetRequiredPasswordComplexityOnParent_setAndGet()
7653 dpm.getParentProfileInstance(admin1).setRequiredPasswordComplexity(complexity); in testSetRequiredPasswordComplexityOnParent_setAndGet()
7655 .isEqualTo(complexity); in testSetRequiredPasswordComplexityOnParent_setAndGet()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java4292 Integer complexity = mDevicePolicyEngine.getLocalPolicySetByAdmin(
4296 hasComplexitySet = complexity != null && complexity != PASSWORD_COMPLEXITY_NONE;
5300 int complexity = getAggregatedPasswordComplexityLocked(parentUser, true);
5305 PasswordMetrics.validatePasswordMetrics(minMetrics, complexity, metrics);
5409 final int complexity = getAggregatedPasswordComplexityLocked(userId);
5412 PasswordMetrics.validatePasswordMetrics(minMetrics, complexity, metrics);
5600 boolean parent, int complexity) {
5604 adminPackageName, userId, affectedUserId, complexity);
5667 Integer complexity = mDevicePolicyEngine.getResolvedPolicy(
5670 return complexity != null ? complexity : PASSWORD_COMPLEXITY_NONE;
[all …]
/frameworks/av/media/module/extractors/mp4/
DMPEG4Extractor.cpp3523 unsigned complexity = br.getBits(8); in parseEAC3SpecificBox() local
3524 ALOGV("Found a JOC stream with complexity = %d", complexity); in parseEAC3SpecificBox()
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt14962 field public static final java.lang.String KEY_COMPLEXITY = "complexity";
/frameworks/base/core/api/
Dcurrent.txt23648 field public static final String KEY_COMPLEXITY = "complexity";