Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 2243) sorted by relevance

12345678910>>...90

/external/libvorbis/vq/
Dmake_residue_books.pl31 my $command=$line;
32 print ">>> $command";
33 die "Couldn't shell command.\n\tcommand:$command\n"
34 if syst($command);
54 my $command="cp $datafile $bookname.tmp";
55 print ">>> $command\n";
56 die "Couldn't access partition data file.\n\tcommand:$command\n"
57 if syst($command);
59 my $command="huffbuild $bookname.tmp $interval";
60 print ">>> $command\n";
[all …]
Dmake_floor_books.pl26 my $command=$line;
27 print ">>> $command";
28 die "Couldn't shell command.\n\tcommand:$command\n"
29 if syst($command);
40 $command="rm -f $globalname.vqh";
41 die "Couldn't remove file.\n\tcommand:$command\n"
42 if syst($command);
62 $command="rm -f $datafile.tmp";
63 print "\n\n>>> $command\n";
64 die "Couldn't remove temp file.\n\tcommand:$command\n"
[all …]
/external/chromium_org/chrome/browser/chromeos/system_logs/
Dcommand_line_log_source.cc27 CommandLine command(base::FilePath("/usr/bin/amixer")); in ExecuteCommandLines() local
28 command.AppendArg("-c0"); in ExecuteCommandLines()
29 command.AppendArg("contents"); in ExecuteCommandLines()
30 commands.push_back(std::make_pair("alsa controls", command)); in ExecuteCommandLines()
32 command = CommandLine((base::FilePath("/usr/bin/cras_test_client"))); in ExecuteCommandLines()
33 command.AppendArg("--dump_server_info"); in ExecuteCommandLines()
34 command.AppendArg("--dump_audio_thread"); in ExecuteCommandLines()
35 commands.push_back(std::make_pair("cras", command)); in ExecuteCommandLines()
37 command = CommandLine((base::FilePath("/usr/bin/audio_diagnostics"))); in ExecuteCommandLines()
38 commands.push_back(std::make_pair("audio_diagnostics", command)); in ExecuteCommandLines()
[all …]
/external/chromium_org/sandbox/win/tests/validation_tests/
Dsuite.cc21 wchar_t command[1024] = {0}; in TestProcessAccess() local
24 wsprintf(command, kCommandTemplate, target, PROCESS_CREATE_THREAD); in TestProcessAccess()
25 EXPECT_EQ(sandbox::SBOX_TEST_DENIED, runner->RunTest(command)); in TestProcessAccess()
26 wsprintf(command, kCommandTemplate, target, PROCESS_DUP_HANDLE); in TestProcessAccess()
27 EXPECT_EQ(sandbox::SBOX_TEST_DENIED, runner->RunTest(command)); in TestProcessAccess()
28 wsprintf(command, kCommandTemplate, target, PROCESS_SET_INFORMATION); in TestProcessAccess()
29 EXPECT_EQ(sandbox::SBOX_TEST_DENIED, runner->RunTest(command)); in TestProcessAccess()
30 wsprintf(command, kCommandTemplate, target, PROCESS_VM_OPERATION); in TestProcessAccess()
31 EXPECT_EQ(sandbox::SBOX_TEST_DENIED, runner->RunTest(command)); in TestProcessAccess()
32 wsprintf(command, kCommandTemplate, target, PROCESS_VM_READ); in TestProcessAccess()
[all …]
/external/chromium_org/chrome/browser/resources/hotword_helper/
Daudio_client.js183 AudioClient.prototype.checkUi_ = function(command) { argument
184 this.uiStatus_[command].timeoutId =
185 window.setTimeout(this.failedCheckUi_.bind(this, command),
197 AudioClient.prototype.failedCheckUi_ = function(command) { argument
198 if (this.uiStatus_[command].tries++ < AudioClient.MAX_RETRIES) {
199 this.sendCommandToPage_(command);
200 this.checkUi_(command);
202 this.sendCommandToExtension_(this.uiStatus_[command].error);
212 AudioClient.prototype.verifyUi_ = function(command) { argument
213 if (this.uiStatus_[command].timeoutId) {
[all …]
/external/chromium_org/media/tools/constrained_network_server/
Dtraffic_control.py138 command = ['sudo', 'tc', 'qdisc', 'del', 'dev', config['interface'], 'root']
140 _Exec(command, msg='Could not delete root qdisc.')
170 command = ['sudo', 'tc', 'qdisc', 'add', 'dev', interface, 'root', 'handle',
173 _Exec(command, msg=('Error creating root qdisc. '
203 command = ['sudo', 'tc', 'class', option, 'dev', config['interface'],
206 _Exec(command, msg=('Error configuring class ID %s using "%s" command.' %
222 command = ['sudo', 'tc', 'qdisc', 'add', 'dev', config['interface'], 'parent',
228 command.extend(['loss', loss])
232 command.extend(['delay', latency])
234 _Exec(command, msg='Could not attach qdisc to class ID %s.' % class_id)
[all …]
Dtraffic_control_test.py31 command = ['ip', 'link', 'add', 'name', self._INTERFACE, 'type', 'dummy']
32 traffic_control._Exec(command, 'Error creating dummy interface %s.' %
38 command = ['ip', 'link', 'del', self._INTERFACE]
39 traffic_control._Exec(command)
47 traffic_control._Exec, command=['ls', '!doesntExist!'])
61 command = ['tc', 'qdisc', 'ls', 'dev', config['interface']]
62 output = traffic_control._Exec(command)
66 output = traffic_control._Exec(command)
85 command = ['tc', 'class', 'ls', 'dev', config['interface']]
86 output = traffic_control._Exec(command)
[all …]
/external/chromium_org/ui/webui/resources/js/cr/ui/
Dmenu_item.js36 this.command = commandId;
61 get command() { getter in MenuItem
64 set command(command) { setter in MenuItem
72 if (typeof command == 'string' && command[0] == '#') {
73 command = assert(this.ownerDocument.getElementById(command.slice(1)));
74 cr.ui.decorate(command, Command);
77 this.command_ = command;
78 if (command) {
79 if (command.id)
80 this.setAttribute('command', '#' + command.id);
[all …]
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditCommand.cpp66 static inline EditCommandComposition* compositionIfPossible(EditCommand* command) in compositionIfPossible() argument
68 if (!command->isCompositeEditCommand()) in compositionIfPossible()
70 return toCompositeEditCommand(command)->composition(); in compositionIfPossible()
75 for (EditCommand* command = this; ; command = command->m_parent) { in setStartingSelection() local
76 if (EditCommandComposition* composition = compositionIfPossible(command)) { in setStartingSelection()
77 ASSERT(command->isTopLevelCommand()); in setStartingSelection()
80 command->m_startingSelection = selection; in setStartingSelection()
81 if (!command->m_parent || command->m_parent->isFirstCommand(command)) in setStartingSelection()
93 for (EditCommand* command = this; command; command = command->m_parent) { in setEndingSelection() local
94 if (EditCommandComposition* composition = compositionIfPossible(command)) { in setEndingSelection()
[all …]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/keymaps/
Dkey_map.js151 cvox.KeyMap.prototype.hasBinding = function(command, sequence) { argument
153 return this.commandToKey_[command] == sequence;
157 if (binding.command == command && binding.sequence == sequence) {
171 cvox.KeyMap.prototype.hasCommand = function(command) { argument
173 return this.commandToKey_[command] != undefined;
177 if (binding.command == command) {
212 return binding.command;
226 cvox.KeyMap.prototype.keyForCommand = function(command) { argument
228 return [this.commandToKey_[command]];
233 if (binding.command == command) {
[all …]
/external/chromium_org/chrome/browser/ui/cocoa/applescript/
Dtab_applescript.h50 - (void)handlesUndoScriptCommand:(NSScriptCommand*)command;
51 - (void)handlesRedoScriptCommand:(NSScriptCommand*)command;
54 - (void)handlesCutScriptCommand:(NSScriptCommand*)command;
55 - (void)handlesCopyScriptCommand:(NSScriptCommand*)command;
56 - (void)handlesPasteScriptCommand:(NSScriptCommand*)command;
59 - (void)handlesSelectAllScriptCommand:(NSScriptCommand*)command;
62 - (void)handlesGoBackScriptCommand:(NSScriptCommand*)command;
63 - (void)handlesGoForwardScriptCommand:(NSScriptCommand*)command;
64 - (void)handlesReloadScriptCommand:(NSScriptCommand*)command;
65 - (void)handlesStopScriptCommand:(NSScriptCommand*)command;
[all …]
/external/chromium_org/tools/site_compare/commands/
Dcompare2.py84 def ValidateCompare2(command): argument
87 if (os.path.splitext(command["--browser1"])[1].lower() not in executables or
88 os.path.splitext(command["--browser2"])[1].lower() not in executables):
92 def ExecuteCompare2(command): argument
94 if command["--url"]:
95 url_list = [command["--url"]]
97 startline = command["--startline"]
98 if command["--count"]:
99 endline = startline+command["--count"]
101 endline = command["--endline"]
[all …]
Dmaskmaker.py88 def ValidateMaskmaker(command): argument
91 if command["--browserpath"]:
92 if os.path.splitext(command["--browserpath"])[1].lower() not in executables:
96 def ExecuteMaskmaker(command): argument
108 if command["--url"]:
109 url_list = [MaskmakerURL(command["--url"])]
111 startline = command["--startline"]
112 if command["--count"]:
113 endline = startline+command["--count"]
115 endline = command["--endline"]
[all …]
Dtimeload.py71 def ExecuteTimeLoad(command): argument
73 browsers = command["--browsers"].split(",")
76 if command["--browserversions"]:
77 browser_versions = command["--browserversions"].split(",")
81 if command["--browserpaths"]:
82 browser_paths = command["--browserpaths"].split(",")
108 if command["--url"]:
109 url_list = [command["--url"]]
111 startline = command["--startline"]
112 if command["--count"]:
[all …]
/external/chromium_org/third_party/webrtc/tools/e2e_quality/audio/
Drun_audio_test.py54 command = ['pacmd', 'list-sources']
55 print ' '.join(command)
56 proc = subprocess.Popen(command, stdout=subprocess.PIPE)
69 command = ['pacmd', 'set-default-source', options.play_sink + '.monitor']
70 print ' '.join(command)
71 retcode = subprocess.call(command, stdout=subprocess.PIPE)
75 command = [options.harness, '--render=' + options.rec_sink,
77 print ' '.join(command)
78 voe_proc = subprocess.Popen(command)
88 command = (['pacat', '-p', '-d', options.play_sink] + format_args +
[all …]
/external/lldb/utils/vim-lldb/plugin/
Dlldb.vim39 " The LLDB CommandInterpreter provides tab-completion in Vim's command mode.
44command -complete=custom,s:CompleteWindow -nargs=1 Lhide python ctrl.doHide('<args>')
45command -complete=custom,s:CompleteWindow -nargs=0 Lshow python ctrl.doShow('<args>')
48command -nargs=* Lstart python ctrl.doLaunch(True, …
49command -nargs=* Lrun python ctrl.doLaunch(False,…
50command -nargs=1 Lattach python ctrl.doAttach('<args…
51 command -nargs=0 Ldetach python ctrl.doDetach()
53 " Regexp-commands: because vim's command mode does not support '_' or '-'
54 " characters in command names, we omit them when creating the :L<cmd>
56command -complete=custom,s:CompleteCommand -nargs=* Lregexpattach python ctrl.doCommand('_reg…
[all …]
/external/valgrind/main/gdbserver_tests/
DmcinvokeWS.stderrB.exp1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ....
[all …]
DmcinvokeRU.stderrB.exp1 sending command v.wait 0 to pid ....
2 sending command v.wait 0 to pid ....
3 sending command v.wait 0 to pid ....
4 sending command v.wait 0 to pid ....
5 sending command v.wait 0 to pid ....
6 sending command v.wait 0 to pid ....
7 sending command v.wait 0 to pid ....
8 sending command v.wait 0 to pid ....
9 sending command v.wait 0 to pid ....
10 sending command v.wait 0 to pid ....
[all …]
/external/chromium_org/tools/cr/cr/base/
Dhost.py51 def _Execute(self, command, argument
77 command = [cr.context.Substitute(arg) for arg in command if arg]
79 if not command:
83 print ' '.join(command)
94 command, shell=shell,
98 print 'Failed to exec', command
115 print 'Error {0} executing command {1}'.format(p.returncode, command)
121 def Shell(self, *command): argument
122 command = ' '.join([pipes.quote(arg) for arg in command])
123 return self._Execute([command], shell=True, ignore_interrupt_signal=True)
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
Djsilver.sablecc63 command, // ClearSilver command: "<?cs var:".
64 args, // Args to command: "some.variable=3 ?>"
86 {command} var = 'var';
87 {command} lvar = 'lvar';
88 {command} evar = 'evar';
89 {command} uvar = 'uvar';
90 {command} set = 'set';
91 {command} if = 'if';
92 {command} else_if = ('elif' | 'elseif');
93 {command} else = 'else';
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
Drebaseline_unittest.py51 …self.command = self.command_constructor() # lint warns that command_constructor might not be set,…
52 self.command.bind_to_tool(self.tool)
98 self.command._builder_data[builder] = data
125 self.command.execute(options, [], self.tool)
152 self.command.execute(options, [], self.tool)
180 self.command.execute(options, [], self.tool)
212 self.command.execute(options, [], self.tool)
230 command = self.command
231 …self.assertMultiLineEqual(command._baseline_directory("WebKit Mac10.7"), "/mock-checkout/third_par…
232 …self.assertMultiLineEqual(command._baseline_directory("WebKit Mac10.6"), "/mock-checkout/third_par…
[all …]
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DCommandPacket.java38 private byte command; field in CommandPacket
50 public CommandPacket(byte commandSet, byte command) { in CommandPacket() argument
53 this.command = command; in CommandPacket()
64 command = bytes_array[COMMAND_INDEX]; in CommandPacket()
91 command = val; in setCommand()
100 public void setCommand(byte commandSet, byte command) { in setCommand() argument
102 this.command = command; in setCommand()
111 return command; in getCommand()
124 res[COMMAND_INDEX] = command; in toBytesArray()
/external/chromium_org/content/browser/devtools/
Drenderer_overrides_handler.h58 scoped_refptr<DevToolsProtocol::Command> command);
62 scoped_refptr<DevToolsProtocol::Command> command);
64 scoped_refptr<DevToolsProtocol::Command> command);
66 scoped_refptr<DevToolsProtocol::Command> command);
70 scoped_refptr<DevToolsProtocol::Command> command);
72 scoped_refptr<DevToolsProtocol::Command> command);
74 scoped_refptr<DevToolsProtocol::Command> command);
76 scoped_refptr<DevToolsProtocol::Command> command);
78 scoped_refptr<DevToolsProtocol::Command> command);
80 scoped_refptr<DevToolsProtocol::Command> command);
[all …]
/external/chromium_org/tools/telemetry/telemetry/util/
Dsupport_binaries.py25 command = None
36 command = candidate
38 return command
47 command = FindLocallyBuiltPath(binary_name)
48 if not command and _IsInCloudStorage(binary_name, platform_name):
50 command = _GetBinPath(binary_name, platform_name)
53 if command and os.path.exists(command):
54 os.chmod(command,
58 if command:
59 command = os.path.abspath(command)
[all …]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
Dcommandbutton.js53 CommandButton.prototype.setCommand = function(command) { argument
60 if (typeof command == 'string' && command[0] == '#') {
61 command = this.ownerDocument.getElementById(command.slice(1));
62 cr.ui.decorate(command, cr.ui.Command);
65 this.command_ = command;
66 if (command) {
67 if (command.id)
68 this.setAttribute('command', '#' + command.id);
70 this.setLabel(command.label);
71 this.disabled = command.disabled;
[all …]

12345678910>>...90