Home
last modified time | relevance | path

Searched defs:args (Results 1 – 25 of 66) sorted by relevance

123

/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandSchedulerTest.java201 String[] args = new String[] {}; in testAddConfig_configHelp() local
217 String[] args = new String[] {}; in testAddConfig_configJsonHelp() local
232 String[] args = new String[] {}; in testRun_oneConfig() local
250 String[] args = new String[] {}; in testRemoveAllCommands() local
296 String[] args = new String[] { in testExecCommand() local
368 String[] args = new String[] {}; in testRun_oneConfigLoop() local
428 String[] args = new String[] {}; in testRun_fatalError() local
453 String[] args = new String[] {}; in testRun_configSerial() local
480 String[] args = new String[] {}; in testRun_configExcludeSerial() local
505 String[] args = new String[] {}; in testRun_rescheduled() local
[all …]
DCommandRunnerTest.java91 void initGlobalConfig(String[] args) throws ConfigurationException { in initGlobalConfig()
122 String[] args = { in testRun_noError() local
141 String[] args = { in testRun_deviceUnresponsive() local
163 String[] args = { in testRun_deviceUnavailable() local
185 String[] args = { in testRun_throwable() local
205 String[] args = {FAKE_CONFIG}; in testRun_ConfigError() local
DCommandSchedulerStressApp.java97 public static void main(String[] args) { in main()
/tools/tradefederation/core/src/com/android/tradefed/config/
DIConfigurationFactory.java36 public IConfiguration createConfigurationFromArgs(String[] args) throws ConfigurationException; in createConfigurationFromArgs()
54 public IConfiguration createConfigurationFromArgs(String[] args, List<String> unconsumedArgs) in createConfigurationFromArgs()
75 public IConfiguration createConfigurationFromArgs(String[] args, List<String> unconsumedArgs, in createConfigurationFromArgs()
91 public IGlobalConfiguration createGlobalConfigurationFromArgs(String[] args, in createGlobalConfigurationFromArgs()
120 public void printHelpForConfig(String[] args, boolean importantOnly, PrintStream out); in printHelpForConfig()
DArgsOptionParser.java171 public List<String> parse(String... args) throws ConfigurationException { in parse()
181 public List<String> parse(List<String> args) throws ConfigurationException { in parse()
204 public List<String> parseBestEffort(String... args) { in parseBestEffort()
214 public List<String> parseBestEffort(List<String> args) { in parseBestEffort()
267 private boolean parseArg(String arg, ListIterator<String> args, List<String> leftovers) in parseArg()
290 private void parseLongOption(String arg, ListIterator<String> args) in parseLongOption()
341 private void parseGroupedShortOptions(String arg, ListIterator<String> args) in parseGroupedShortOptions()
373 private String grabNextValue(ListIterator<String> args, String name) in grabNextValue()
389 private String grabNextValue(ListIterator<String> args, String name, String detail) in grabNextValue()
/tools/test/connectivity/acts/framework/acts/
Dtracelogger.py41 def debug(self, msg, *args, **kwargs):
45 def error(self, msg, *args, **kwargs):
49 def warn(self, msg, *args, **kwargs):
53 def warning(self, msg, *args, **kwargs):
57 def info(self, msg, *args, **kwargs):
Djsonrpc.py51 def call(self, path, methodname=None, *args):
88 def _call(self, path, methodname=None, *args):
116 def sys(self, *args):
120 def rpc_call(*args):
Dtest_decorators.py87 def __call__(self, *args, **kwargs):
120 def gather(self, *args, **kwargs):
137 def _gather_local_info(self, gather_into, *args, **kwargs):
180 def __call__(self, *args, **kwargs):
187 def gather(self, *args, **kwargs):
Dbase_test.py80 def __exit__(self, *args):
362 def exec_one_testcase(self, test_name, test_func, args, **kwargs): argument
450 args=None, argument
516 def _exec_func(self, func, *args):
595 def test_skip_func(*args, **kwargs):
Ddict_object.py28 def __init__(self, *args, **kwargs):
/tools/loganalysis/src/com/android/loganalysis/util/config/
DArgsOptionParser.java166 public List<String> parse(String... args) throws ConfigurationException { in parse()
176 public List<String> parse(List<String> args) throws ConfigurationException { in parse()
193 private List<String> parseOptions(ListIterator<String> args) throws ConfigurationException { in parseOptions()
222 private void parseLongOption(String arg, ListIterator<String> args) in parseLongOption()
260 private void parseGroupedShortOptions(String arg, ListIterator<String> args) in parseGroupedShortOptions()
291 private String grabNextValue(ListIterator<String> args, String name) in grabNextValue()
307 private String grabNextValue(ListIterator<String> args, String name, String detail) in grabNextValue()
/tools/tradefederation/core/src/com/android/tradefed/util/hostmetric/
DHeapHostMonitor.java49 Map<String, String> args = new HashMap<>(); in dispatch() local
56 void logEvent(Map<String, String> args) { in logEvent() argument
/tools/tradefederation/core/src/com/android/tradefed/log/
DLogUtil.java90 public static void v(String format, Object... args) { in v()
112 public static void d(String format, Object... args) { in d()
134 public static void i(String format, Object... args) { in i()
167 public static void w(String format, Object... args) { in w()
189 public static void e(String format, Object... args) { in e()
222 public static void logAndDisplay(LogLevel logLevel, String format, Object... args) { in logAndDisplay()
255 public static void wtf(String format, Object... args) { in wtf()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DGlobalConfigurationTest.java78 String[] args = {}; in testCreateGlobalConfiguration_empty() local
117 String[] args = {"test-tag", "test"}; in testCreateGlobalConfiguration_nonEmpty() local
144 String[] args = {}; in testCreateGlobalConfiguration_cloneConfigWithFilterByDefault() local
182 String[] args = {}; in testCreateGlobalConfiguration_cloneConfigWithFilter() local
/tools/test/connectivity/acts/framework/acts/controllers/
Dfastboot.py77 def args(self, *args, **kwargs): member in FastbootProxy
81 def fastboot_call(*args, **kwargs):
Dnative.py52 def _rpc(self, method, *args):
/tools/repohooks/rh/
Dconfig.py47 def _check_args(name, cnt_min, cnt_max, args): argument
54 def options(self, section, *args):
69 def get(self, section, option, *args):
79 def items(self, section, *args):
/tools/tradefederation/core/src/com/android/tradefed/command/
DICommandScheduler.java80 public boolean addCommand(String[] args) throws ConfigurationException; in addCommand()
105 public boolean addCommand(String[] args, long totalExecTime) throws ConfigurationException; in addCommand()
116 public void execCommand(IScheduledInvocationListener listener, String[] args) in execCommand()
129 String[] args) throws ConfigurationException; in execCommand()
DCommandRunner.java46 void initGlobalConfig(String[] args) throws ConfigurationException { in initGlobalConfig()
67 public void run(String[] args) { in run()
/tools/test/connectivity/acts/framework/acts/bin/
Dmonsoon.py86 args = parser.parse_args() variable
/tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
DRemoteManagerFuncTest.java256 String[] args = new String[] { in testExecCommand() local
282 String[] args = new String[] { in testConsecutiveExecCommand() local
438 String[] args = new String[] { in testGetLastCommandResult_executing() local
470 String[] args = new String[] { in testGetLastCommandResult_notAvail() local
/tools/tradefederation/core/src/com/android/tradefed/util/
DStringEscapeUtils.java77 String[] args = QuotationAwareTokenizer.tokenizeLine(param); in paramsToArgs() local
/tools/loganalysis/src/com/android/loganalysis/
DLogAnalyzer.java100 public void run(String[] args) { in run()
325 private void initArgs(String[] args) throws ConfigurationException { in initArgs()
357 public static void main(String[] args) { in main()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceUtilStatsMonitorLoadTest.java90 public static void main(String[] args) { in main()
/tools/test/connectivity/acts/tests/google/tel/etc/
Dmanage_sim.py210 args = parser.parse_args() variable

123