OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:slot_suffix
(Results
1 - 6
of
6
) sorted by null
/bootable/recovery/bootloader_message/include/bootloader_message/
bootloader_message.h
54
* The
slot_suffix
field is used for A/B implementations where the
55
* bootloader does not set the androidboot.ro.boot.
slot_suffix
kernel
72
char
slot_suffix
[32];
member in struct:bootloader_message
/frameworks/native/cmds/installd/
otapreopt_slot.sh
21
SLOT_SUFFIX
=$(getprop ro.boot.
slot_suffix
)
22
if test -n "$
SLOT_SUFFIX
" ; then
23
if test -d /data/ota/$
SLOT_SUFFIX
/dalvik-cache ; then
24
log -p i -t otapreopt_slot "Moving A/B artifacts for slot ${
SLOT_SUFFIX
}."
27
NEW_SIZE=$(du -h -s /data/ota/$
SLOT_SUFFIX
/dalvik-cache)
28
mv /data/ota/$
SLOT_SUFFIX
/dalvik-cache/* /data/dalvik-cache/
29
rmdir /data/ota/$
SLOT_SUFFIX
/dalvik-cache
30
rmdir /data/ota/$
SLOT_SUFFIX
33
log -p i -t otapreopt_slot "No A/B artifacts found for slot ${
SLOT_SUFFIX
}.
[
all
...]
commands.cpp
2199
std::string
slot_suffix
;
local
[
all
...]
/system/core/fs_mgr/
fs_mgr_slotselect.c
35
// Copies
slot_suffix
from misc into |out_suffix|. Returns 0 on
36
// success, -1 on error or if there is no non-empty
slot_suffix
.
75
if (msg.
slot_suffix
[0] == '\0')
77
strncpy(out_suffix, msg.
slot_suffix
, suffix_len);
81
// Gets
slot_suffix
from either the kernel cmdline / firmware or the
83
// -1 if
slot_suffix
could not be determined.
92
property_get("ro.boot.
slot_suffix
", propbuf, "");
105
ERROR("Error determining
slot_suffix
\n");
110
// Updates |fstab| for
slot_suffix
. Returns 0 on success, -1 on error.
/bootable/recovery/update_verifier/
update_verifier.cpp
55
char
slot_suffix
[PROPERTY_VALUE_MAX];
local
56
property_get("ro.boot.
slot_suffix
",
slot_suffix
, "");
57
std::string blk_device = blk_device_prefix + std::string(
slot_suffix
);
/system/extras/boot_control_copy/
bootinfo.c
124
#define BOOTINFO_OFFSET offsetof(struct bootloader_message,
slot_suffix
)
Completed in 736 milliseconds