HomeSort by relevance Sort by last modified time
    Searched refs:commands (Results 451 - 475 of 1164) sorted by null

<<11121314151617181920>>

  /external/python/cpython2/Demo/tkinter/guido/
svkill.py 3 # Tkinter interface to SYSV `ps' and `kill' commands.
12 import commands
49 s = commands.getoutput('ps %s %s' % (view, format))
  /external/python/cpython3/Tools/scripts/
highlight.py 182 commands = default_latex_commands,
185 macros = '\n'.join(r'\newcommand{\py%s}[1]{%s}' % c for c in commands.items())
  /external/scapy/scapy/modules/
nmap.py 195 @conf.commands.register
204 @conf.commands.register
  /external/selinux/python/sepolicy/sepolicy/
interface.py 196 from commands import getstatusoutput
215 from commands import getstatusoutput
  /external/skia/tools/calmbench/
calmbench.py 130 commands = [
136 for command in commands:
  /external/skqp/tools/calmbench/
calmbench.py 130 commands = [
136 for command in commands:
  /external/toolchain-utils/automation/clients/helper/
chromeos.py 163 self.commands = CommandsFactory(chromeos_version, board, toolchain,
167 command = self.commands.BuildAndBenchmark()
  /external/valgrind/gdbserver_tests/
mssnapshot.stderrB.exp 3 general valgrind monitor commands:
4 help [debug] : monitor command help. With debug: + debugging commands
17 massif monitor commands:
  /external/vogar/src/vogar/
OutcomeStore.java 33 import vogar.commands.Mkdir;
34 import vogar.commands.Rm;
  /external/vogar/src/vogar/tasks/
RunActionTask.java 27 import vogar.commands.Command;
28 import vogar.commands.VmCommandBuilder;
  /external/webrtc/tools/sslroots/
generate_sslroots.py 22 import commands
134 output = commands.getstatusoutput(command)[1]
  /frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
RunTestCommand.java 17 package com.android.commands.uiautomator;
22 import com.android.commands.uiautomator.Launcher.Command;
  /frameworks/base/test-runner/tests/
Android.mk 20 # Run the tests using the following commands:
  /prebuilts/go/darwin-x86/src/cmd/go/internal/generate/
generate_test.go 40 commands: make(map[string][]string),
  /prebuilts/go/darwin-x86/src/cmd/internal/browser/
browser.go 15 // Commands returns a list of possible commands to use to open a url.
16 func Commands() [][]string {
43 for _, args := range Commands() {
  /prebuilts/go/darwin-x86/src/cmd/nm/
doc.go 32 // for compatibility with other nm commands
  /prebuilts/go/darwin-x86/src/
run.bat 24 echo ##### Building packages and commands.
  /prebuilts/go/linux-x86/src/cmd/go/internal/generate/
generate_test.go 40 commands: make(map[string][]string),
  /prebuilts/go/linux-x86/src/cmd/internal/browser/
browser.go 15 // Commands returns a list of possible commands to use to open a url.
16 func Commands() [][]string {
43 for _, args := range Commands() {
  /prebuilts/go/linux-x86/src/cmd/nm/
doc.go 32 // for compatibility with other nm commands
  /prebuilts/go/linux-x86/src/
run.bat 24 echo ##### Building packages and commands.
  /external/brotli/c/enc/
brotli_bit_stream.c     [all...]
  /bionic/libc/tools/
gensyscalls.py 8 import commands
662 commands.getoutput("git add " + " ".join(adds))
664 commands.getoutput("git rm " + " ".join(deletes))
669 commands.getoutput("git add " + " ".join((os.path.join(bionic_libc_root, file)) for file in edits))
671 commands.getoutput("git add %s" % (os.path.join(bionic_libc_root, "SYSCALLS.TXT")))
  /frameworks/base/media/java/android/media/
MediaSession2.java 70 * When a session receive transport control commands, the session sends the commands directly to
187 * Callback to be called for all incoming commands from {@link MediaController2}s.
189 * If it's not set, the session will accept all controllers and all incoming commands by
195 * Called when a controller is created for this session. Return allowed commands for
196 * controller. By default it allows all connection requests and commands.
204 * @return allowed commands. Can be {@code null} to reject connection.
208 SessionCommandGroup2 commands = new SessionCommandGroup2(); local
209 commands.addAllPredefinedCommands();
210 return commands;
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapFolder.java 473 List<String> commands = new ArrayList<String>(); local
484 commands.add(ImapConstants.UID_SEARCH + " CHARSET " + charset + " OR FROM " + octetLength);
485 commands.add(filter + " (OR TO " + octetLength);
486 commands.add(filter + " (OR CC " + octetLength);
487 commands.add(filter + " (OR SUBJECT " + octetLength);
488 commands.add(filter + " BODY " + octetLength);
489 commands.add(filter + ")))");
490 return getMessagesInternal(complexSearchForUids(commands), listener);
493 /* package */ String[] complexSearchForUids(List<String> commands) throws MessagingException {
497 return getSearchUids(mConnection.executeComplexCommand(commands, false))
    [all...]

Completed in 1385 milliseconds

<<11121314151617181920>>