HomeSort by relevance Sort by last modified time
    Searched defs:Host (Results 1 - 25 of 34) 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 22 class Host {
33 // Allows the handler to determine which app this host corresponds to.
38 virtual ~Host() {}
61 // Invoked by the shim host when the shim process is launched. The handler
66 virtual void OnShimLaunch(Host* host,
70 // Invoked by the shim host when the connection to the shim process is closed.
71 virtual void OnShimClose(Host* host) = 0;
73 // Invoked by the shim host when the shim process receives a focus event
    [all...]
  /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')
run-blink-websocketserver 37 from webkitpy.common.host import Host
99 host = Host()
101 port_obj = host.port_factory.get(port_name='chromium', options=options)
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'))
run-blink-httpd 44 from webkitpy.common.host import Host
59 host = Host()
61 port_obj = host.port_factory.get(port_name='chromium', options=options)
  /external/chromium_org/chrome_frame/infobars/internal/
infobar_window.h 24 class Host {
26 virtual ~Host() {}
37 }; // class Host
42 void SetHost(Host* host);
75 // Sets up our state to show or hide and calls Host::UpdateLayout to cause a
83 // Manage a timer that repeatedly calls Host::UpdateLayout
88 Host* host_;
  /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, logging_stream):
60 ports_to_lint = [host.port_factory.get(name) for name in host.port_factory.all_port_names(options.platform)]
102 host = MockHost()
104 host = Host()
107 exit_status = lint(host, options, stderr)
run_webkit_tests.py 37 from webkitpy.common.host import Host
57 host = MockHost()
59 host = Host()
63 return lint(host, options, stderr)
66 port = host.port_factory.get(options.platform, options)
313 additional_platform_directories.append(port.host.filesystem.abspath(path))
328 filesystem = port.host.filesystem
349 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/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 85 # FIXME: Change this file to use the Host abstractions rather that os, sys, shutils, etc.
95 from webkitpy.common.host import Host
139 test_importer = TestImporter(Host(), import_dir, repo_dir, options)
176 def __init__(self, host, source_directory, repo_dir, options):
177 self.host = host
181 self.filesystem = self.host.filesystem
202 self.changeset = self.host.executive.run_command(['hg', 'tip']).split('changeset:')[1]
  /external/chromium_org/tools/cr/cr/base/
host.py 5 """Module for build host support."""
17 class Host(cr.Plugin, cr.Plugin.Type):
20 The host is the main access point to services provided by the machine cr
26 super(Host, self).__init__()
29 """Detects whether this is the correct host implementation.
39 for host in cls.Plugins():
40 if host.Matches():
41 return host
  /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/tools/
me2me_virtual_host.py 8 # session, and Host process.
48 HOST_BINARY_NAME = "chrome-remote-desktop-host"
156 class Host:
157 """This manages the configuration for a host."""
248 # symbols of the host hash.
363 # The remoting host expects the server to use "evdev" keycodes, but Xvfb
427 # Start remoting host
428 args = [locate_executable(HOST_BINARY_NAME), "--host-config=-"]
434 # Have the host process use SIGUSR1 to signal a successful start.
437 logging.info("Host ready to receive connections."
    [all...]
  /external/v8/samples/
process.cc 53 virtual const string& Host() = 0;
461 const string& path = request->Host();
483 result->SetAccessor(String::NewSymbol("host"), GetHost);
506 const string& host,
510 virtual const string& Host() { return host_; }
522 const string& host,
526 host_(host),

Completed in 146 milliseconds

1 2