Home
last modified time | relevance | path

Searched defs:command (Results 1 – 25 of 2090) sorted by relevance

12345678910>>...84

/external/nos/test/system-test-harness/src/
Dtransport_tests.cc74 static int nos_device_read(const struct nos_device *dev, uint32_t command, in nos_device_read()
96 static int nos_device_write(const struct nos_device *dev, uint32_t command, in nos_device_write()
240 void SetCommandInfoCrc(const void* arg, uint16_t arg_len, uint32_t command, in SetCommandInfoCrc()
250 void SetCommandInfoCrc(const void* arg, uint16_t arg_len, uint32_t command, in SetCommandInfoCrc()
258 const uint32_t command = CMD_ID(APP_ID_TRANSPORT_TEST) | CMD_IS_READ | CMD_TRANSPORT; in TEST_F() local
267 const uint32_t command = CMD_ID(APP_ID_TRANSPORT_TEST) | CMD_PARAM(0); in TEST_F() local
272 const uint32_t command = CMD_ID(APP_ID_TRANSPORT_TEST) | CMD_IS_READ | CMD_TRANSPORT; in TEST_F() local
283 const uint32_t command = CMD_ID(APP_ID_TRANSPORT_TEST) | CMD_PARAM(0); in TEST_F() local
290 const uint32_t command = CMD_ID(APP_ID_TRANSPORT_TEST) | CMD_IS_READ | CMD_TRANSPORT; in TEST_F() local
299 uint32_t command = CMD_ID(APP_ID_TRANSPORT_TEST) | CMD_IS_DATA | CMD_TRANSPORT; in TEST_F() local
[all …]
/external/clang/tools/scan-build-py/tests/functional/src/compilation_database/
Dbuild_broken.json.in4 "command": "g++ -c -o main.o main.c -Wall -DDEBUG -Dvariable=value", string
10 "command": "cc -c -o broken-one.o broken-one.c -Wall -DDEBUG \"-Dvariable=value with space\"", string
16 "command": "g++ -c -o broken-two.o broken-two.c -Wall -DDEBUG -Dvariable=value", string
22 …"command": "cc -c -o clean-one.o clean-one.c -Wall -DDEBUG \"-Dvariable=value with space\" -Iinclu… string
28 "command": "g++ -c -o clean-two.o clean-two.c -Wall -DDEBUG -Dvariable=value -I ./include", string
34 "command": "cc -c -o emit-one.o emit-one.c -Wall -DDEBUG \"-Dvariable=value with space\"", string
40 "command": "g++ -c -o emit-two.o emit-two.c -Wall -DDEBUG -Dvariable=value", string
Dbuild_regular.json.in4 "command": "g++ -c -o main.o main.c -Wall -DDEBUG -Dvariable=value", string
10 …"command": "cc -c -o clean-one.o clean-one.c -Wall -DDEBUG \"-Dvariable=value with space\" -Iinclu… string
16 "command": "g++ -c -o clean-two.o clean-two.c -Wall -DDEBUG -Dvariable=value -I ./include", string
22 "command": "cc -c -o emit-one.o emit-one.c -Wall -DDEBUG \"-Dvariable=value with space\"", string
28 "command": "g++ -c -o emit-two.o emit-two.c -Wall -DDEBUG -Dvariable=value", string
/external/deqp/scripts/egl/
Dlibrary.py28 def virtualMemberDecl (command): argument
34 def concreteMemberDecl (command): argument
40 def memberImpl (command): argument
54 def initFunctionEntry (command): argument
74 def commandLibraryEntry (command): argument
Dgtf_wrapper.py34 def commandAliasDefinition (command): argument
37 def commandWrapperDeclaration (command): argument
49 def commandWrapperDefinition (command): argument
76 def getDefaultReturn (command): argument
/external/smali/util/src/main/java/org/jf/util/jcommander/
DExtendedCommands.java49 private static ExtendedParameters getExtendedParameters(Object command) { in getExtendedParameters()
64 public static String commandName(Object command) { in commandName()
74 public static String[] commandAliases(Object command) { in commandAliases()
82 public static boolean includeParametersInUsage(Object command) { in includeParametersInUsage()
92 public static String postfixDescription(Object command) { in postfixDescription()
96 public static void addExtendedCommand(JCommander jc, Command command) { in addExtendedCommand()
97 jc.addCommand(commandName(command), command, commandAliases(command)); in addExtendedCommand() local
/external/skqp/tools/
DDumpRecord.cpp34 void operator()(const T& command) { in operator ()()
45 void print(const T& command, double ns) { in print()
49 void print(const SkRecords::Restore& command, double ns) { in print()
54 void print(const SkRecords::Save& command, double ns) { in print()
59 void print(const SkRecords::SaveLayer& command, double ns) { in print()
64 void print(const SkRecords::DrawPicture& command, double ns) { in print()
80 void print(const SkRecords::DrawAnnotation& command, double ns) { in print()
100 void printNameAndTime(const T& command, double ns) { in printNameAndTime()
/external/skia/tools/
DDumpRecord.cpp34 void operator()(const T& command) { in operator ()()
45 void print(const T& command, double ns) { in print()
49 void print(const SkRecords::Restore& command, double ns) { in print()
54 void print(const SkRecords::Save& command, double ns) { in print()
59 void print(const SkRecords::SaveLayer& command, double ns) { in print()
64 void print(const SkRecords::DrawPicture& command, double ns) { in print()
80 void print(const SkRecords::DrawAnnotation& command, double ns) { in print()
100 void printNameAndTime(const T& command, double ns) { in printNameAndTime()
/external/toybox/toys/pending/
Dsh.c94 struct command { struct
95 struct command *next; argument
106 struct command *cmd; argument
247 static void handle(char *command) in handle()
324 char *command = 0; in sh_main() local
/external/deqp/scripts/opengl/
Dgen_wrapper.py31 def commandAliasDefinition (command): argument
34 def commandWrapperDeclaration (command): argument
46 def getDefaultReturn (command): argument
53 def commandWrapperDefinition (command): argument
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
DCommandTest.java41 Command command = new Command("abc", PARAMETERS); in testConstructor() local
52 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
96 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
105 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
119 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
129 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.2/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.3/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.5/src/test/java/org/mockftpserver/core/command/
DCommandTest.java41 Command command = new Command("abc", PARAMETERS); in testConstructor() local
52 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
96 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
105 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
119 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
129 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.0/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/java/org/mockftpserver/stub/command/
DCommandTest.java41 Command command = new Command("abc", PARAMETERS); in testConstructor() local
52 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
96 Command command = new Command("abc", array("123", "456")); in testGetRequiredString() local
105 Command command = new Command("abc", array("123", "456")); in testGetRequiredString_IndexNotValid() local
119 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
129 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.0-rc1/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.4/src/test/java/org/mockftpserver/core/command/
DCommandTest.java41 Command command = new Command("abc", PARAMETERS); in testConstructor() local
52 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
96 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
105 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
119 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
129 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.0.2/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.1/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/mockftpserver/tags/2.0.1/src/test/java/org/mockftpserver/core/command/
DCommandTest.java40 Command command = new Command("abc", PARAMETERS); in testConstructor() local
51 Command command = new Command("abc", PARAMETERS_LIST); in testConstructor_List() local
95 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter() local
104 Command command = new Command("abc", array("123", "456")); in testGetRequiredParameter_IndexNotValid() local
118 Command command = new Command("abc", array("123", "456")); in testGetOptionalString() local
128 Command command = new Command("abc", array("123", "456")); in testGetParameter() local
/external/u-boot/lib/
Dtpm-v1.c34 const u8 command[12] = { in tpm_startup() local
50 const u8 command[10] = { in tpm_self_test_full() local
58 const u8 command[10] = { in tpm_continue_self_test() local
66 const u8 command[101] = { in tpm_nv_define_space() local
109 const u8 command[22] = { in tpm_nv_read_value() local
143 const u8 command[256] = { in tpm_nv_write_value() local
173 const u8 command[34] = { in tpm_extend() local
204 const u8 command[14] = { in tpm_pcr_read() local
232 const u8 command[12] = { in tpm_tsc_physical_presence() local
248 const u8 command[30] = { in tpm_read_pubek() local
[all …]
/external/skqp/src/compute/skc/
Dscheduler.cpp188 skc_scheduler_command_t command = SKC_SCHEDULER_COMMAND_INVALID; in skc_scheduler_acquire() local
223 skc_scheduler_command_t const command) in skc_scheduler_release()
241 skc_scheduler_command_t const command) in skc_scheduler_append()
277 skc_scheduler_command_t const command = skc_scheduler_acquire(scheduler,pfn,data,name); in skc_scheduler_schedule() local
299 skc_scheduler_command_t * const command) in skc_scheduler_pop()
322 skc_scheduler_command_t * const command) in skc_scheduler_pop_wait()
360 skc_scheduler_command_t const command) in skc_scheduler_execute()
381 skc_scheduler_command_t command; in skc_scheduler_yield() local
408 skc_scheduler_command_t command; in skc_scheduler_wait() local
431 skc_scheduler_command_t command; in skc_scheduler_wait_one() local

12345678910>>...84