HomeSort by relevance Sort by last modified time
    Searched full:subcommand (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/tools/deep_memory_profiler/subcommands/
buckets.py 8 from lib.subcommand import SubCommand
14 class BucketsCommand(SubCommand):
21 bucket_set = SubCommand.load_basic_files(dump_path, True, True)
stacktrace.py 8 from lib.subcommand import SubCommand
11 class StacktraceCommand(SubCommand):
19 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
upload.py 11 from lib.subcommand import SubCommand
18 class UploadCommand(SubCommand):
31 dump_files = SubCommand._find_all_dumps(dump_path)
32 bucket_files = SubCommand._find_all_buckets(dump_path)
33 prefix = SubCommand._find_prefix(dump_path)
expand.py 10 from lib.subcommand import SubCommand
16 class ExpandCommand(SubCommand):
27 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
28 policy_set = PolicySet.load(SubCommand._parse_policy_list(target_policy))
map.py 11 from lib.subcommand import SubCommand
17 class MapCommand(SubCommand):
25 (bucket_set, dumps) = SubCommand.load_basic_files(dump_path, True)
26 policy_set = PolicySet.load(SubCommand._parse_policy_list(target_policy))
pprof.py 10 from lib.subcommand import SubCommand
16 class PProfCommand(SubCommand):
31 (bucket_set, dump) = SubCommand.load_basic_files(dump_path, False)
32 policy_set = PolicySet.load(SubCommand._parse_policy_list(target_policy))
34 with open(SubCommand._find_prefix(dump_path) + '.maps', 'r') as maps_f:
cat.py 11 from lib.subcommand import SubCommand
18 class CatCommand(SubCommand):
37 (bucket_set, dumps) = SubCommand.load_basic_files(
policies.py 13 from lib.subcommand import SubCommand
19 class PolicyCommands(SubCommand):
43 (bucket_set, dumps) = SubCommand.load_basic_files(
50 shared_dumps = SubCommand._find_all_dumps(shared_first_dump_path)
57 policy_set = PolicySet.load(SubCommand._parse_policy_list(options.policy))
  /external/chromium_org/tools/deep_memory_profiler/lib/
subcommand.py 23 class SubCommand(object):
24 """Subclasses are a subcommand for this executable.
36 prefix = SubCommand._find_prefix(dump_path)
41 alternative_dirs = SubCommand._estimate_alternative_dirs(prefix)
51 dump_list = DumpList.load(SubCommand._find_all_dumps(dump_path))
90 If a file in SubCommand._DEVICE_BINDIRS is found in /proc/maps, it
101 if any([base_dir in name for base_dir in SubCommand._DEVICE_BINDIRS]):
112 prefix = SubCommand._find_prefix(dump_path)
132 prefix = SubCommand._find_prefix(dump_path)
  /external/iptables/iptables/
xtables-multi.c 16 static const struct subcommand multi_subcommands[] = {
xshared.h 68 struct subcommand { struct
83 extern int subcmd_main(int, char **, const struct subcommand *);
xshared.c 178 static mainfunc_t subcmd_get(const char *cmd, const struct subcommand *cb)
186 int subcmd_main(int argc, char **argv, const struct subcommand *cb)
205 fprintf(stderr, "ERROR: No valid subcommand given.\nValid subcommands:\n");
  /external/chromium_org/tools/deep_memory_profiler/tests/
dmprof_test.py 196 subcommand = subcommands.BucketsCommand()
197 returncode = subcommand.do(['buckets', HEAP_PATH], out)
206 subcommand = subcommands.UploadCommand()
207 returncode = subcommand.do([
  /frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
EventsCommand.java 29 * Implementation of the events subcommand
DumpCommand.java 34 * Implementation of the dump subcommand
Launcher.java 102 System.err.println("Usage: uiautomator <subcommand> [options]\n");
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/javatests/
libjingle_peerconnection_java_unittest.sh 30 # Exit with error immediately if any subcommand fails.
  /external/antlr/antlr-3.4/runtime/Perl5/tools/
port.pl 87 Usage: help [SUBCOMMAND...]
98 Usage: port <subcommand> [options] [args]
  /frameworks/testing/uiautomator/cmds/uiautomator/
uiautomator 23 # * special processing for subcommand 'runtest':
31 # * all other subcommand or options are directly passed into Java code for
  /external/chromium_org/build/android/
test_runner.py 494 """Subcommand of RunTestsCommands which runs gtests."""
532 """Subcommand of RunTestsCommands which runs linker tests."""
548 """Subcommand of RunTestsCommands which runs instrumentation tests."""
594 """Subcommand of RunTestsCommands which runs uiautomator tests."""
614 """Subcommand of RunTestsCommands which runs monkey tests."""
632 """Subcommand of RunTestsCommands which runs perf tests."""
  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 532 bool POpenStream::Open(const std::string& subcommand, const char* mode) {
534 file_ = popen(subcommand.c_str(), mode);
538 bool POpenStream::OpenShare(const std::string& subcommand, const char* mode,
540 return Open(subcommand, mode);
  /external/chromium_org/chrome/browser/resources/task_manager/
main.js 595 var subCommand = commandId[1];
598 this.onColumnContextMenu_(subCommand, command);
605 if (subCommand == 'inspect')
607 else if (subCommand == 'activate')
  /external/openssh/
ssh-agent.0 65 agent starts a new subcommand into which some environment variables are
  /frameworks/base/cmds/media/src/com/android/commands/media/
Media.java 55 "usage: media [subcommand] [options]\n" +
  /frameworks/base/cmds/wm/src/com/android/commands/wm/
Wm.java 50 "usage: wm [subcommand] [options]\n" +

Completed in 184 milliseconds

1 2 3 4 5 6 7