HomeSort by relevance Sort by last modified time
    Searched refs:_executive (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
detection.py 44 self._executive = executive
71 if SVN.in_working_directory(absolute_path, executive=self._executive):
72 return SVN(cwd=absolute_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive)
74 if Git.in_working_directory(absolute_path, executive=self._executive):
75 return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive)
scm.py 46 self._executive = executive or Executive()
53 return self._executive.run_command(args,
scm_mock.py 40 self._executive = executive or MockExecutive()
git.py 141 return self._branch_from_ref(self.read_git_config('branch.%s.merge' % current_branch, cwd=self.checkout_root, executive=self._executive).strip())
264 remote_branch_refs = self.read_git_config('svn-remote.svn.fetch', cwd=self.checkout_root, executive=self._executive)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
prettypatch.py 35 self._executive = executive
64 return self._executive.run_command(args, input=diff, decode_output=False)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
apache_http.py 129 self._process = self._executive.popen(self._start_cmd, stderr=self._executive.PIPE)
150 if self._pid and not self._executive.check_running_pid(self._pid):
155 self._executive.kill_process(self._pid)
158 proc = self._executive.popen([self._port_obj.path_to_apache(),
161 '-k', 'stop'], stderr=self._executive.PIPE)
server_base.py 50 self._executive = port_obj._executive
75 self._stdout = self._executive.PIPE
76 self._stderr = self._executive.PIPE
134 self._executive.kill_process(self._pid)
165 process = self._executive.popen(self._start_cmd, env=self._env, stdout=self._stdout, stderr=self._stderr)
176 if self._executive.check_running_pid(self._pid):
179 self._executive.kill_process(self._pid)
241 if not self._platform.is_win() and not self._executive.check_running_pid(self._pid):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
workspace.py 44 self._executive = executive # FIXME: Remove if create_zip is moved to python.
68 self._executive.run_command(['zip', '-9', '-r', zip_path, '.'], cwd=source_path)
platforminfo.py 47 self._executive = executive
77 output = self._executive.run_command(['system_profiler', 'SPDisplaysDataType'], error_handler=self._executive.ignore_error)
94 return long(self._executive.run_command(["sysctl", "-n", "hw.memsize"]))
166 ver_output = self._executive.run_command(['cmd', '/c', 'ver'], decode_output=False)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
config.py 46 self._executive = executive
win_unittest.py 49 port._executive = MockExecutive(should_log=True)
64 port._executive = MockExecutive(should_log=True)
port_testcase.py 212 port._executive = MockExecutive2(run_command_fn=mock_run_command)
216 port._executive = MockExecutive2(exit_code=0)
220 port._executive = MockExecutive2(exit_code=2)
230 port._executive = MockExecutive2(exit_code=2)
241 port._executive = host.executive # AndroidPortTest.make_port sets its own executive, so reset that as well.
359 port._executive = MockExecutive2(exit_code=0)
361 port._executive = MockExecutive2(exit_code=1, output='testing output failure')
base.py 182 self._executive = host.executive
185 self._config = port_config.Config(self._executive, self._filesystem, self.port_name)
263 return self._executive.cpu_count()
384 output = self._executive.run_command(cmd, error_handler=error_handler)
408 _ = self._executive.run_command(['ruby', '--version'])
430 _ = self._executive.run_command([self._path_to_wdiff(), '--help'])
450 if self._executive.run_command([httpd_path, "-v"], env=env, return_exit_code=True) != 0:
499 exit_code = self._executive.run_command(comand, return_exit_code=True)
    [all...]
browser_test_unittest.py 45 port._executive = MockExecutive2(exit_code=0)
android.py 198 self._executive = executive
253 error_handler = self._executive.ignore_error
257 result = self._executive.run_command(self.adb_command() + command, error_handler=error_handler, debug_logging=self._debug_logging)
269 return [AndroidCommands.adb_command_path(self._executive, self._debug_logging), '-s', self._device_serial]
442 self._devices = AndroidDevices(self._executive, default_device, self._debug_logging)
479 usable_devices = self._devices.usable_devices(self._executive)
501 pids = self._executive.running_pids(lambda name: 'adb' in name)
504 self._executive.run_command(['adb', 'devices'])
505 pids = self._executive.running_pids(lambda name: 'adb' in name)
511 self._executive.run_command(['taskset', '-p', '-c', '0', str(pid)]
    [all...]
win.py 171 self._executive.run_command([setup_mount]) # Paths are all absolute, so this does not require a cwd.
android_unittest.py 161 port._executive = MockExecutive2(run_command_fn=port._mock_adb.run_command)

Completed in 140 milliseconds