HomeSort by relevance Sort by last modified time
    Searched defs:command (Results 251 - 275 of 2356) sorted by null

<<11121314151617181920>>

  /frameworks/base/services/core/java/com/android/server/hdmi/
RequestArcInitiationAction.java 44 HdmiCecMessage command = HdmiCecMessageBuilder.buildRequestArcInitiation( local
46 sendCommand(command, new HdmiControlService.SendMessageCallback() {
RequestArcTerminationAction.java 43 HdmiCecMessage command = local
45 sendCommand(command, new HdmiControlService.SendMessageCallback() {
  /hardware/interfaces/graphics/composer/2.1/utils/vts/
TestCommandReader.cpp 30 IComposerClient::Command command; local
32 ASSERT_TRUE(beginCommand(&command, &length));
34 switch (command) {
35 case IComposerClient::Command::SET_ERROR: {
41 case IComposerClient::Command::SELECT_DISPLAY:
42 case IComposerClient::Command::SET_CHANGED_COMPOSITION_TYPES:
43 case IComposerClient::Command::SET_DISPLAY_REQUESTS:
44 case IComposerClient::Command::SET_PRESENT_FENCE:
45 case IComposerClient::Command::SET_RELEASE_FENCES
    [all...]
  /platform_testing/utils/permissions/src/com/android/permissionutils/
PermissionInstrumentation.java 28 private static final String PARAM_COMMAND = "command";
35 String command = arguments.getString(PARAM_COMMAND); local
36 if (command == null) {
37 throw new IllegalArgumentException("missing command parameter");
39 if (COMMAND_DUMP.equals(command)) {
41 } else if (COMMAND_GRANTALL.equals(command)) {
45 String.format("unrecognized command \"%s\"", command));
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
textView.py 45 command=self.Ok, takefocus=FALSE)
50 self.scrollbarView.config(command=self.textView.yview)
88 command=lambda:view_text(root, 'view_text', text)) variable
91 command=lambda:view_file(root, 'view_file', filename)) variable
94 command=lambda:view_text(root, 'nonmodal view_text', text, variable
97 close = Button(root, text='Close', command=root.destroy)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkFileDialog.py 77 command = "tk_getOpenFile" variable in class:Open
97 command = "tk_getSaveFile" variable in class:SaveAs
104 command = "tk_chooseDirectory" variable in class:Directory
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
textView.py 45 command=self.Ok, takefocus=FALSE)
50 self.scrollbarView.config(command=self.textView.yview)
88 command=lambda:view_text(root, 'view_text', text)) variable
91 command=lambda:view_file(root, 'view_file', filename)) variable
94 command=lambda:view_text(root, 'nonmodal view_text', text, variable
97 close = Button(root, text='Close', command=root.destroy)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkFileDialog.py 77 command = "tk_getOpenFile" variable in class:Open
97 command = "tk_getSaveFile" variable in class:SaveAs
104 command = "tk_chooseDirectory" variable in class:Directory
  /prebuilts/go/darwin-x86/src/syscall/
exec_unix_test.go 20 type command struct { type
26 func (c *command) Info() (pid, pgrp int) {
37 func (c *command) Start() {
43 func (c *command) Stop() {
50 func create(t *testing.T) *command {
53 proc := exec.Command("cat")
59 return &command{stdin, proc, t}
  /prebuilts/go/linux-x86/src/syscall/
exec_unix_test.go 20 type command struct { type
26 func (c *command) Info() (pid, pgrp int) {
37 func (c *command) Start() {
43 func (c *command) Stop() {
50 func create(t *testing.T) *command {
53 proc := exec.Command("cat")
59 return &command{stdin, proc, t}
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
filesystem_dynamic_test_helper.py 83 command = " ".join(sys.argv[1:]) variable
84 eval(command)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
textView.py 45 command=self.Ok, takefocus=FALSE)
50 self.scrollbarView.config(command=self.textView.yview)
88 command=lambda:view_text(root, 'view_text', text)) variable
91 command=lambda:view_file(root, 'view_file', filename)) variable
94 command=lambda:view_text(root, 'nonmodal view_text', text, variable
97 close = Button(root, text='Close', command=root.destroy)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFileDialog.py 77 command = "tk_getOpenFile" variable in class:Open
97 command = "tk_getSaveFile" variable in class:SaveAs
104 command = "tk_chooseDirectory" variable in class:Directory
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
textView.py 45 command=self.Ok, takefocus=FALSE)
50 self.scrollbarView.config(command=self.textView.yview)
88 command=lambda:view_text(root, 'view_text', text)) variable
91 command=lambda:view_file(root, 'view_file', filename)) variable
94 command=lambda:view_text(root, 'nonmodal view_text', text, variable
97 close = Button(root, text='Close', command=root.destroy)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFileDialog.py 77 command = "tk_getOpenFile" variable in class:Open
97 command = "tk_getSaveFile" variable in class:SaveAs
104 command = "tk_chooseDirectory" variable in class:Directory
  /system/core/adb/
console.cpp 31 // Return the console authentication command for the emulator, if needed
44 // either way we won't add any authentication command.
48 // now construct and return the actual command: "auth <token>\n"
49 std::string command = "auth "; local
50 command += token;
51 command += '\n';
52 return command;
135 // preventing the emulator from reading the command that adb has sent.
145 // Any other emu command is followed by the quit command that w
    [all...]
  /system/libufdt/utils/src/
mkdtimg.c 34 const char *command; member in struct:command_info
47 static const struct command_info *search_command(const char *command) {
49 for (info = command_infos; info->command != NULL; info++) {
50 if (strcmp(command, info->command) == 0) {
54 if (info->command == NULL) {
55 fprintf(stderr, "Unknown command: %s\n", command);
63 for (info = command_infos; info->command != NULL; info++) {
67 fprintf(out_fp, "%s", info->command);
122 const char *command = argv[1]; local
    [all...]
  /test/framework/harnesses/host_controller/command_processor/
base_command_processor.py 23 '''Base class for command processors.
28 command: string, command name which this processor will handle.
29 command_detail: string, detailed explanation for the command.
32 command = 'base' variable in class:BaseCommandProcessor
33 command_detail = 'Command processor template'
43 self.command, self.command_detail)
54 arg_line: string, line of command arguments
59 if ret == True: # exit command executed.
65 self.command, ret)
    [all...]
command_test.py 32 """Command processor for test command.
41 command = "test" variable in class:CommandTest
42 command_detail = "Executes a command on TF."
47 """Initializes the parser for test command."""
53 help="The target device serial to run the command. "
64 "command",
65 metavar="COMMAND",
67 help="The command to be executed. If the command contains
    [all...]
  /test/suite_harness/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/command/
CompatibilityConsoleTest.java 17 package com.android.compatibility.common.tradefed.command;
  /test/vts-testcase/kernel/ltp/
test_case.py 36 command: string, the command to run the test case
37 _args: list of string, test case command line arguments
46 def __init__(self, testsuite, testname, command):
49 self._command = command
96 def command(self): member in class:TestCase
97 """Get the test case's command."""
102 executables = (command.strip().split()[0]
103 for command in self._command.split('&&'))
105 # Adjust for simple command substitutions lik
    [all...]
  /tools/tradefederation/core/remote/src/com/android/tradefed/command/remote/
AllocateDeviceOp.java 16 package com.android.tradefed.command.remote;
FreeDeviceOp.java 16 package com.android.tradefed.command.remote;
ICommandResultHandler.java 16 package com.android.tradefed.command.remote;
StartHandoverOp.java 16 package com.android.tradefed.command.remote;

Completed in 489 milliseconds

<<11121314151617181920>>