HomeSort by relevance Sort by last modified time
    Searched refs:commands (Results 76 - 100 of 1164) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/ltp/testcases/network/nfsv4/acl/
test_long_acl.py 7 import commands
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/ltp/tools/pounder21/src/time_tests/
drift-test.py 27 import commands
55 cmd = commands.getoutput('/usr/sbin/ntpdate -ub ' + server)
57 cmd = commands.getoutput('/usr/sbin/ntpdate -uq ' + server)
68 cmd = commands.getoutput('/usr/sbin/ntpdate -uq ' + server)
  /external/shflags/examples/
debug_output.sh 20 commands:
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
ListHelpCommand.java 50 @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/
HelpCommand.java 49 @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/vogar/src/vogar/commands/
Mkdir.java 17 package vogar.commands;
Rm.java 17 package vogar.commands;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessTest.java 56 String[] commands = { "cat", "-"}; local
57 Process p = Runtime.getRuntime().exec(commands, null, null);
84 String[] commands = { "cat", "--no-such-option"}; local
85 Process p = Runtime.getRuntime().exec(commands, null, null);
113 String[] commands = { "sh", "-c", "exit 0" }; local
114 Process process = Runtime.getRuntime().exec(commands, null, null);
138 String[] commands = { "sh", "-c", "exit 0"}; local
139 Process process = Runtime.getRuntime().exec(commands, null, null);
146 String[] commands = { "sh", "-c", "sleep 3000"}; local
147 Process process = Runtime.getRuntime().exec(commands, null, null)
154 String[] commands = { "sh", "-c", "sleep 3000"}; local
163 String[] commands = { "sh", "-c", "sleep 3000"}; local
175 String[] commands = { "sh", "-c", "sleep 3000"}; local
    [all...]
ProcessManagerTest.java 36 String[] commands = { "cat" }; local
37 Process process = Runtime.getRuntime().exec(commands, null, null);
50 String[] commands = { "sleep", "1" }; local
51 process = Runtime.getRuntime().exec(commands, null, null);
62 String[] commands = { "sleep", "1000"};
64 process = Runtime.getRuntime().exec(commands, null, null);
113 String[] commands = { "sh", "-c", "pwd" }; local
115 commands, null, new File("/"));
121 String[] commands = { "sh", "-c", "echo $FOO" }; local
126 commands, environment, null)
181 String[] commands = { "ls", "\/proc\/self\/fd" }; local
219 String[] commands = { "doesnotexist" }; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/v2/commands/
CameraCommand.java 17 package com.android.camera.one.v2.commands;
26 * time to execute. Camera commands typically interact with the camera device,
29 * When shutting down, it is critical that commands gracefully exit when these
RunnableCameraCommand.java 17 package com.android.camera.one.v2.commands;
  /platform_testing/libraries/system-helpers/activity-helper/
Android.mk 22 commands-helper
  /platform_testing/libraries/system-helpers/commands-helper/
Android.mk 19 LOCAL_MODULE := commands-helper
  /platform_testing/libraries/system-helpers/package-helper/
Android.mk 20 LOCAL_JAVA_LIBRARIES := commands-helper
  /platform_testing/libraries/system-helpers/user-helper/
Android.mk 22 commands-helper
  /system/netd/server/
StrictController.h 48 static int (*execIptablesRestore)(IptablesTarget target, const std::string& commands);
  /external/autotest/client/common_lib/cros/fake_device_server/
devices_unittest.py 13 from fake_device_server import commands
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
    [all...]
  /system/core/adb/
console.cpp 116 std::string commands = adb_construct_auth_command(); local
119 commands.append(argv[i]);
120 commands.push_back(i == argc - 1 ? '\n' : ' ');
123 commands.append("quit\n");
125 if (!WriteFdExactly(fd, commands)) {
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
Obd2Command.java 19 import com.android.car.obd2.commands.AmbientAirTemperature;
20 import com.android.car.obd2.commands.CalculatedEngineLoad;
21 import com.android.car.obd2.commands.EngineCoolantTemperature;
22 import com.android.car.obd2.commands.EngineOilTemperature;
23 import com.android.car.obd2.commands.EngineRuntime;
24 import com.android.car.obd2.commands.FuelGaugePressure;
25 import com.android.car.obd2.commands.FuelSystemStatus;
26 import com.android.car.obd2.commands.FuelTankLevel;
27 import com.android.car.obd2.commands.FuelTrimCommand.Bank1LongTermFuelTrimCommand;
28 import com.android.car.obd2.commands.FuelTrimCommand.Bank1ShortTermFuelTrimCommand
    [all...]
  /external/skia/tools/skiaserve/urlhandlers/
BreakHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || commands.count() != 4) {
34 sscanf(commands[1].c_str(), "%d", &n);
36 sscanf(commands[2].c_str(), "%d", &x);
38 sscanf(commands[3].c_str(), "%d", &y);
  /external/skqp/tools/skiaserve/urlhandlers/
BreakHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || commands.count() != 4) {
34 sscanf(commands[1].c_str(), "%d", &n);
36 sscanf(commands[2].c_str(), "%d", &x);
38 sscanf(commands[3].c_str(), "%d", &y);
  /external/autotest/client/site_tests/build_RootFilesystemSize/
build_RootFilesystemSize.py 5 import commands
33 (status, output) = commands.getstatusoutput(
  /external/curl/docs/cmdline-opts/
ftp-alternative-to-user.d 7 If authenticating with the USER and PASS commands fails, send this command.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 8 (* commands *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 8 (* commands *)

Completed in 1078 milliseconds

1 2 34 5 6 7 8 91011>>