HomeSort by relevance Sort by last modified time
    Searched refs:command (Results 1 - 25 of 4245) 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/valgrind/gdbserver_tests/
mchelp.stderrB.exp 1 sending command help to pid ....
2 sending command help debug to pid ....
3 sending command v.kill to pid ....
mcinvokeRU.stderrB.exp 1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ...
    [all...]
mcinvokeWS.stderrB.exp 1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ...
    [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;
  /frameworks/base/services/core/java/com/android/server/
NativeDaemonTimeoutException.java 24 public NativeDaemonTimeoutException(String command, NativeDaemonEvent event) {
25 super(command, event);
  /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...]
  /external/syslinux/gpxe/src/drivers/block/
ata.c 42 * Issue ATA command
45 * @v command ATA command
49 ata_command ( struct ata_device *ata, struct ata_command *command ) {
53 command->cb.cmd_stat, command->cb.device,
54 ( command->cb.lba48 ? "48" : "" ),
55 ( unsigned long long ) command->cb.lba.native,
56 command->cb.count.native );
58 /* Flag command as in-progress *
92 struct ata_command command; local
118 struct ata_command command; local
141 struct ata_command command; local
    [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/google/contexthub/firmware/os/inc/
console.h 26 bool Console_handle_command(char *command);
  /external/guice/core/src/com/google/inject/internal/
InterceptorBindingProcessor.java 33 @Override public Boolean visit(InterceptorBinding command) {
35 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) {

Completed in 1488 milliseconds

1 2 3 4 5 6 7 8 91011>>