Home
last modified time | relevance | path

Searched refs:id (Results 1 – 12 of 12) sorted by relevance

/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/ui/
DMainActivity.java77 this.mTextViewBuild = findViewById(R.id.textViewBuild); in onCreate()
78 this.mSpinnerConfigs = findViewById(R.id.spinnerConfigs); in onCreate()
79 this.mTextViewConfigsDirHint = findViewById(R.id.textViewConfigsDirHint); in onCreate()
80 this.mButtonReload = findViewById(R.id.buttonReload); in onCreate()
81 this.mButtonApplyConfig = findViewById(R.id.buttonApplyConfig); in onCreate()
82 this.mButtonStop = findViewById(R.id.buttonStop); in onCreate()
83 this.mButtonReset = findViewById(R.id.buttonReset); in onCreate()
84 this.mButtonSuspend = findViewById(R.id.buttonSuspend); in onCreate()
85 this.mButtonResume = findViewById(R.id.buttonResume); in onCreate()
86 this.mProgressBar = findViewById(R.id.progressBar); in onCreate()
[all …]
/bootable/recovery/update_verifier/
Dcare_map_generator.py54 info.id = lines[index + 2]
57 info.name, info.ranges, info.id, info.fingerprint)
82 assert info.id, "property id is required in care_map"
84 info_list += [info.id, info.fingerprint]
Dupdate_verifier.cpp87 property_reader_([](const std::string& id) { return android::base::GetProperty(id, ""); }) {} in UpdateVerifier() argument
263 if (partition.id().empty() || partition.id() == "unknown") { in ParseCareMap()
269 std::string fingerprint = property_reader_(partition.id()); in ParseCareMap()
Dcare_map.proto26 string id = 3; field
/bootable/recovery/recovery_utils/include/recovery_utils/
Dlogging.h41 ssize_t logbasename(log_id_t id, char prio, const char* filename, const char* buf, size_t len,
44 ssize_t logrotate(log_id_t id, char prio, const char* filename, const char* buf, size_t len,
/bootable/recovery/updater/
Dblockimg.cpp619 static void PrintHashForCorruptedStashedBlocks(const std::string& id, in PrintHashForCorruptedStashedBlocks() argument
622 LOG(INFO) << "printing hash in hex for stash_id: " << id; in PrintHashForCorruptedStashedBlocks()
637 static void PrintHashForMissingStashedBlocks(const std::string& id, int fd) { in PrintHashForMissingStashedBlocks() argument
638 if (stash_map.find(id) == stash_map.end()) { in PrintHashForMissingStashedBlocks()
639 LOG(ERROR) << "No stash saved for id: " << id; in PrintHashForMissingStashedBlocks()
643 LOG(INFO) << "print hash in hex for source blocks in missing stash: " << id; in PrintHashForMissingStashedBlocks()
644 const RangeSet& src = stash_map[id]; in PrintHashForMissingStashedBlocks()
647 LOG(ERROR) << "failed to read source blocks for stash: " << id; in PrintHashForMissingStashedBlocks()
650 PrintHashForCorruptedStashedBlocks(id, buffer, src); in PrintHashForMissingStashedBlocks()
673 static std::string GetStashFileName(const std::string& base, const std::string& id, in GetStashFileName() argument
[all …]
Dcommands.cpp214 const std::string& id = tokens[pos++]; in Parse() local
220 stash_info = StashInfo(id, src_ranges); in Parse()
352 if (stash_reader(stash.id(), &stash_buffer) != 0) { in ReadAll()
/bootable/recovery/updater_sample/tests/src/com/example/android/systemupdatersample/
DUpdateConfigTest.java119 private String readResource(int id) throws IOException { in readResource() argument
121 mContext.getResources().openRawResource(id))); in readResource()
DUpdateManagerTest.java151 private String readResource(int id) throws IOException { in readResource() argument
153 mTestContext.getResources().openRawResource(id))); in readResource()
/bootable/recovery/recovery_utils/
Dlogging.cpp97 ssize_t logrotate(log_id_t id, char prio, const char* filename, const char* buf, size_t len, in logrotate() argument
101 return __android_log_pmsg_file_write(id, prio, filename, buf, len); in logrotate()
110 return __android_log_pmsg_file_write(id, prio, filename, buf, len); in logrotate()
130 return __android_log_pmsg_file_write(id, prio, name.c_str(), buf, len); in logrotate()
/bootable/recovery/tools/recovery_l10n/src/com/android/recovery_l10n/
DMain.java129 Spinner spinner = (Spinner) findViewById(R.id.which); in onCreate()
137 int pos, long id) { in onCreate()
149 mText = (TextView) findViewById(R.id.text); in onCreate()
178 Button b = (Button) findViewById(R.id.go); in onCreate()
/bootable/recovery/updater/include/private/
Dcommands.h71 StashInfo(std::string id, RangeSet ranges) : id_(std::move(id)), ranges_(std::move(ranges)) {} in StashInfo() argument
77 const std::string& id() const { in id() function