| /external/v8/tools/unittests/ |
| run_perf_test.py | 97 from testrunner.local import commands 98 global commands 130 commands.Execute = MagicMock(side_effect=execute) 169 commands.Execute.assert_called_with( 178 self.assertEquals(expected, commands.Execute.call_args_list)
|
| /external/vboot_reference/utility/ |
| tlcl_generator.c | 42 * known. [max_size] is the maximum size allowed for variable-length commands 470 /* Outputs the structure initializers for all commands. 533 Command* commands = NULL; local 537 cmd->next = commands; 538 commands = cmd; 542 OutputCommands(commands); 549 FreeCommands(commands);
|
| /packages/apps/Email/provider_src/com/android/email/mail/store/ |
| ImapConnection.java | 298 * @param commands An array of Strings comprising the command to be sent to the server 301 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException, 305 int len = commands.size(); 307 String commandToSend = commands.get(i); 384 * @param commands a list of strings that comprise the command to be sent to the server 390 List<ImapResponse> executeComplexCommand(List<String> commands, boolean sensitive) 392 sendComplexCommand(commands, sensitive);
|
| /frameworks/support/media/src/androidTest/java/androidx/media/ |
| MediaSession2_PermissionTest.java | 71 * Tests whether {@link MediaSession2} receives commands that hasn't allowed. 101 private MediaSession2 createSessionWithAllowedActions(final SessionCommandGroup2 commands) { 110 return commands == null ? new SessionCommandGroup2() : commands; 122 SessionCommandGroup2 commands = new SessionCommandGroup2(); local 123 commands.addCommand(new SessionCommand2(commandCode)); 124 return commands; 128 SessionCommandGroup2 commands = new SessionCommandGroup2(); local 129 commands.addAllPredefinedCommands(); 130 commands.removeCommand(new SessionCommand2(commandCode)) [all...] |
| MediaSession2Test.java | 966 final SessionCommandGroup2 commands = new SessionCommandGroup2(); local 1096 public final ArrayList<SessionCommand2> commands = new ArrayList<>(); field in class:MediaSession2Test.MockOnCommandCallback [all...] |
| MediaSession2TestBase.java | 205 // Looper. Otherwise, MediaBrowserCompat will post all the commands to the handler 206 // and commands wouldn't be run if tests codes waits on the test handler. 232 public void onConnected(MediaController2 controller, SessionCommandGroup2 commands) { 284 SessionCommandGroup2 commands) { 285 mCallbackProxy.onAllowedCommandsChanged(controller, commands);
|
| /external/autotest/client/deps/fakemodem/src/ |
| fakemodem.c | 360 static GPtrArray *commands; local 362 if (commands == NULL) { 365 commands = g_ptr_array_sized_new (n); 379 g_ptr_array_add (commands, re); 408 for (i = 0 ; i < commands->len; i++) { 410 if (g_regex_match (g_ptr_array_index (commands, i), next, 0, &info)) { 423 if (i == commands->len) {
|
| /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/ |
| interactive.go | 33 // interactive starts a shell to read pprof commands. 124 // information before accepting interactive commands. 131 ui.Print("Entering interactive mode (type \"help\" for commands, \"o\" for options)") 134 // shortcuts represents composite commands that expand into a sequence 135 // of other commands. 234 // Attempt splitting digits on abbreviated commands (eg top10) 317 // commandHelp displays help and usage information for all Commands 345 // newCompleter creates an autocompletion function for a set of commands.
|
| commands.go | 34 // commands describes the commands accepted by pprof. 35 type commands map[string]*command type 63 // AddCommand adds an additional command to the set of commands 64 // accepted by pprof. This enables extensions to add new commands for 83 // commands from its shell. 86 // pprofCommands are the report generation commands recognized by pprof. 87 var pprofCommands = commands{ 88 // Commands that require no post-processing. 253 // usage returns a string describing the pprof commands and variables [all...] |
| /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/ |
| interactive.go | 33 // interactive starts a shell to read pprof commands. 124 // information before accepting interactive commands. 131 ui.Print("Entering interactive mode (type \"help\" for commands, \"o\" for options)") 134 // shortcuts represents composite commands that expand into a sequence 135 // of other commands. 234 // Attempt splitting digits on abbreviated commands (eg top10) 317 // commandHelp displays help and usage information for all Commands 345 // newCompleter creates an autocompletion function for a set of commands.
|
| commands.go | 34 // commands describes the commands accepted by pprof. 35 type commands map[string]*command type 63 // AddCommand adds an additional command to the set of commands 64 // accepted by pprof. This enables extensions to add new commands for 83 // commands from its shell. 86 // pprofCommands are the report generation commands recognized by pprof. 87 var pprofCommands = commands{ 88 // Commands that require no post-processing. 253 // usage returns a string describing the pprof commands and variables [all...] |
| /external/brotli/c/enc/ |
| encode.c | 533 Command* commands, 568 RecomputeDistancePrefixes(commands, 576 commands, num_commands, 582 commands, num_commands, 600 literal_context_map, commands, num_commands, &mb); 609 commands, num_commands, 625 commands, num_commands, 1130 Command* commands = 0; local [all...] |
| metablock.c | 7 /* Algorithms for distributing the literals and commands of a metablock between 403 const Command *commands, size_t n_commands, MetaBlockSplit* mb) { 413 num_literals += commands[i].insert_len_; 436 const Command cmd = commands[i]; 488 const Command* commands, 493 prev_byte2, literal_context_mode, 1, NULL, commands, n_commands, mb); 497 commands, n_commands, mb);
|
| /external/deqp/modules/gles2/functional/ |
| es2fRandomFragmentOpTests.cpp | 316 // Compute randomized rendering commands. 317 vector<RenderCommand> commands; 318 computeRandomRenderCommands(rnd, glu::ApiType::es(2,0), NUM_CALLS_PER_ITERATION, width, height, commands); 333 for (vector<RenderCommand>::const_iterator cmd = commands.begin(); cmd != commands.end(); cmd++) 357 for (vector<RenderCommand>::const_iterator cmd = commands.begin(); cmd != commands.end(); cmd++)
|
| /external/deqp/modules/gles3/functional/ |
| es3fRandomFragmentOpTests.cpp | 316 // Compute randomized rendering commands. 317 vector<RenderCommand> commands; 318 computeRandomRenderCommands(rnd, glu::ApiType::es(3,0), NUM_CALLS_PER_ITERATION, width, height, commands); 333 for (vector<RenderCommand>::const_iterator cmd = commands.begin(); cmd != commands.end(); cmd++) 357 for (vector<RenderCommand>::const_iterator cmd = commands.begin(); cmd != commands.end(); cmd++)
|
| /frameworks/support/media/src/main/java/androidx/media/ |
| MediaSessionLegacyStub.java | 108 Set<SessionCommand2> commands = group.getCommands(); external variable declarations 109 for (SessionCommand2 command : commands) { 207 void setAllowedCommands(ControllerInfo controller, final SessionCommandGroup2 commands) { 209 mAllowedCommandGroupMap.put(controller, commands); 334 // For trusted apps, send non-null allowed commands to keep 444 void onAllowedCommandsChanged(SessionCommandGroup2 commands) throws RemoteException { 446 bundle.putBundle(ARGUMENT_ALLOWED_COMMANDS, commands.toBundle());
|
| /test/framework/harnesses/host_controller/ |
| console.py | 316 commands to execute. That function emits an empty list or None if 331 commands = script_module.EmitConsoleCommands() 332 if commands: 333 for command in commands: 343 commands to execute. That function emits an empty list or None if 363 commands = script_module.EmitConsoleCommands(**kwargs) 364 if commands: 365 for command in commands: 563 """Handles unrecognized commands.
|
| /build/kati/ |
| runtest.rb | 141 expected.gsub!(' recipe for target ', ' commands for target ') 142 expected.gsub!(' recipe commences ', ' commands commence ') 143 expected.gsub!('missing rule before recipe.', 'missing rule before commands.') 149 expected.gsub!(/Makefile:\d+: commands for target ".*?" failed\n/, '')
|
| /external/jcommander/src/test/java/com/beust/jcommander/ |
| JCommanderTest.java | 435 private void verifyCommandOrdering(String[] commandNames, Object[] commands) { 439 for (int i = 0; i < commands.length; i++) { 440 jc.addCommand(commandNames[i], commands[i]); 444 Assert.assertEquals(c.size(), commands.length); 447 for (int i = 0; i < commands.length; i++) { 474 final String[] commands = { local 477 jCommander.parse(commands); 483 final String[] commands = { local 486 jCommander.parse(commands); 493 final String[] commands = local 505 public List<String> commands=new ArrayList<String>(); field in class:JCommanderTest.Help [all...] |
| /frameworks/support/media/version-compat-tests/current/client/src/androidTest/java/androidx/media/test/client/ |
| MediaSession2TestBase.java | 211 // Looper. Otherwise, MediaBrowserCompat will post all the commands to the handler 212 // and commands wouldn't be run if tests codes waits on the test handler. 238 public void onConnected(MediaController2 controller, SessionCommandGroup2 commands) { 290 SessionCommandGroup2 commands) { 291 mCallbackProxy.onAllowedCommandsChanged(controller, commands);
|
| /tools/test/connectivity/acts/framework/acts/controllers/ |
| access_point.py | 29 from acts.controllers.utils_lib.commands import ip 30 from acts.controllers.utils_lib.commands import route 31 from acts.controllers.utils_lib.commands import shell 127 # Singleton utilities for running various commands. 300 # The following three commands are needed to enable bridging between
|
| /development/cmds/monkey/src/com/android/commands/monkey/ |
| MonkeyKeyEvent.java | 17 package com.android.commands.monkey;
|
| MonkeyNetworkMonitor.java | 17 package com.android.commands.monkey;
|
| MonkeyPowerEvent.java | 17 package com.android.commands.monkey;
|
| /development/gsi/gsi_util/gsi_util/commands/ |
| check_compat.py | 22 from gsi_util.commands.common import image_sources
|