Searched defs:commands (Results 1 - 25 of 196) sorted by relevance

12345678

/external/ltp/testcases/network/nfsv4/acl/
H A Dcleangroups.py3 import commands namespace
H A Dcleanusers.py3 import commands namespace
H A Dsetacl_stress.py9 import commands namespace
H A Dtest_long_acl.py7 import commands namespace
22 u = commands.getoutput('rm ' + path + "/*") # clean directory
27 u = commands.getoutput('touch ' + path + "/" + testfile)
32 u = commands.getoutput('setfacl -m u:' + user + ':' + mode + " " + path + "/" + testfile)
/external/vogar/src/vogar/commands/
H A DRm.java17 package vogar.commands;
H A DMkdir.java17 package vogar.commands;
H A DCommandFailedException.java17 package vogar.commands;
/external/jacoco/org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/
H A DVersionTest.java12 package org.jacoco.cli.internal.commands;
H A DClassInfoTest.java12 package org.jacoco.cli.internal.commands;
49 assertContains("org/jacoco/cli/internal/commands/ClassInfoTest", out);
/external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/commands/
H A DBrowserCommands.js22 this.commands={};
26 if (name in this.commands) {
30 this.commands[name] = {help: help, runnable: runnable};
35 for (var command in this.commands) {
36 result+=command+'\t'+this.commands[command].help+"\n";
39 /*if (! (name in this.commands)) {
43 return this.commands[name].help.apply(context, args);*/
50 if (! (name in this.commands)) {
54 return this.commands[name].runnable.call(context, args);
71 chrome.app.window.create('commands/webvie
[all...]
/external/autotest/client/bin/
H A Dos_dep.py19 def commands(*cmds): function
/external/autotest/client/deps/gtest/
H A Dgtest.py7 import common, commands, logging, os, shutil namespace
/external/autotest/client/site_tests/build_RootFilesystemSize/
H A Dbuild_RootFilesystemSize.py5 import commands namespace
33 (status, output) = commands.getstatusoutput(
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
H A DAllCommands.java12 package org.jacoco.cli.internal.commands;
20 * List of all available commands.
28 * @return list of new instances of all available commands
H A DVersion.java12 package org.jacoco.cli.internal.commands;
H A DDump.java12 package org.jacoco.cli.internal.commands;
/external/skia/tools/skiaserve/urlhandlers/
H A DDataHandler.cpp25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || commands.count() != 2) {
/external/skqp/tools/skiaserve/urlhandlers/
H A DDataHandler.cpp25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || commands.count() != 2) {
/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A DHelpCommand.java55 @Parameter(description = "If specified, show the detailed usage information for the given commands")
56 @ExtendedParameter(argumentNames = "commands")
57 private List<String> commands = Lists.newArrayList(); field in class:HelpCommand
62 if (commands == null || commands.isEmpty()) {
68 for (String cmd : commands) {
H A DListHelpCommand.java50 @Parameter(description = "If specified, show the detailed usage information for the given commands")
51 @ExtendedParameter(argumentNames = "commands")
52 private List<String> commands; field in class:ListHelpCommand
59 if (commands == null || commands.isEmpty()) {
66 for (String cmd : commands) {
/external/smali/smali/src/main/java/org/jf/smali/
H A DHelpCommand.java49 @Parameter(description = "If specified, show the detailed usage information for the given commands")
50 @ExtendedParameter(argumentNames = "commands")
51 private List<String> commands; field in class:HelpCommand
60 if (commands == null || commands.isEmpty()) {
66 for (String cmd : commands) {
/external/ImageMagick/MagickCore/
H A Ddelegate.h34 *commands; member in struct:_DelegateInfo
/external/autotest/client/common_lib/cros/fake_device_server/
H A Dcommands_unittest.py7 """Unit tests for commands.py."""
14 from fake_device_server import commands namespace
26 # commands.devices_commands[(id, api_key)] = dict of commands by command id.
33 # module bypass cherrypy by directly invoking commands.GET.
36 self.commands = commands.Commands(self.oauth, self.fail_control)
53 self.commands.new_device(DEVICE_ID)
54 new_command = self.commands.create_command(GOOD_COMMAND)
59 self.commands
[all...]
H A Ddevices_unittest.py13 from fake_device_server import commands namespace
30 self.commands = commands.Commands(self.oauth, self.fail_control)
33 self.commands,
47 # New device should be registered with commands handler.
48 self.assertTrue(device_id in self.commands.device_commands)
82 # Register device with commands handler first.
83 self.commands.new_device(12345)
89 self.assertRaises(KeyError, self.commands.remove_device, 12345)
/external/autotest/client/tests/memory_api/
H A Dmemory_api.py1 import os, subprocess, re, commands, logging namespace

Completed in 600 milliseconds

12345678