Searched refs:len (Results 1 - 25 of 27) sorted by relevance

12

/build/target/board/vbox_x86/
H A Ddisk_layout.conf30 len 8064
38 len 8064
46 len 8064
55 len 512M
61 len 512M
67 len 512M
73 len -1
/build/tools/
H A Dfindleaves.py40 while i < len(dirs):
73 while i<len(argv) and len(argv[i])>2 and argv[i][0:2] == "--":
77 mindepth = int(arg[len("--mindepth="):])
81 p = arg[len("--prune="):]
82 if len(p) == 0:
88 if len(argv)-i < 2: # need both <dirlist> and <filename>
H A Dfilter-product-graph.py46 if not (len(sys.argv) == 2 and sys.argv[1] == "--all"):
51 while prevLen != len(included):
52 prevLen = len(included)
H A Dparsedeps.py96 if len(line) > 0:
109 print "Read %d dependencies. %d targets." % (deps.count, len(deps.lines))
116 if len(split) == 2 and cmd == "dep":
122 elif len(split) == 3 and cmd == "trace":
132 if len(t.tgt) > width:
133 width = len(t.tgt)
137 print t.tgt, " " * (width-len(t.tgt)), " #", t.pos
H A Dpost_process_props.py50 return line[len(key):]
55 for i in range(0,len(self.lines)):
H A Dfileslist.py28 base = len(root[:root.rfind(os.path.sep)])
H A Djava-layers.py100 if len(parts) > len(pkg):
103 for i in range(0, len(parts)):
129 lines = [(n,s) for (n,s) in lines if len(s) > 0]
133 if len(words) == 1:
151 elif len(words) == 2:
176 if len(fn) != 0])
238 if len(argv) < 3:
H A Dgenerate-notice-files.py55 if len(args) != 4:
57 and the directory containing notices, not %d""" % (len(args),)
62 return ("%02x"*len(s)) % tuple(map(ord, s))
H A Dwarn.py7 if len(sys.argv) == 1:
442 unknown += len(i['members'])
444 known += len(i['members'])
470 if len(i['members']) == 0 and i['severity'] != severity.SKIP:
481 if cat['severity'] != severity.SKIP and len(cat['members']) != 0:
482 header = [descriptionfor(cat),str(len(cat['members'])) + ' occurences:']
H A Devent_log_tags.py70 if len(parts) < 2:
88 if len(parts) == 3:
H A Dproduct_debug.py29 if len(words) == 1:
55 for i in range(0,len(groups)/2):
H A Dcheck_radio_versions.py25 if len(sys.argv) < 2:
H A Ddiff_package_overlays.py40 if len(argv) != 4:
H A Djava-event-log-tags.py54 if len(args) != 2:
55 print "need exactly two input files, not %d" % (len(args),)
H A Dadbs96 num_lines = len(lines)
/build/core/
H A Dchecktree62 if len(lines) >= 1:
64 if len(lines) >= 1:
69 if len(sys.argv) == 1:
71 elif len(sys.argv) == 2 and sys.argv[1] == "-a":
/build/tools/atree/
H A Dfiles.cpp89 size_t len = p-q; local
90 if (len > 2 && *start == '"' && start[len - 1] == '"') {
92 len -= 2;
94 out->push_back(string(start, len));
104 size_t len = p-q; local
105 if (len > 2 && *start == '"' && start[len - 1] == '"') {
107 len -= 2;
109 out->push_back(string(start, len));
246 int len = strlen(p); local
[all...]
/build/tools/releasetools/
H A Dcheck_target_files_signatures260 displayname = fullname[len(d)+1:]
265 self.max_pkg_len = max(self.max_pkg_len, len(apk.package))
266 self.max_fn_len = max(self.max_fn_len, len(apk.filename))
320 order = [(-len(v), k) for (k, v) in by_cert.iteritems()]
406 if len(args) != 1:
440 print "%d problem(s) found:\n" % (len(PROBLEMS),)
H A Dedify_generator.py56 if len(parts) == 1:
191 if len(patchpairs) % 2 != 0 or len(patchpairs) == 0:
195 for i in range(0, len(patchpairs), 2):
H A Dsign_target_files_apks141 maxsize = max([len(os.path.basename(i.filename))
194 assert len(pieces) == 5
202 if len(value) == 2 and value[1].endswith("-keys"):
326 if len(args) != 2:
H A Dcommon.py190 if not (3 <= len(pieces) <= 4):
199 if len(pieces) >= 4:
202 if len(pieces) >= 5:
226 if len(pieces) != 5:
499 size = len(data)
523 public_key_suffix_len = len(OPTIONS.public_key_suffix)
524 private_key_suffix_len = len(OPTIONS.private_key_suffix)
818 self.size = len(data)
903 print len(diffs), "diffs to compute"
932 dur, len(patc
[all...]
H A Dbuild_image.py153 if len(argv) != 3:
/build/tools/signapk/
H A DSignApk.java343 public void write(byte[] b, int off, int len) throws IOException { argument
344 super.write(b, off, len);
345 mCount += len;
456 // Create a new entry so that the compressed len is recomputed.
503 public void write(byte[] b, int off, int len) throws IOException { argument
506 footer.write(b, off, len);
510 out.write(b, off, len);
511 tee.write(b, off, len);
/build/tools/zipalign/
H A DZipFile.h143 * at least <uncompressed len> bytes. Variation expands directly
188 status_t readBuf(const unsigned char* buf, int len);
203 kEOCDLen = 22, // EndOfCentralDir len, excl. comment
H A DZipFile.cpp1220 status_t ZipFile::EndOfCentralDir::readBuf(const unsigned char* buf, int len) argument
1225 if (len < kEOCDLen) {
1228 kEOCDLen, len);
1247 if (kEOCDLen + mCommentLen > len) {
1248 ALOGD("EOCD(%d) + comment(%d) exceeds len (%d)\n",
1249 kEOCDLen, mCommentLen, len);

Completed in 408 milliseconds

12