HomeSort by relevance Sort by last modified time
    Searched refs:stash_map (Results 1 - 3 of 3) sorted by null

  /build/make/tools/releasetools/
ota_package_parser.py 32 self.stash_map = {}
35 if SHA1 in self.stash_map:
41 self.stash_map[SHA1] = blocks
44 assert self.stash_map.has_key(SHA1), "stash {} not found".format(SHA1)
45 self.current_stash_size -= self.stash_map[SHA1].size()
46 del self.stash_map[SHA1]
blockimgdiff.py 556 stash_map = {}
559 # given stash of (raw_id, sr), stash_map[raw_id] = (sr, def_cmd, use_cmd).
563 stash_map[stash_raw_id] = (sr, xf)
567 stash_map[stash_raw_id] += (xf,)
598 use_cmd = stash_map[stash_raw_id][2]
623 def_cmd = stash_map[stash_raw_id][1]
    [all...]
  /bootable/recovery/updater/
blockimg.cpp 72 static std::unordered_map<std::string, RangeSet> stash_map; variable
534 if (stash_map.find(id) == stash_map.end()) {
540 const RangeSet& src = stash_map[id];
636 if (stash_map.find(id) != stash_map.end()) {
637 const RangeSet& src = stash_map[id];
692 if (stash_map.find(id) == stash_map.end()) {
696 const RangeSet& src = stash_map[id]
    [all...]

Completed in 203 milliseconds