Home
last modified time | relevance | path

Searched refs:super (Results 1 – 25 of 51) sorted by relevance

123

/system/keymaster/ng/include/
DAndroidKeymaster41Device.h62 using super = V4_0::ng::AndroidKeymaster4Device; variable
66 : super(KmVersion::KEYMASTER_4_1, securityLevel) {} in AndroidKeymaster41Device()
73 Return<void> getHardwareInfo(super::getHardwareInfo_cb _hidl_cb) override { in getHardwareInfo()
74 return super::getHardwareInfo(_hidl_cb); in getHardwareInfo()
77 Return<void> getHmacSharingParameters(super::getHmacSharingParameters_cb _hidl_cb) override { in getHmacSharingParameters()
78 return super::getHmacSharingParameters(_hidl_cb); in getHmacSharingParameters()
82 super::computeSharedHmac_cb _hidl_cb) override { in computeSharedHmac()
83 return super::computeSharedHmac(params, _hidl_cb); in computeSharedHmac()
89 super::verifyAuthorization_cb _hidl_cb) override { in verifyAuthorization()
90 return super::verifyAuthorization(challenge, parametersToVerify, authToken, _hidl_cb); in verifyAuthorization()
[all …]
/system/keymaster/legacy_support/
Drsa_keymaster1_operation.h54 typedef BaseOperation super; typedef
61 wrapped_operation_(super::purpose(), engine) { in RsaKeymaster1Operation()
63 assert(super::purpose() != KM_PURPOSE_VERIFY); in RsaKeymaster1Operation()
64 assert(super::purpose() != KM_PURPOSE_ENCRYPT); in RsaKeymaster1Operation()
69 keymaster_error_t error = wrapped_operation_.Begin(super::rsa_key_, input_params); in Begin()
71 return super::Begin(input_params, output_params); in Begin()
77 keymaster_error_t error = wrapped_operation_.PrepareFinish(super::rsa_key_, input_params); in Finish()
79 error = super::Finish(input_params, input, signature, output_params, output); in Finish()
80 if (wrapped_operation_.GetError(super::rsa_key_) != KM_ERROR_OK) in Finish()
81 error = wrapped_operation_.GetError(super::rsa_key_); in Finish()
[all …]
Decdsa_keymaster1_operation.h55 typedef BaseOperation super; typedef
62 wrapped_operation_(super::purpose(), engine) { in EcdsaKeymaster1Operation()
64 assert(super::purpose() != KM_PURPOSE_VERIFY); in EcdsaKeymaster1Operation()
65 assert(super::purpose() != KM_PURPOSE_ENCRYPT); in EcdsaKeymaster1Operation()
70 keymaster_error_t error = wrapped_operation_.Begin(super::ecdsa_key_, input_params); in Begin()
72 return super::Begin(input_params, output_params); in Begin()
78 keymaster_error_t error = wrapped_operation_.PrepareFinish(super::ecdsa_key_, input_params); in Finish()
80 error = super::Finish(input_params, input, signature, output_params, output); in Finish()
81 if (wrapped_operation_.GetError(super::ecdsa_key_) != KM_ERROR_OK) in Finish()
82 error = wrapped_operation_.GetError(super::ecdsa_key_); in Finish()
[all …]
/system/sepolicy/private/
Dremount.te16 # Allow remount to flip the overlayfs bit in the super partition.
17 # This requires being able to read fstab, find /dev/block/by-name/super,
18 # and read-write super.
Dlpdumpd.te10 # Allow lpdumpd to find the super partition block device.
13 # Allow lpdumpd to read super partition metadata.
Dupdate_engine_common.te89 # read / write metadata on super device to resize partitions
92 # ioctl on super device to get block device alignment and alignment offset
/system/extras/partition_tools/
DREADME.md5 lpmake is a command-line tool for generating a "super" partition image. It can currently generate t…
11 * `-d,--device-size` - The size of the "super" partition on the device. It must match exactly, and …
20 * `--alignment-offset=N` - In some cases, the "super" partition is misaligned within its parent blo…
25 Example usage. This specifies a 10GB super partition for an A/B device, with a single 64MiB "cache"…
31 -o /tmp/super.img \
49 lpadd is a command-line tool for adding images to a super.img file, or a partition to a super\_empt…
57 * `SUPER_FILE` - The `super.img` or `super_empty.img` file. If the image is sparsed, it will be tem…
60 * `IMAGE_FILE` - If specified, the contents of the image will be embedded in the given super.img. T…
Dlpdumpd.rc23 # On Launch devices, assume "super". On virtual devices, ${ro.boot.super_partition}
25 file /dev/block/by-name/${ro.boot.super_partition:-super} r
Ddynamic_partitions_device_info.proto33 /** Total size of all extents on super partition */
66 /** Total size of the super in bytes */
Dlpadd.cc483 SuperHelper super(super_path); in main() local
484 if (!super.Open()) { in main()
492 if (!super.AddPartition(partition_name, group_name, attributes, image_path, replace)) { in main()
495 if (!super.Finalize()) { in main()
/system/extras/tests/bootloader/
Dshelltest.py21 super(ShellTest, self).__init__(*args, **kwargs)
Dhaltest.py24 super(HalTest, self).__init__(*args, **kwargs)
/system/extras/simpleperf/scripts/test/
Dapp_profiler_test.py28 super(TestNativeProfiling, self).setUp()
68 super(TestNativeLibDownloader, self).setUp()
75 super(TestNativeLibDownloader, self).tearDown()
Dapp_test.py65 super(TestExampleBase, self).setUp()
88 super(TestExampleBase, self).run(result)
231 super(TestRecordingRealApps, self).setUp()
238 super(TestRecordingRealApps, self).tearDown()
Dcpp_app_test.py91 super().setUp()
210 super().test_smoke()
Dpurgatorio_test.py27 super().setUp()
Dkotlin_app_test.py101 super().setUp()
/system/core/fastboot/testdata/
Dmake_super_images.sh20 --output=super.img \
/system/core/fs_mgr/liblp/fuzzer/
Dliblp_apis_fuzzer.cpp126 Partition* super = mBuilder->AddPartition(mSuperPartitionName, LP_PARTITION_ATTR_READONLY); in setupBuilder() local
129 if (super) { in setupBuilder()
136 mBuilder->AddLinearExtent(super, mBlockDeviceInfoName, numSectors, physicalSector); in setupBuilder()
/system/core/fs_mgr/liblp/
Dbuilder.cpp473 LpMetadataBlockDevice& super = block_devices_[0]; in Init() local
479 if (super.size < total_reserved) { in Init()
487 if (super.alignment) { in Init()
488 ok = AlignTo(free_area_start, super.alignment, &free_area_start); in Init()
496 super.first_logical_sector = free_area_start / LP_SECTOR_SIZE; in Init()
499 uint64_t minimum_disk_size = (super.first_logical_sector * LP_SECTOR_SIZE) + logical_block_size; in Init()
500 if (super.size < minimum_disk_size) { in Init()
502 << super.size; in Init()
776 const auto& super = block_devices_[0]; in PrioritizeSecondHalfOfSuper() local
777 uint64_t first_sector = super.first_logical_sector; in PrioritizeSecondHalfOfSuper()
[all …]
/system/core/fs_mgr/libsnapshot/android/snapshot/
Dsnapshot.proto68 // partition represented in the super partition metadata. This partition and
72 // blocks in the super partition, and use those before creating the COW
75 // This value is 0 if no space in super is left for the COW partition.
249 // Total size used by COWs, including /data and the super partition.
/system/logging/logd/integration_test/
Dlogd_integration_test.py101 return SubTestLogger(super(), subtest_name)
/system/extras/simpleperf/runtest/
Druntest.py331 super(HostRunner, self).__init__(target, perf_path)
349 super(DeviceRunner, self).__init__(target, self.tmpdir + perf_path)
369 super(DeviceRunner, self).record(self.tmpdir + test_executable_name,
374 super(DeviceRunner, self).report(self.tmpdir + record_file,
/system/tools/hidl/
DInterface.cpp819 const Interface* super = superType(); in emitHidlDefinition() local
820 if (super != nullptr && !super->isIBase()) { in emitHidlDefinition()
821 out << "extends " << super->fqName().getRelativeFQName(fqName()) << " "; in emitHidlDefinition()
/system/core/fastboot/
DREADME.md183 update-super Updates the super partition
195 optimized flash super task. Fastboot will explicitly pattern match the
202 update-super ---> generate optimized flash super task
241 update-super:%s:%s Write the previously downloaded image to a super
256 size, in the super partition.

123