HomeSort by relevance Sort by last modified time
    Searched refs:command (Results 1 - 25 of 2631) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
pragma-pack-3.c 2 // CHECK-X32: %union.command = type <{ i8*, [2 x i8] }>
5 // CHECK-X64: %union.command = type <{ i8*, [2 x i8] }>
9 typedef union command { union
15 } command; typedef in typeref:union:command
17 command c;
  /external/python/cpython2/Mac/PythonLauncher/
doscript.h 12 extern int doscript(const char *command);
  /external/python/cpython3/Mac/PythonLauncher/
doscript.h 12 extern int doscript(const char *command);
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/
CommandParser.java 17 * Parser which remembers the parsed command to have additional context
22 private final Command command; field in class:CommandParser
24 CommandParser(final Command command) {
25 super(command);
26 this.command = command;
29 Command getCommand() {
30 return command;
    [all...]
  /external/python/cpython2/PC/VS7.1/
make_buildinfo.c 26 char command[500]; local
37 command[0] = '"'; /* quote the path to the executable */
38 size = sizeof(command) - 1;
39 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
43 strcat(command, "bin\\subwcrev.exe");
44 if (_stat(command+1, &st) < 0)
47 strcat(command, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c");
48 puts(command); fflush(stdout);
49 if (system(command) < 0)
56 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL " local
    [all...]
  /external/python/cpython2/PC/VS8.0/
make_buildinfo.c 28 char command[CMD_SIZE+1]; local
39 command[0] = '"'; /* quote the path to the executable */
40 size = sizeof(command) - 1;
41 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
45 strcat_s(command, CMD_SIZE, "bin\\subwcrev.exe");
46 if (_stat(command+1, &st) < 0)
49 strcat_s(command, CMD_SIZE, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c");
50 puts(command); fflush(stdout);
51 if (system(command) < 0)
58 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL " local
    [all...]
  /external/python/cpython2/PC/VS9.0/
make_buildinfo.c 28 char command[CMD_SIZE+1]; local
39 command[0] = '"'; /* quote the path to the executable */
40 size = sizeof(command) - 1;
41 if (RegQueryValueEx(hTortoise, "Directory", 0, &type, command+1, &size) != ERROR_SUCCESS ||
45 strcat_s(command, CMD_SIZE, "bin\\subwcrev.exe");
46 if (_stat(command+1, &st) < 0)
49 strcat_s(command, CMD_SIZE, "\" .. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c");
50 puts(command); fflush(stdout);
51 if (system(command) < 0)
58 char command[500] = "cl.exe -c -D_WIN32 -DUSE_DL_EXPORT -D_WINDOWS -DWIN32 -D_WINDLL " local
    [all...]
  /cts/suite/audio_quality/lib/src/
Adb.cpp 34 android::String8 command; local
35 if (command.appendFormat("forward tcp:%d tcp:%d", hostPort, devicePort) != 0) {
38 if (executeCommand(command) != 0) {
46 android::String8 command; local
47 if (command.appendFormat("install -r %s", clientBinary.string()) != 0) {
50 if (executeCommand(command) != 0) {
53 command.clear();
54 if (command.appendFormat("shell am start -W -n %s", component.string()) != 0) {
57 if (executeCommand(command) != 0) {
63 /** @param command ADB command except adb -s XYZW *
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AbstractStubCommandHandler.java 16 package org.mockftpserver.stub.command;
18 import org.mockftpserver.core.command.AbstractStaticReplyCommandHandler;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
CommandPacket.java 31 * This class represents JDWP command packet.
38 private byte command; field in class:CommandPacket
48 * Creates an empty CommandPacket for specific JDWP command with no data.
50 public CommandPacket(byte commandSet, byte command) {
53 this.command = command;
64 command = bytes_array[COMMAND_INDEX];
68 * Sets command set value of the header of the CommandPacket as byte.
70 * @param val the command set.
77 * Gets command set value of the header of the CommandPacket as byte
    [all...]
  /device/google/cuttlefish_common/host/libs/vm_manager/
crosvm_manager.cpp 42 void AddTapFdParameter(cvd::Command* crosvm_cmd, const std::string& tap_name) {
66 cvd::Command CrosvmManager::StartCommand() {
75 cvd::Command command(config_->crosvm_binary());
76 command.AddParameter("run");
79 command.AddParameter("--initrd=", config_->ramdisk_image_path());
81 command.AddParameter("--null-audio");
82 command.AddParameter("--mem=", config_->memory_mb());
83 command.AddParameter("--cpus=", config_->cpus());
84 command.AddParameter("--params=", config_->kernel_cmdline_as_string())
    [all...]
  /dalvik/dx/src/com/android/dx/command/
UsageException.java 17 package com.android.dx.command;
20 * Simple exception class used to communicate that the command-line tool
  /device/generic/goldfish/network/netmgr/commands/
command.h 23 // on the incoming command string or arguments. It will have to be registered
24 // multiple times, once for each command though.
25 class Command {
27 virtual ~Command() = default;
29 // Work to perform when a command is received. The result will be used to
34 virtual Result onCommand(const char* command, const char* args) = 0;
  /device/google/contexthub/firmware/os/inc/
console.h 26 bool Console_handle_command(char *command);
  /external/guice/core/src/com/google/inject/internal/
InterceptorBindingProcessor.java 34 public Boolean visit(InterceptorBinding command) {
37 command.getClassMatcher(), command.getMethodMatcher(), command.getInterceptors()));
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
UnsupportedCommandHandler.java 16 package org.mockftpserver.core.command;
21 * CommandHandler that encapsulates the sending of the reply when a requested command is not
22 * recognized/supported. Send back a reply code of 502, indicating command not implemented.
24 * Note that this is a "special" CommandHandler, in that it handles any unrecognized command,
25 * rather than an explicit FTP command.
42 * @see org.mockftpserver.core.command.AbstractTrackingCommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
44 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AborCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the ABOR command. Handler logic:
34 protected void handle(Command command, Session session) {
AlloCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the ALLO command. Handler logic:
34 protected void handle(Command command, Session session) {
ModeCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the MODE command. Handler logic:
34 protected void handle(Command command, Session session) {
NoopCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the NOOP command. Handler logic:
33 protected void handle(Command command, Session session) {
QuitCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the QUIT command. Return a reply code of 221 and close the current session.
30 protected void handle(Command command, Session session) {
RestCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the REST command. Handler logic:
34 protected void handle(Command command, Session session) {
SiteCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the SITE command. Handler logic:
33 protected void handle(Command command, Session session) {
SmntCommandHandler.java 16 package org.mockftpserver.fake.command;
18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
23 * CommandHandler for the SMNT command. Handler logic:
34 protected void handle(Command command, Session session) {
StorCommandHandler.java 16 package org.mockftpserver.fake.command;
19 * CommandHandler for the STOR command. Handler logic:

Completed in 1701 milliseconds

1 2 3 4 5 6 7 8 91011>>