HomeSort by relevance Sort by last modified time
    Searched defs:command (Results 26 - 50 of 772) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
ist.h 25 __u32 command; member in struct:ist_info
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/asm/
ist.h 25 __u32 command; member in struct:ist_info
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/asm/
ist.h 25 __u32 command; member in struct:ist_info
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
ist.h 25 __u32 command; member in struct:ist_info
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkColorChooser.py 31 command = "tk_chooseColor" variable in class:Chooser
tkCommonDialog.py 15 command = None variable in class:Dialog
48 s = w.tk.call(self.command, *w._options(self.options))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkColorChooser.py 31 command = "tk_chooseColor" variable in class:Chooser
tkCommonDialog.py 15 command = None variable in class:Dialog
48 s = w.tk.call(self.command, *w._options(self.options))
  /external/emma/core/java12/
emma.java 10 import com.vladium.emma.Command;
39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs); local
40 command.run ();
53 "emma usage: emma <command> [command options]," + EOL +
54 " where <command> is one of:" + EOL +
61 " {use '<command> -h' to see usage help for a given command}" + EOL
    [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...]
SimpleScriptExec.cpp 70 android::String8 command; local
71 command.appendFormat("%s %s %s", PYTHON_PATH, script.string(), param.string());
76 if ( !(fpipe = (FILE*)popen(command.string(),"r")) ) {
  /cts/suite/audio_quality/lib/src/audio/
AudioProtocol.cpp 58 uint32_t command = ntohl(data[0]); local
59 if ((command & 0xffff0000) != 0x43210000) {
60 LOGE("Wrong header %x %x", command, data[0]);
63 command = (command & 0xffff) | 0x12340000; // convert to id
64 if (command < ECmdStart) {
65 LOGE("Wrong header %x %x", command, data[0]);
68 if (command > (ECmdLast - 1)) {
69 LOGE("Wrong header %x %x", command, data[0]);
72 id = (CommandId)command;
    [all...]
  /external/chromium/chrome/browser/chromeos/
name_value_pairs_parser_unittest.cc 15 const char* command[] = { "echo", "Foo" }; local
16 EXPECT_TRUE(parser.GetSingleValueFromTool(arraysize(command), command,
  /external/chromium/chrome/browser/sync/engine/
cleanup_disabled_types_command_unittest.cc 46 CleanupDisabledTypesCommand command; local
50 command.ExecuteImpl(session());
54 CleanupDisabledTypesCommand command; local
60 command.ExecuteImpl(session());
63 command.ExecuteImpl(session());
67 CleanupDisabledTypesCommand command; local
82 command.ExecuteImpl(session());
  /external/chromium_org/chrome/browser/extensions/
external_provider_impl_chromeos_unittest.cc 75 CommandLine* command = CommandLine::ForCurrentProcess(); local
76 command->AppendSwitchASCII(switches::kForceAppMode, std::string());
77 command->AppendSwitchASCII(switches::kAppId, std::string("app_id"));
  /external/chromium_org/chromeos/system/
name_value_pairs_parser_unittest.cc 16 const char* command[] = { "/bin/echo", "Foo" }; local
17 EXPECT_TRUE(parser.GetSingleValueFromTool(arraysize(command), command,
93 const char* command[] = { "/bin/echo", local
107 arraysize(command), command, "=", "\n", "#"); local
  /external/chromium_org/sandbox/win/tests/validation_tests/
suite.cc 21 wchar_t command[1024] = {0}; local
24 wsprintf(command, kCommandTemplate, target, PROCESS_CREATE_THREAD);
25 EXPECT_EQ(sandbox::SBOX_TEST_DENIED, runner->RunTest(command));
26 wsprintf(command, kCommandTemplate, target, PROCESS_DUP_HANDLE);
27 EXPECT_EQ(sandbox::SBOX_TEST_DENIED, runner->RunTest(command));
28 wsprintf(command, kCommandTemplate, target, PROCESS_SET_INFORMATION);
29 EXPECT_EQ(sandbox::SBOX_TEST_DENIED, runner->RunTest(command));
30 wsprintf(command, kCommandTemplate, target, PROCESS_VM_OPERATION);
31 EXPECT_EQ(sandbox::SBOX_TEST_DENIED, runner->RunTest(command));
32 wsprintf(command, kCommandTemplate, target, PROCESS_VM_READ)
122 wchar_t command[1024] = {0}; local
135 wchar_t command[1024] = {0}; local
153 wchar_t command[1024] = {0}; local
175 wchar_t command[1024] = {0}; local
194 wchar_t command[1024] = {0}; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
path_utils.h 32 #define SEGMENT_COMMAND(command) /* Extract segment type */ \
33 ((command) & 0x1e)
34 #define SEGMENT_ABS_REL(command) /* Extract absolute/relative bit */ \
35 ((command) & 0x1)
62 VGint command = SEGMENT_COMMAND(segment); local
63 switch(command) {
  /external/mesa3d/src/gallium/state_trackers/vega/
path_utils.h 32 #define SEGMENT_COMMAND(command) /* Extract segment type */ \
33 ((command) & 0x1e)
34 #define SEGMENT_ABS_REL(command) /* Extract absolute/relative bit */ \
35 ((command) & 0x1)
62 VGint command = SEGMENT_COMMAND(segment); local
63 switch(command) {
  /libcore/luni/src/main/java/java/lang/
Compiler.java 32 * Executes an operation according to the specified command object. This
38 * the command object for the JIT compiler.
39 * @return the result of executing command or {@code null}.
41 public static Object command(Object cmd) { method in class:Compiler
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
ProviderExecutor.java 48 public void execute(Runnable command) {
49 Preconditions.checkNotNull(command);
50 mQueue.add(command);
57 final Runnable command = mQueue.take(); local
58 command.run();
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
MockExecutor.java 55 Runnable command = mQueue.removeFirst(); local
56 command.run();
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommandManager.java 112 * Map a command node with its AdHocCommandInfo. Note: Key=command node,
113 * Value=command. Command node matches the node attribute sent by command
120 * Map a command session ID with the instance LocalCommand. The LocalCommand
122 * the command execution. Note: Key=session ID, Value=LocalCommand. Session
123 * ID matches the sessionid attribute sent by command responders.
134 * Registers a new command with this command manager, which is related to a
408 LocalCommand command = newInstanceOfCmd(commandNode, sessionId); local
518 LocalCommand command = executingCommands.get(sessionId); local
686 LocalCommand command; local
    [all...]
  /bionic/libc/kernel/common/linux/usb/
f_mtp.h 26 uint16_t command; member in struct:mtp_file_range
  /cts/suite/audio_quality/executable/src/
main.cpp 44 android::String8 command = android::String8::format("cd %s;zip -r ../%s.zip *", local
46 fprintf(stderr, "\n\nexecuting %s\n", command.string());
47 if (system(command.string()) == -1) {
48 fprintf(stderr, "cannot create zip file with command %s\n", command.string());

Completed in 310 milliseconds

12 3 4 5 6 7 8 91011>>