/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/ui/ |
D | MainActivity.java | 77 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/ |
D | care_map_generator.py | 54 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]
|
D | update_verifier.cpp | 87 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()
|
D | care_map.proto | 26 string id = 3; field
|
/bootable/recovery/recovery_utils/include/recovery_utils/ |
D | logging.h | 41 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/ |
D | blockimg.cpp | 619 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 …]
|
D | commands.cpp | 214 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/ |
D | UpdateConfigTest.java | 119 private String readResource(int id) throws IOException { in readResource() argument 121 mContext.getResources().openRawResource(id))); in readResource()
|
D | UpdateManagerTest.java | 151 private String readResource(int id) throws IOException { in readResource() argument 153 mTestContext.getResources().openRawResource(id))); in readResource()
|
/bootable/recovery/recovery_utils/ |
D | logging.cpp | 97 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/ |
D | Main.java | 129 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/ |
D | commands.h | 71 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
|