/aosp12/hardware/interfaces/gatekeeper/1.0/software/ |
H A D | SoftGateKeeper.h | 103 failure_record_t* stored = &failure_map_[uid]; in GetFailureRecord() local 104 if (user_id != stored->secure_user_id) { in GetFailureRecord() 105 stored->secure_user_id = user_id; in GetFailureRecord() 106 stored->last_checked_timestamp = 0; in GetFailureRecord() 107 stored->failure_counter = 0; in GetFailureRecord() 109 memcpy(record, stored, sizeof(*record)); in GetFailureRecord() 114 failure_record_t* stored = &failure_map_[uid]; in ClearFailureRecord() local 115 stored->secure_user_id = user_id; in ClearFailureRecord() 116 stored->last_checked_timestamp = 0; in ClearFailureRecord() 117 stored->failure_counter = 0; in ClearFailureRecord()
|
/aosp12/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | SetTagsTest.java | 58 final Object stored = mView.getTag(); in testGetTag() local 59 assertNotNull(stored); in testGetTag() 60 assertSame("The stored tag is inccorect", o, stored); in testGetTag() 73 final Object stored = mView.getTag(R.id.a); in testGetTagWithKey() local 74 assertNotNull(stored); in testGetTagWithKey() 75 assertSame("The stored tag is inccorect", o, stored); in testGetTagWithKey()
|
/aosp12/packages/apps/ThemePicker/src/com/android/customization/model/clock/ |
H A D | ClockManager.java | 48 boolean stored; in handleApply() 53 stored = Secure.putString(mContentResolver, CLOCK_FACE_SETTING, json.toString()); in handleApply() 55 stored = false; in handleApply() 57 if (stored) { in handleApply()
|
/aosp12/packages/modules/StatsD/lib/libkll/proto/ |
H A D | kll-quantiles.proto | 40 // which are not difference encoded (see below). All values are stored in 44 // Optionally used for values of integral types stored in a packed 48 // next higher values are stored as (packed) varints. 69 // items type is stored in AggregatorStateProto.value_type. 70 // num_items is stored in AggregatorStateProto.num_values. 78 // stream). Weights associated with each compactor are stored implicitly
|
/aosp12/art/test/530-checker-lse3/ |
H A D | info.txt | 2 a wider value is stored in a narrower field and then loaded from that field, 3 LSE needs to replace the value to be stored with a type conversion to the
|
/aosp12/frameworks/opt/telephony/proto/src/ |
H A D | pin_storage.proto | 28 // The PIN code is stored, but cannot be used for automatic verification. 31 // The PIN code is stored and will be usable for automatic verification after the 35 // The PIN code is stored and can be used for automatic verification.
|
/aosp12/hardware/interfaces/camera/device/3.4/ |
H A D | types.hal | 237 * - Store the request.v3_2 settings, overwriting the previously stored 238 * request.v3_2 settings and clearing all previously stored physical device 243 * - Store the request.v3_2 settings, overwriting the previously stored 248 * the settings, overwriting the previously stored settings for this 257 * - Clear all previously stored physical device settings. 258 * - Apply the stored request.v3_2 settings to all buffers. If there is no 259 * stored request.v3_2 settings, return error. 263 * cameras as the stored physical camera settings, return error. 267 * the previously stored settings for this physical camera to the buffers 269 * - Apply the stored request.v3_2 settings to all buffers belonging to [all …]
|
/aosp12/frameworks/base/services/core/java/com/android/server/locksettings/ |
H A D | LockSettingsStorage.java | 256 byte[] stored = readFile(getLockPasswordFilename(userId)); in readPasswordHashIfExists() 257 if (!ArrayUtils.isEmpty(stored)) { in readPasswordHashIfExists() 258 return new CredentialHash(stored, LockPatternUtils.CREDENTIAL_TYPE_PASSWORD_OR_PIN); in readPasswordHashIfExists() 264 byte[] stored = readFile(getLockPatternFilename(userId)); in readPatternHashIfExists() 265 if (!ArrayUtils.isEmpty(stored)) { in readPatternHashIfExists() 266 return new CredentialHash(stored, LockPatternUtils.CREDENTIAL_TYPE_PATTERN); in readPatternHashIfExists() 360 byte[] stored = null; in readFile() 362 stored = new byte[(int) raf.length()]; in readFile() 363 raf.readFully(stored, 0, stored.length); in readFile() 371 mCache.putFileIfUnchanged(name, stored, version); in readFile() [all …]
|
/aosp12/packages/modules/NetworkStack/tests/unit/src/com/android/server/connectivity/ipmemorystore/ |
H A D | IpMemoryStoreServiceTest.java | 583 final ArrayList<NetworkAttributes> stored = new ArrayList<>(); 586 stored.add(storeAttributes(FAKE_KEYS[0], na.build())); 591 stored.add(storeAttributes(FAKE_KEYS[1], na.build())); 597 stored.add(storeAttributes(FAKE_KEYS[2], na.build())); 599 stored.add(storeAttributes(FAKE_KEYS[3], na.build())); 602 stored.add(storeAttributes(FAKE_KEYS[4], na.build())); 604 stored.add(storeAttributes(FAKE_KEYS[5], na.build())); 605 return stored; 610 final List<NetworkAttributes> stored = storeFixture(); 612 stored.get(stored.size() - 1));
|
/aosp12/frameworks/base/core/proto/android/server/ |
H A D | usagestatsservice.proto | 48 // Time attributes stored as an offset of the IntervalStats's beginTime. 54 // Time attributes stored as an offset of the IntervalStats's beginTime. 57 // Time attributes stored as an offset of the IntervalStats's beginTime. 60 // Time attributes stored as an offset of the IntervalStats's beginTime.
|
/aosp12/packages/modules/GeoTZ/s2storage/ |
H A D | README.md | 67 stored using only a subset of the bits needed to store a full S2 cell ID. 71 the "same prefix" property. All ranges with a common prefix can be stored in one "suffix table". 73 The time zone ID strings are also only stored once and are referenced indirectly, avoiding repeated 114 Sets of one or more time zone IDs are referenced by every range stored in the TZ S2 data file. 116 Individual time zone IDs are strings like "America/Los_Angeles" that should only be stored once to 137 Every time zone ID string referenced in the file is assigned a numeric ID. The string is stored once 160 table, so this means that it can be stored once per table and only the (small) `{TZ IDs set ID}` 161 needs to be stored with each entry.
|
/aosp12/packages/services/Car/cpp/evs/manager/1.1/emul/ |
H A D | EvsEmulatedCamera.cpp | 500 auto stored = false; in importExternalBuffers() local 507 stored = true; in importExternalBuffers() 512 if (!stored) { in importExternalBuffers() 642 bool stored = false; in increaseAvailableFrames_Locked() local 648 stored = true; in increaseAvailableFrames_Locked() 653 if (!stored) { in increaseAvailableFrames_Locked()
|
/aosp12/packages/modules/Wifi/service/proto/src/ |
H A D | scorecard.proto | 33 // This message is not stored in the MemoryStore. It is used to package 39 optional string ssid = 1; // The SSID (not stored) 51 // known to the device. The BSSID itself is not stored in persistent storage. 54 optional bytes bssid = 2; // BSSID of the access point (not stored) 108 // The upper bound is not stored explicitly.
|
/aosp12/hardware/interfaces/weaver/1.0/ |
H A D | IWeaver.hal | 56 * Attempts to retrieve the value stored in the identified slot. 58 * The value is only returned if the provided key matches the key stored in 67 * @param key that is stored in the slot.
|
/aosp12/frameworks/rs/script_api/ |
H A D | rs_time.spec | 69 hour, etc. This value is stored at *local. 83 If timer is non-NULL, the result is also stored in the memory pointed to by
|
/aosp12/hardware/interfaces/gnss/1.0/ |
H A D | IGnssMeasurementCallback.hal | 26 /** A valid 'leap second' is stored in the data structure. */ 28 /** A valid 'time uncertainty' is stored in the data structure. */ 30 /** A valid 'full bias' is stored in the data structure. */ 32 /** A valid 'bias' is stored in the data structure. */ 34 /** A valid 'bias uncertainty' is stored in the data structure. */ 36 /** A valid 'drift' is stored in the data structure. */ 38 /** A valid 'drift uncertainty' is stored in the data structure. */ 47 /** A valid 'snr' is stored in the data structure. */ 49 /** A valid 'carrier frequency' is stored in the data structure. */ 51 /** A valid 'carrier cycles' is stored in the data structure. */ [all …]
|
/aosp12/packages/services/Car/cpp/evs/sampleDriver/ |
H A D | EvsV4lCamera.cpp | 515 auto stored = false; in importExternalBuffers() local 522 stored = true; in importExternalBuffers() 527 if (!stored) { in importExternalBuffers() 656 bool stored = false; in increaseAvailableFrames_Locked() local 662 stored = true; in increaseAvailableFrames_Locked() 666 if (!stored) { in increaseAvailableFrames_Locked()
|
/aosp12/build/make/tools/zipalign/ |
H A D | README.txt | 8 -p : page align stored shared object files 37 The "-p" flag aligns any file with a ".so" extension, and which is stored
|
/aosp12/hardware/interfaces/automotive/evs/1.0/default/ |
H A D | EvsCamera.cpp | 326 bool stored = false; in increaseAvailableFrames_Locked() local 332 stored = true; in increaseAvailableFrames_Locked() 336 if (!stored) { in increaseAvailableFrames_Locked()
|
/aosp12/frameworks/rs/script_api/include/ |
H A D | rs_time.rsh | 74 * hour, etc. This value is stored at *local. 80 * local: Pointer to time structure where the local time will be stored. 93 * If timer is non-NULL, the result is also stored in the memory pointed to by
|
/aosp12/hardware/interfaces/gnss/2.1/ |
H A D | IGnssMeasurementCallback.hal | 33 * A valid full inter-signal bias is stored in the data structure. 37 * A valid full inter-signal bias uncertainty is stored in the data structure. 41 * A valid satellite inter-signal bias is stored in the data structure. 45 * A valid satellite inter-signal bias uncertainty is stored in the data structure.
|
/aosp12/hardware/interfaces/automotive/evs/1.1/default/ |
H A D | EvsUltrasonicsArray.cpp | 409 bool stored = false; in increaseAvailableFrames_Locked() local 415 stored = true; in increaseAvailableFrames_Locked() 420 if (!stored) { in increaseAvailableFrames_Locked()
|
/aosp12/art/test/606-erroneous-class/ |
H A D | info.txt | 2 from being stored into it. This was bogus because the status of a class can be
|
/aosp12/hardware/interfaces/gnss/2.0/ |
H A D | types.hal | 29 /** A valid timestampNs is stored in the data structure. */ 31 /** A valid timeUncertaintyNs is stored in the data structure. */
|
/aosp12/bionic/libc/tzcode/ |
H A D | localtime.c | 381 register int stored; in tzloadbody() local 439 for (stored = 4; stored <= 8; stored *= 2) { in tzloadbody() 456 + timecnt * stored /* ats */ in tzloadbody() 460 + leapcnt * (stored + 4) /* lsinfos */ in tzloadbody() 475 = stored == 4 ? detzcode(p) : detzcode64(p); in tzloadbody() 489 p += stored; in tzloadbody() 524 int_fast64_t tr = stored == 4 ? detzcode(p) : detzcode64(p); in tzloadbody() 525 int_fast32_t corr = detzcode(p + stored); in tzloadbody() 526 p += stored + 4; in tzloadbody()
|