Searched refs:skip (Results 1 - 13 of 13) sorted by relevance

/system/update_engine/scripts/update_payload/
H A Dblock_tracer.py38 def _TraceBlock(block, skip, trace_out_file, operations, base_name):
51 skip: number of initial transitive origins to ignore
67 if skip:
68 skip -= 1
97 def Run(self, block, skip, trace_out_file, is_kernel):
102 skip: the number of first origin mappings to skip
113 self._TraceBlock(block, skip, trace_out_file, operations, base_name)
H A Dpayload.py323 def TraceBlock(self, block, skip, trace_out_file, is_kernel):
333 skip: the number of first origin mappings to skip
341 helper.Run(block, skip, trace_out_file, is_kernel)
/system/core/logd/
H A DLogTimes.h80 void triggerSkip_Locked(log_id_t id, unsigned int skip) { argument
81 skipAhead[id] = skip;
H A DLogTimes.cpp228 goto skip;
233 goto skip;
244 goto skip;
248 goto skip;
262 goto skip;
276 skip:
H A DLogAudit.cpp184 bool skip = false; local
189 skip = avcr &&
191 if (skip) {
198 if (!skip) {
H A DLogBuffer.cpp652 // and will tell the slowest reader thread to skip log entries, and if
751 // skip if we have neither worst nor naughty filters
928 break; // the following loop will ask bad clients to skip/drop
1124 static const size_t maxSkip = 4194304; // maximum entries to skip
1125 size_t skip = maxSkip; local
1129 if (!--skip) {
1183 skip = maxSkip;
/system/core/fastboot/
H A Dfastboot.cpp404 " --skip-secondary Will not flash secondary slots when\n"
407 " --skip-reboot Will not reboot the device when\n"
1225 #define skip(n) do { argc -= (n); argv += (n); } while (0) macro
1231 skip(2);
1244 skip(1);
1254 skip(1);
1456 {"skip-secondary", no_argument, 0, 0},
1457 {"skip-reboot", no_argument, 0, 0},
1542 } else if (strcmp("skip-secondary", longopts[longindex].name) == 0 ) {
1544 } else if (strcmp("skip
[all...]
/system/update_engine/scripts/
H A Dpaycheck.py101 trace_opts.add_option('-s', '--skip', metavar='NUM', default='0', type='int',
102 help='skip first NUM occurrences of traced block')
121 if opts.skip and not do_block_trace:
122 parser.error('--skip must be used with either --root-block or --kern-block')
209 payload.TraceBlock(options.root_block, options.skip, sys.stdout, False)
211 payload.TraceBlock(options.kern_block, options.skip, sys.stdout, True)
/system/core/libsparse/
H A Doutput_file.c64 int (*skip)(struct output_file *, int64_t); member in struct:output_file_ops
183 .skip = file_skip,
269 .skip = gz_file_skip,
319 .skip = callback_file_skip,
494 ret = out->ops->skip(out, rnd_up_len - len);
527 return out->ops->skip(out, len);
/system/core/libutils/
H A DString8.cpp430 size_t skip = strlen(other);
434 ssize_t next = find(other, index + skip);
439 memmove(buf + tail, buf + index + skip, next - index - skip);
440 tail += next - index - skip;
/system/core/adb/
H A Dfile_sync_client.cpp80 bool skip = false; member in struct:copyinfo
564 if (!ci.skip) current_ledger_.bytes_expected += ci.size;
830 ci.skip = true;
849 ci.skip = true;
891 ci.skip = true;
901 if (!ci.skip) {
1037 ci.skip = true;
1108 if (!ci.skip) {
/system/bt/btif/src/
H A Dbtif_ble_scanner.cc442 void StartSync(uint8_t sid, bt_bdaddr_t address, uint16_t skip,
/system/core/logcat/
H A Dlogcat.cpp766 size_t skip = (argv[i][2] == '>') + 2; local
767 if (!strcmp(&argv[i][skip], "/dev/null")) {
769 } else if (!strcmp(&argv[i][skip], "&1")) {
775 &argv[i][skip]);
1420 // skip stderr redirections of _all_ kinds
1422 // skip stdout redirections of _all_ kinds

Completed in 267 milliseconds