HomeSort by relevance Sort by last modified time
    Searched defs:Host (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/remoting/webapp/
host.js 7 * The deserialized form of the chromoting host as returned by Apiary.
20 remoting.Host = function() {
40 * Determine whether a host needs to be manually updated. This is the case if
41 * the host's major version number is more than 1 lower than that of the web-
43 * and if the host is on-line (off-line hosts are not expected to auto-update).
45 * @param {remoting.Host} host The host information from the directory.
49 * @return {boolean} True if the host is on-line but out-of-date.
51 remoting.Host.needsUpdate = function(host, webappVersion)
    [all...]
  /external/chromium_org/apps/app_shim/
app_shim_handler_mac.h 20 class Host {
31 // Allows the handler to determine which app this host corresponds to.
36 virtual ~Host() {}
64 // Invoked by the shim host when the shim process is launched. The handler
69 virtual void OnShimLaunch(Host* host,
73 // Invoked by the shim host when the connection to the shim process is closed.
74 virtual void OnShimClose(Host* host) = 0;
76 // Invoked by the shim host when the shim process receives a focus event
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
cli_wrapper.py 34 from webkitpy.common.host import Host
52 host = Host()
53 port_obj = host.port_factory.get()
58 port_obj.host.filesystem.maybe_make_directory(options.output_dir)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
print-test-ordering 35 from webkitpy.common.host import Host
45 host = Host()
46 stats_path = host.filesystem.join(host.port_factory.get().results_directory(), 'stats.json')
print-json-test-results 7 from webkitpy.common.host import Host
27 host = Host()
38 txt = host.filesystem.read_text_file(host.filesystem.join(host.port_factory.get(options=options).results_directory(), 'full_results.json'))
update-w3c-deps 13 from webkitpy.common.host import Host
29 cmd = CommandRunner(Host(), options)
105 def __init__(self, host, options):
106 host = host
107 self.executive = host.executive
108 self.fs = host.filesystem
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 38 from webkitpy.common.host import Host
50 def __init__(self, file_path, handle_style_error, host=None):
55 # FIXME: host should be a required parameter, not an optional one.
56 host = host or Host()
57 host.initialize_scm()
59 self._port_obj = host.port_factory.get()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
main.py 31 from webkitpy.common.host import Host
126 host = Host()
127 host.initialize_scm()
143 paths = change_directory(host.filesystem, checkout_root=host.scm().checkout_root, paths=paths)
146 file_reader = TextFileReader(host.filesystem, style_processor)
152 patch = host.scm().create_patch(options.git_commit, changed_files=changed_files)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
main.py 36 from webkitpy.common.host import Host
41 class WebKitPatch(MultiCommandTool, Host):
49 Host.__init__(self)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_parser.py 33 from webkitpy.common.host import Host
45 self.host = Host()
46 self.filesystem = self.host.filesystem
test_converter.py 33 from webkitpy.common.host import Host
41 def convert_for_webkit(new_path, filename, host=Host()):
45 contents = host.filesystem.read_binary_file(filename)
46 converter = _W3CTestConverter(new_path, filename, host)
56 def __init__(self, new_path, filename, host=Host()):
59 self._host = host
test_converter_unittest.py 34 from webkitpy.common.host import Host
48 filesystem = Host().filesystem
test_importer.py 69 # FIXME: Change this file to use the Host abstractions rather that os, sys, shutils, etc.
79 from webkitpy.common.host import Host
116 test_importer = TestImporter(Host(), dir_to_import, top_of_repo, options)
159 def __init__(self, host, dir_to_import, top_of_repo, options):
160 self.host = host
165 self.filesystem = self.host.filesystem
187 self.changeset = self.host.executive.run_command(['hg', 'tip']).split('changeset:')[1]
302 port = self.host.port_factory.get(
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
lint_test_expectations.py 34 from webkitpy.common.host import Host
49 def lint(host, options):
54 ports_to_lint = [host.port_factory.get(name) for name in host.port_factory.all_port_names(options.platform)]
79 def check_virtual_test_suites(host, options):
80 port = host.port_factory.get(options=options)
81 fs = host.filesystem
109 def run_checks(host, options, logging_stream):
112 lint_failed = lint(host, options
    [all...]
run_webkit_tests.py 37 from webkitpy.common.host import Host
57 host = MockHost()
59 host = Host()
63 return run_checks(host, options, stderr)
66 port = host.port_factory.get(options.platform, options)
323 additional_platform_directories.append(port.host.filesystem.abspath(path))
338 filesystem = port.host.filesystem
359 options.test_list.append(port.host.filesystem.join(port.layout_tests_dir(), 'SmokeTests')
    [all...]
layout_tests_mover.py 53 from webkitpy.common.host import Host
71 host = Host()
74 self._port = host.port_factory.get()
75 self._port.host.initialize_scm()
76 self._filesystem = self._port.host.filesystem
77 self._scm = self._port.host.scm()
  /external/chromium_org/tools/cr/cr/base/
host.py 5 """Module for build host support."""
25 class Host(cr.Plugin, cr.Plugin.Type):
28 The host is the main access point to services provided by the machine cr
34 super(Host, self).__init__()
37 """Detects whether this is the correct host implementation.
47 for host in cls.Plugins():
48 if host.Matches():
49 return host
  /external/lldb/include/lldb/Host/
Host.h 1 //===-- Host.h --------------------------------------------------*- C++ -*-===//
25 /// @class Host Host.h "lldb/Host/Host.h"
26 /// @brief A class that provides host computer information.
28 /// Host is a class that answers information about the host operating
31 class Host
77 /// @see static void Host::StopMonitoringChildProcess (uint32_t
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py 45 class Host(SystemHost):
57 # so for now we just pass along the whole Host object.
58 # FIXME: PortFactory doesn't belong on this Host object if Port is going to have a Host (circular dependency).
63 # We call this from the Host constructor, as it's one of the
message_pool.py 52 from webkitpy.common.host import Host
59 def get(caller, worker_factory, num_workers, host=None):
61 return _MessagePool(caller, worker_factory, num_workers, host)
65 def __init__(self, caller, worker_factory, num_workers, host=None):
71 self._host = host
101 host = None
103 host = self._host
106 worker = _Worker(host, self._messages_to_manager, self._messages_to_worker, self._worker_factory, worker_number, self._running_inline, self if self._running_inline else None, self._worker_log_level())
160 def _can_pickle(self, host)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py 34 from webkitpy.common.host import Host # FIXME: This should not be needed!
167 def __init__(self, host):
168 super(AllPlatformsPort, self).__init__(host, 'mac')
179 # FIXME: This should get the Host from the test_config to be mockable!
180 host = Host()
181 host.initialize_scm()
182 host.filesystem = test_config.filesystem
183 all_platforms_port = AllPlatformsPort(host)
    [all...]
  /external/nist-sip/java/gov/nist/core/
Host.java 55 public class Host extends GenericObject {
85 public Host() {
92 /** Constructor given host name or IP address.
94 public Host(String hostName) throws IllegalArgumentException {
96 throw new IllegalArgumentException("null host name");
108 public Host(String name, int addrType) {
116 * Return the host name in encoded form.
134 * Host names are compared by textual equality. No dns lookup
144 Host otherHost = (Host) obj
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner.py 41 from webkitpy.common.host import Host
64 self._host = self._port.host
66 self._host = Host()
  /external/chromium_org/remoting/host/linux/
linux_me2me_host.py 8 # session, and Host process.
56 HOST_BINARY_NAME = "chrome-remote-desktop-host"
95 # The host has been tested only on Ubuntu.
191 class Host:
192 """This manages the configuration for a host."""
292 # symbols of the host hash.
408 # The remoting host expects the server to use "evdev" keycodes, but Xvfb
473 # Start remoting host
474 args = [locate_executable(HOST_BINARY_NAME), "--host-config=-"]
482 # Have the host process use SIGUSR1 to signal a successful start
    [all...]
  /external/chromium_org/v8/samples/
process.cc 53 virtual const string& Host() = 0;
492 const string& path = request->Host();
525 String::NewFromUtf8(isolate, "host", String::kInternalizedString),
551 const string& host,
555 virtual const string& Host() { return host_; }
567 const string& host,
571 host_(host),

Completed in 1070 milliseconds

1 2