Home
last modified time | relevance | path

Searched refs:c (Results 1 – 25 of 35) sorted by relevance

12

/bootable/libbootloader/gbl/libfdt/
DBUILD.libfdt_c.bazel24 "acpi.c",
25 "fdt.c",
26 "fdt_addresses.c",
27 "fdt_check.c",
28 "fdt_empty_tree.c",
29 "fdt_overlay.c",
30 "fdt_ro.c",
31 "fdt_rw.c",
32 "fdt_strerror.c",
33 "fdt_sw.c",
[all …]
/bootable/libbootloader/gbl/libavb/
DBUILD.avb.bazel73 "libavb/avb_chain_partition_descriptor.c",
74 "libavb/avb_cmdline.c",
75 "libavb/avb_crc32.c",
76 "libavb/avb_crypto.c",
77 "libavb/avb_descriptor.c",
78 "libavb/avb_footer.c",
79 "libavb/avb_hash_descriptor.c",
80 "libavb/avb_hashtree_descriptor.c",
81 "libavb/avb_kernel_cmdline_descriptor.c",
82 "libavb/avb_property_descriptor.c",
[all …]
/bootable/libbootloader/gbl/libgbl/src/
Dlib.rs81 pub struct PartitionRamMap<'b, 'c> {
87 pub address: Option<&'c mut [u8]>,
114 pub fn get_boot_image<'a: 'b, 'b: 'c, 'c, 'd>( in get_boot_image() argument
116 partitions_ram_map: &'a mut [PartitionRamMap<'b, 'c>], in get_boot_image() argument
117 ) -> (Option<BootImage<'c>>, &'a mut [PartitionRamMap<'b, 'c>]) { in get_boot_image() argument
129 pub fn get_vendor_boot_image<'a: 'b, 'b: 'c, 'c, 'd>( in get_vendor_boot_image() argument
131 partitions_ram_map: &'a mut [PartitionRamMap<'b, 'c>], in get_vendor_boot_image() argument
132 ) -> (Option<VendorBootImage<'c>>, &'a mut [PartitionRamMap<'b, 'c>]) { in get_vendor_boot_image() argument
143 pub fn get_init_boot_image<'a: 'b, 'b: 'c, 'c, 'd>( in get_init_boot_image() argument
145 partitions_ram_map: &'a mut [PartitionRamMap<'b, 'c>], in get_init_boot_image() argument
[all …]
Dslots.rs79 fn from(c: char) -> Self { in from()
80 Self(c) in from()
/bootable/recovery/tests/unit/
Dfuse_provider_test.cpp54 for (char c = 0; c < 10; c++) { in TEST() local
55 content += std::string(4096, c); in TEST()
81 for (char c = 0; c < 10; c++) { in TEST() local
82 content += std::string(4096, c); in TEST()
Dinstall_test.cpp387 for (char c = 'a'; c <= 'z'; c++) { in TEST() local
388 serial_numbers.emplace_back(serialno.size(), c); in TEST()
/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/
DUpdateConfig.java55 UpdateConfig c = new UpdateConfig(); in fromJson() local
58 c.mName = o.getString("name"); in fromJson()
59 c.mUrl = o.getString("url"); in fromJson()
62 c.mAbInstallType = AB_INSTALL_TYPE_NON_STREAMING; in fromJson()
65 c.mAbInstallType = AB_INSTALL_TYPE_STREAMING; in fromJson()
88 c.mAbConfig = new AbConfig( in fromJson()
94 c.mRawJson = json; in fromJson()
95 return c; in fromJson()
/bootable/recovery/tests/testdata/
Drecovery_body248 …RCP ��� �������������������.������������������g/adf-interfacen�����������������…
273 …��������������������������ERCP ��� ������������������������������������/block��� �/U
279 …���������������ERCP ��� �������������������������� �����������;/block/dm-n���������…
284 …���������������ERCP ��� �������������������������� �����������=/block/loopn�������…
290 �����������/block/vold/W
297 �����������;/block/ramn�������������������������������by�;����u:object_r:ram_device:s…
302 …���������������ERCP ��� �������������������������� �����������=/block/zramn�������…
313 …������������������������ERCP ��� ������������������������������������ /cpuctl��� �/U
320 …��������������������ERCP ��� �������������������������� ����������$/fscklogs��� �/U
327 …��������������������ERCP ��� �������������������������� ����������$/graphics��� �/U
[all …]
/bootable/libbootloader/gbl/libc/src/
Dlib.rs53 for c in bytes.iter().rev() { in strrchr()
54 if *c == target { in strrchr()
55 return c as *const _ as *mut _; in strrchr()
/bootable/libbootloader/gbl/efi/src/
Dfastboot.rs36 struct EfiFastbootTcpTransport<'a, 'b, 'c> {
38 socket: &'c mut EfiTcpSocket<'a, 'b>,
41 impl<'a, 'b, 'c> EfiFastbootTcpTransport<'a, 'b, 'c> {
42 fn new(socket: &'c mut EfiTcpSocket<'a, 'b>) -> Self { in new()
/bootable/libbootloader/gbl/libstorage/src/
Dnon_blocking.rs533 pub fn write_scoped<'c, 'd: 'c>( in write_scoped() argument
534 &'c mut self, in write_scoped()
537 ) -> Result<Transaction<'c, 'd>> { in write_scoped() argument
546 pub fn read_scoped<'c, 'd: 'c>( in read_scoped() argument
547 &'c mut self, in read_scoped()
550 ) -> Result<Transaction<'c, 'd>> { in read_scoped() argument
Dgpt.rs86 for c in char::decode_utf16(self.name) { in name_to_str()
87 match c.unwrap_or(char::REPLACEMENT_CHARACTER) { in name_to_str()
89 c if c.len_utf8() <= buffer[index..].len() => { in name_to_str()
90 index += c.encode_utf8(&mut buffer[index..]).len() in name_to_str()
/bootable/libbootloader/gbl/docs/
DEFI_ANDROID_BOOT_PROTOCOL.md26 ```c
38 ```c
44 ```c
91 ```c
157 ```c
196 ```c
244 ```c
/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/
DUpdateConfigTest.java115 UpdateConfig c = UpdateConfig.fromJson(JSON_NON_STREAMING); in getUpdatePackageFile_works() local
116 assertEquals("/my-builds/a.zip", c.getUpdatePackageFile().getAbsolutePath()); in getUpdatePackageFile_works()
/bootable/libbootloader/gbl/libc/include/
Dstring.h24 char *strrchr(const char *str, int c);
/bootable/libbootloader/vts/
DPREUPLOAD.cfg6 clang_format = --commit ${PREUPLOAD_COMMIT} --style file --extensions c,h,cc
/bootable/recovery/tools/recovery_l10n/
DREADME.md28 * "pngcrush -c 0 ..." converts "text-out.png" into a 1-channel image,
36 pngcrush -c 0 text-out.png $OUTPUT_PNG
/bootable/libbootloader/gbl/libefi/src/protocol/
Ddevice_path.rs98 for c in char::decode_utf16(text.into_iter().map(|v| *v)) { in fmt()
99 match c.unwrap_or(char::REPLACEMENT_CHARACTER) { in fmt()
/bootable/recovery/
DPREUPLOAD.cfg6 clang_format = --commit ${PREUPLOAD_COMMIT} --style file --extensions c,h,cc,cpp
/bootable/libbootloader/gbl/libavb/src/
Dlib.rs147 c: core::ffi::c_int, in avb_memset()
152 arr.fill(c as u8); in avb_memset()
/bootable/deprecated-ota/applypatch/
DNOTICE16 bsdiff.c
17 bspatch.c
/bootable/deprecated-ota/tests/unit/
Dupdater_test.cpp1045 std::string c(4096, 'c'); in GenerateTransferList() local
1056 std::string c_hash = GetSha1(c); in GenerateTransferList()
1077 std::string bdc = b + d + c; in GenerateTransferList()
1088 std::string abcd = a + b + c + d; in GenerateTransferList()
1090 std::string dcb = d + c + b; in GenerateTransferList()
1164 g_source_image = a + b + c + d + e + a + b + c + d + e; in GenerateTransferList()
1165 g_target_image = zero + i + h + g + f + e + d + c + b + a; in GenerateTransferList()
/bootable/libbootloader/gbl/libelf/
DBUILD51 "-std=c++17",
/bootable/libbootloader/gbl/libgbl/testdata/
Dtestkey_rsa4096.pem30 c/hn5HcmnmBJN4R04nLG/aU9SQur87a4mnC/Mp9JIARjHlZ/WNT4U0sJyPEVRg5U
/bootable/libbootloader/gbl/libgbl/src/slots/
Dandroid.rs394 .map(|c| Slot { in test_slot_block_defaults()
395 suffix: c.into(), in test_slot_block_defaults()
414 .map(|c| Slot { in test_slot_block_fewer_slots()
415 suffix: c.into(), in test_slot_block_fewer_slots()

12