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

1 2 3 4 5 6

  /external/chromium_org/apps/app_shim/
app_shim_handler_mac.h 21 class Host {
28 // Allows the handler to determine which app this host corresponds to.
33 virtual ~Host() {}
52 // Invoked by the shim host when the shim process is launched. The handler
55 virtual void OnShimLaunch(Host* host, AppShimLaunchType launch_type) = 0;
57 // Invoked by the shim host when the connection to the shim process is closed.
58 virtual void OnShimClose(Host* host) = 0;
60 // Invoked by the shim host when the shim process receives a focus event
    [all...]
extension_app_shim_handler_mac.h 66 AppShimHandler::Host* FindHost(Profile* profile, const std::string& app_id);
71 virtual void OnShimLaunch(Host* host, AppShimLaunchType launch_type) OVERRIDE;
72 virtual void OnShimClose(Host* host) OVERRIDE;
73 virtual void OnShimFocus(Host* host, AppShimFocusType focus_type) OVERRIDE;
74 virtual void OnShimSetHidden(Host* host, bool hidden) OVERRIDE;
75 virtual void OnShimQuit(Host* host) OVERRIDE
    [all...]
app_shim_host_mac_unittest.cc 59 TestingAppShimHost* host() { return host_.get(); } function in class:__anon5860::AppShimHostTest
62 EXPECT_TRUE(host()->ReceiveMessage(new AppShimHostMsg_LaunchApp(
69 EXPECT_EQ(1u, host()->sent_messages().size());
70 IPC::Message* message = host()->sent_messages()[0];
82 virtual void OnShimLaunch(Host* host,
87 host->OnAppLaunchComplete(launch_result_);
90 virtual void OnShimClose(Host* host) OVERRIDE { ++close_count_; }
92 virtual void OnShimFocus(Host* host
    [all...]
app_shim_host_mac.h 29 public apps::AppShimHandler::Host,
65 // apps::AppShimHandler::Host overrides:
  /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/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestAPICommon.h 20 #include "llvm/Support/Host.h"
49 /// Returns true if the host architecture is known to support MCJIT
51 Triple Host(HostTriple);
53 if (std::find(SupportedArchs.begin(), SupportedArchs.end(), Host.getArch())
58 if (std::find(HasSubArchs.begin(), HasSubArchs.end(), Host.getArch())
65 if (Host.getArchName().startswith(I->c_str()))
71 /// Returns true if the host OS is known to support MCJIT
73 Triple Host(HostTriple);
74 if (std::find(UnsupportedOSs.begin(), UnsupportedOSs.end(), Host.getOS())
  /external/chromium_org/media/cdm/ppapi/
fake_cdm_video_decoder.h 17 explicit FakeCdmVideoDecoder(cdm::Host* host);
34 cdm::Host* const host_;
ffmpeg_cdm_audio_decoder.h 32 explicit FFmpegCdmAudioDecoder(cdm::Host* host);
63 cdm::Host* const host_;
ffmpeg_cdm_video_decoder.h 20 explicit FFmpegCdmVideoDecoder(cdm::Host* host);
51 cdm::Host* const host_;
libvpx_cdm_video_decoder.h 20 explicit LibvpxCdmVideoDecoder(cdm::Host* host);
45 cdm::Host* const host_;
cdm_video_decoder.h 39 cdm::Host* host, const cdm::VideoDecoderConfig& config);
cdm_video_decoder.cc 24 cdm::Host* host, const cdm::VideoDecoderConfig& config) {
27 video_decoder.reset(new FakeCdmVideoDecoder(host));
35 video_decoder.reset(new LibvpxCdmVideoDecoder(host));
45 video_decoder.reset(new FFmpegCdmVideoDecoder(host));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
convert-test-expectations 7 from webkitpy.common.host import Host
10 host = Host() variable
11 port = host.port_factory.get(sys.argv[1])
13 contents = host.filesystem.read_text_file(filename)
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-httpd 44 from webkitpy.common.host import Host
59 host = Host()
61 port_obj = host.port_factory.get(port_name='chromium', options=options)
print-layout-test-times 7 from webkitpy.common.host import Host
28 host = Host()
32 times_ms_path = host.filesystem.join(host.port_factory.get().results_directory(), 'times_ms.json')
  /external/nist-sip/java/gov/nist/core/
HostPort.java 47 // host / ipv4/ ipv6/
48 /** host field
50 protected Host host; field in class:HostPort
61 host = null;
76 host.encode(buffer);
92 return port == that.port && host.equals(that.host);
95 /** get the Host field
96 * @return host fiel
    [all...]
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/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 28 import gov.nist.core.Host;
135 this.sentByHostPort.setHost(new Host(ipAddress.getHostAddress()));
171 Host host = new Host(); local
172 host.setHostname(this.getIpAddress().getHostAddress());
173 via.setHost(host);
226 this.sentByHostPort.setHost( new Host(ipAddress.getHostAddress()));
241 this.sentByHostPort.setHost(new Host(sentBy));
244 this.sentByHostPort.setHost(new Host(sentBy.substring(0, ind)))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
main.py 37 from webkitpy.common.host import Host
42 class WebKitPatch(MultiCommandTool, Host):
52 Host.__init__(self)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
platform_macros.h 55 #error Host architecture was not detected as supported by protobuf
  /external/chromium_org/remoting/webapp/
host.js 7 * The deserialized form of the chromoting host as returned by Apiary.
20 remoting.Host = function() {
38 * Determine whether a host needs to be manually updated. This is the case if
39 * the host's major version number is more than 1 lower than that of the web-
41 * and if the host is on-line (off-line hosts are not expected to auto-update).
43 * @param {remoting.Host} host The host information from the directory.
47 * @return {boolean} True if the host is on-line but out-of-date.
49 remoting.Host.needsUpdate = function(host, webappVersion)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Via.java 31 import gov.nist.core.Host;
152 * Get the host, port and transport as a Hop. This is
217 /** set the Host of the Via Header
218 * @param host String to set
220 public void setHost(Host host) {
224 sentBy.setHost(host);
275 * Set the host part of this ViaHeader to the newly supplied <code>host</code>
279 * unexpectedly while parsing the host value
301 Host host = sentBy.getHost(); local
472 Host host = new Host(); local
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 10 ATTRIBUTE Login-Host 14 ipaddr
28 ATTRIBUTE Login-Host 14 ipaddr
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 13 #include <llvm/Support/Host.h>

Completed in 460 milliseconds

1 2 3 4 5 6