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 707 stash_map = {}
710 # given stash of (raw_id, sr), stash_map[raw_id] = (sr, def_cmd, use_cmd).
714 stash_map[stash_raw_id] = (sr, xf)
718 stash_map[stash_raw_id] += (xf,)
749 use_cmd = stash_map[stash_raw_id][2]
774 def_cmd = stash_map[stash_raw_id][1]
    [all...]
  /bootable/recovery/updater/
blockimg.cpp 74 static std::unordered_map<std::string, RangeSet> stash_map; variable
639 if (stash_map.find(id) == stash_map.end()) {
645 const RangeSet& src = stash_map[id];
741 if (stash_map.find(id) != stash_map.end()) {
742 const RangeSet& src = stash_map[id];
797 if (stash_map.find(id) == stash_map.end()) {
801 const RangeSet& src = stash_map[id]
    [all...]

Completed in 610 milliseconds