Searched refs:host (Results 176 - 200 of 2743) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_flash_drm_renderer_host.h11 #include "ppapi/host/resource_host.h"
23 class PepperFlashDRMRendererHost : public ppapi::host::ResourceHost {
25 PepperFlashDRMRendererHost(content::RendererPpapiHost* host,
32 ppapi::host::HostMessageContext* context) OVERRIDE;
35 int32_t OnGetVoucherFile(ppapi::host::HostMessageContext* context);
38 const ppapi::host::ReplyMessageContext& reply_context,
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTemplateContentDocumentFragment.h36 static PassRefPtrWillBeRawPtr<TemplateContentDocumentFragment> create(Document& document, Element* host) argument
38 return adoptRefWillBeNoop(new TemplateContentDocumentFragment(document, host));
41 Element* host() const { return m_host; } function in class:blink::FINAL
53 TemplateContentDocumentFragment(Document& document, Element* host) argument
55 , m_host(host)
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDraggedIsolatedFileSystem.cpp46 DOMFileSystem* DraggedIsolatedFileSystem::getDOMFileSystem(DataObject* host, ExecutionContext* executionContext) argument
48 DraggedIsolatedFileSystem* draggedIsolatedFileSystem = from(host);
52 draggedIsolatedFileSystem->m_filesystem = DOMFileSystem::createIsolatedFileSystem(executionContext, host->filesystemId());
68 DraggedIsolatedFileSystem::DraggedIsolatedFileSystem(DataObject& host, const String& filesystemId) argument
70 host.setFilesystemId(filesystemId);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
H A Dprint_layout_test_times_unittest.py38 host = MockHost()
39 fs = host.filesystem
40 results_directory = host.port_factory.get().results_directory()
55 main(host, args)
56 self.assertEqual(host.stdout.getvalue(), expected_output)
/external/ppp/pppd/plugins/radius/
H A Dip_util.c23 * Purpose: return an IP address in host long notation from a host
29 UINT4 rc_get_ipaddr (char *host) argument
33 if (rc_good_ipaddr (host) == 0)
35 return ntohl(inet_addr (host));
37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL)
39 error("rc_get_ipaddr: couldn't resolve hostname: %s", host);
98 * Purpose: Return a printable host name (or IP address in dot notation)
110 error("rc_ip_hostname: couldn't look up host by addr: %08lX", h_ipaddr);
119 * Purpose: get the IP address of this host i
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DClientCertLookupTable.java16 * Store user's client certificate decision for a host and port pair. Not
51 public void allow(String host, int port, AndroidPrivateKey privateKey, byte[][] chain) { argument
52 String host_and_port = hostAndPort(host, port);
57 public void deny(String host, int port) { argument
58 String host_and_port = hostAndPort(host, port);
63 public Cert getCertData(String host, int port) { argument
64 return mCerts.get(hostAndPort(host, port));
67 public boolean isDenied(String host, int port) { argument
68 return mDenieds.contains(hostAndPort(host, port));
71 // TODO(sgurun) add a test for this. Not separating host an
73 hostAndPort(String host, int port) argument
[all...]
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_truetype_font_list_host.cc15 #include "ppapi/host/dispatch_host_message.h"
16 #include "ppapi/host/host_message_context.h"
17 #include "ppapi/host/resource_message_filter.h"
25 class FontMessageFilter : public ppapi::host::ResourceMessageFilter {
29 // ppapi::host::ResourceMessageFilter implementation.
34 ppapi::host::HostMessageContext* context) OVERRIDE;
40 int32_t OnHostMsgGetFontFamilies(ppapi::host::HostMessageContext* context);
41 int32_t OnHostMsgGetFontsInFamily(ppapi::host::HostMessageContext* context,
63 ppapi::host::HostMessageContext* context) {
76 ppapi::host
103 PepperTrueTypeFontListHost(BrowserPpapiHost* host, PP_Instance instance, PP_Resource resource) argument
[all...]
H A Dpepper_file_io_host.h20 #include "ppapi/host/host_message_context.h"
21 #include "ppapi/host/resource_host.h"
33 class PepperFileIOHost : public ppapi::host::ResourceHost,
38 PepperFileIOHost(BrowserPpapiHostImpl* host,
43 // ppapi::host::ResourceHost override.
46 ppapi::host::HostMessageContext* context) OVERRIDE;
56 int32_t OnHostMsgOpen(ppapi::host::HostMessageContext* context,
59 int32_t OnHostMsgTouch(ppapi::host::HostMessageContext* context,
62 int32_t OnHostMsgSetLength(ppapi::host::HostMessageContext* context,
64 int32_t OnHostMsgClose(ppapi::host
[all...]
H A Dpepper_renderer_connection.cc19 #include "ppapi/host/resource_host.h"
35 PendingHostCreator(BrowserPpapiHostImpl* host,
41 // Adds the given resource host as a pending one. The host is remembered as
42 // host number |index|, and will ultimately be sent to the plugin to be
46 scoped_ptr<ppapi::host::ResourceHost> resource_host);
64 PendingHostCreator::PendingHostCreator(BrowserPpapiHostImpl* host, argument
69 : host_(host),
77 scoped_ptr<ppapi::host::ResourceHost> resource_host) {
110 BrowserPpapiHostImpl* host local
159 BrowserPpapiHostImpl* host = GetHostForChildProcess(child_process_id); local
[all...]
H A Dpepper_internal_file_ref_backend.h14 #include "ppapi/host/ppapi_host.h"
27 ppapi::host::PpapiHost* host,
34 virtual int32_t MakeDirectory(ppapi::host::ReplyMessageContext context,
36 virtual int32_t Touch(ppapi::host::ReplyMessageContext context,
39 virtual int32_t Delete(ppapi::host::ReplyMessageContext context) OVERRIDE;
40 virtual int32_t Rename(ppapi::host::ReplyMessageContext context,
42 virtual int32_t Query(ppapi::host::ReplyMessageContext context) OVERRIDE;
43 virtual int32_t ReadDirectoryEntries(ppapi::host::ReplyMessageContext context)
45 virtual int32_t GetAbsolutePath(ppapi::host
[all...]
H A Dpepper_gamepad_host.h12 #include "ppapi/host/resource_host.h"
15 namespace host { namespace in namespace:ppapi
26 public ppapi::host::ResourceHost,
29 PepperGamepadHost(BrowserPpapiHost* host,
36 BrowserPpapiHost* host,
44 ppapi::host::HostMessageContext* context) OVERRIDE;
55 int32_t OnRequestMemory(ppapi::host::HostMessageContext* context);
57 void GotUserGesture(const ppapi::host::ReplyMessageContext& in_context);
H A Dpepper_truetype_font_host.h17 #include "ppapi/host/host_message_context.h"
18 #include "ppapi/host/resource_host.h"
24 class CONTENT_EXPORT PepperTrueTypeFontHost : public ppapi::host::ResourceHost {
26 PepperTrueTypeFontHost(BrowserPpapiHost* host,
35 ppapi::host::HostMessageContext* context) OVERRIDE;
38 int32_t OnHostMsgGetTableTags(ppapi::host::HostMessageContext* context);
39 int32_t OnHostMsgGetTable(ppapi::host::HostMessageContext* context,
47 ppapi::host::ReplyMessageContext reply_context,
50 ppapi::host::ReplyMessageContext reply_context,
/external/chromium_org/content/renderer/pepper/
H A Dpepper_websocket_host.h13 #include "ppapi/host/host_message_context.h"
14 #include "ppapi/host/resource_host.h"
29 : public ppapi::host::ResourceHost,
32 explicit PepperWebSocketHost(RendererPpapiHost* host,
39 ppapi::host::HostMessageContext* context) OVERRIDE;
55 int32_t OnHostMsgConnect(ppapi::host::HostMessageContext* context,
58 int32_t OnHostMsgClose(ppapi::host::HostMessageContext* context,
61 int32_t OnHostMsgSendText(ppapi::host::HostMessageContext* context,
63 int32_t OnHostMsgSendBinary(ppapi::host::HostMessageContext* context,
65 int32_t OnHostMsgFail(ppapi::host
[all...]
H A Dpepper_audio_input_host.h18 #include "ppapi/host/host_message_context.h"
19 #include "ppapi/host/resource_host.h"
25 class PepperAudioInputHost : public ppapi::host::ResourceHost {
27 PepperAudioInputHost(RendererPpapiHostImpl* host,
34 ppapi::host::HostMessageContext* context) OVERRIDE;
43 int32_t OnOpen(ppapi::host::HostMessageContext* context,
47 int32_t OnStartOrStop(ppapi::host::HostMessageContext* context, bool capture);
48 int32_t OnClose(ppapi::host::HostMessageContext* context);
68 ppapi::host::ReplyMessageContext open_context_;
H A Dpepper_file_system_host.h15 #include "ppapi/host/host_message_context.h"
16 #include "ppapi/host/resource_host.h"
24 : public ppapi::host::ResourceHost,
28 // host will not be connected to any specific file system, and will need to
30 PepperFileSystemHost(RendererPpapiHost* host,
37 PepperFileSystemHost(RendererPpapiHost* host,
44 // ppapi::host::ResourceHost override.
47 ppapi::host::HostMessageContext* context) OVERRIDE;
50 // Supports FileRefs direct access on the host side.
60 int32_t OnHostMsgOpen(ppapi::host
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_host_unittest.cc156 // Mock classes for the 'host' to work with
160 // Mock callbacks we expect to receive from the 'host'
172 // Construct a host and test what state it appears to be in.
173 AppCacheHost host(1, &mock_frontend_, &service_);
174 EXPECT_EQ(1, host.host_id());
175 EXPECT_EQ(&service_, host.service());
176 EXPECT_EQ(&mock_frontend_, host.frontend());
177 EXPECT_EQ(NULL, host.associated_cache());
178 EXPECT_FALSE(host.is_selection_pending());
183 host
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DRFC2965DomainAttributeHandler.java83 // MAY NOT be an IP address of a host name
92 * Host A's name domain-matches host B's if
94 * <ul>their host name strings string-compare equal; or</ul>
100 * @param host host name where cookie is received from or being sent to.
102 * @return true if the specified host matches the given domain.
104 public boolean domainMatch(String host, String domain) { argument
105 boolean match = host.equals(domain)
106 || (domain.startsWith(".") && host.endsWith(domain));
122 String host
[all...]
/external/chromium_org/chrome/common/
H A Dpepper_permission_util.cc26 std::string HashHost(const std::string& host) { argument
27 const std::string id_hash = base::SHA1HashString(host);
32 bool HostIsInSet(const std::string& host, const std::set<std::string>& set) { argument
33 return set.count(host) > 0 || set.count(HashHost(host)) > 0;
45 const std::string host = url.host(); local
46 if (HostIsInSet(host, whitelist))
51 const Extension* extension = extension_set ? extension_set->GetByID(host)
85 const std::string host local
[all...]
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DSessionConnector.java10 * This class manages making a connection to a host, with logic for reloading the host list and
11 * retrying the connection in the case of a stale host JID.
22 /** Used to find the HostInfo from the returned array after the host list is reloaded. */
29 * @param hostListCallback Object to be notified whenever the host list is reloaded.
30 * @param hostListLoader The object used for reloading the host list.
39 /** Initiates a connection to the host. */
40 public void connectToHost(String accountName, String authToken, HostInfo host) { argument
43 mHostId = host.id;
44 mHostJabberId = host
57 hostIncomplete(HostInfo host) argument
[all...]
/external/chromium_org/third_party/polymer/components/core-toolbar/
H A Dcore-toolbar.css10 :host {
24 :host(.animate) {
29 :host(.medium-tall) {
33 :host(.tall) {
45 :host(.narrow) {
49 :host(.narrow.medium-tall) {
53 :host(.narrow.tall) {
57 :host(.narrow) .toolbar-tools {
70 :host(.tall, .medium-tall) #middleBar {
107 polyfill-next-selector { content: ':host
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-toolbar/
H A Dcore-toolbar.css10 :host {
24 :host(.animate) {
29 :host(.medium-tall) {
33 :host(.tall) {
45 :host(.narrow) {
49 :host(.narrow.medium-tall) {
53 :host(.narrow.tall) {
57 :host(.narrow) .toolbar-tools {
70 :host(.tall, .medium-tall) #middleBar {
107 polyfill-next-selector { content: ':host
[all...]
/external/chromium_org/chrome/browser/renderer_host/pepper/
H A Dpepper_flash_browser_host.h11 #include "ppapi/host/host_message_context.h"
12 #include "ppapi/host/resource_host.h"
28 class PepperFlashBrowserHost : public ppapi::host::ResourceHost {
30 PepperFlashBrowserHost(content::BrowserPpapiHost* host,
35 // ppapi::host::ResourceHost override.
38 ppapi::host::HostMessageContext* context) OVERRIDE;
41 int32_t OnUpdateActivity(ppapi::host::HostMessageContext* host_context);
43 ppapi::host::HostMessageContext* host_context,
45 int32_t OnGetLocalDataRestrictions(ppapi::host::HostMessageContext* context);
47 void GetLocalDataRestrictions(ppapi::host
[all...]
H A Dpepper_flash_drm_host.h12 #include "ppapi/host/host_message_context.h"
13 #include "ppapi/host/resource_host.h"
26 class PepperFlashDRMHost : public ppapi::host::ResourceHost {
28 PepperFlashDRMHost(content::BrowserPpapiHost* host,
36 ppapi::host::HostMessageContext* context) OVERRIDE;
40 int32_t OnHostMsgGetDeviceID(ppapi::host::HostMessageContext* context);
41 int32_t OnHostMsgGetHmonitor(ppapi::host::HostMessageContext* context);
42 int32_t OnHostMsgMonitorIsExternal(ppapi::host::HostMessageContext* context);
46 void GotDeviceID(ppapi::host::ReplyMessageContext reply_context,
/external/chromium_org/chrome/test/base/
H A Dtest_chrome_web_ui_controller_factory.cc24 const std::string& host, WebUIProvider* provider) {
25 DCHECK_EQ(0U, factory_overrides_.count(host));
26 factory_overrides_[host] = provider;
30 const std::string& host) {
31 DCHECK_EQ(1U, factory_overrides_.count(host));
32 factory_overrides_.erase(host);
55 factory_overrides_.find(url.host());
23 AddFactoryOverride( const std::string& host, WebUIProvider* provider) argument
29 RemoveFactoryOverride( const std::string& host) argument
/external/chromium_org/url/
H A Durl_canon_host.cc74 // Scans a host name and fills in the output flags according to what we find.
79 const Component& host,
82 int end = host.end();
85 for (int i = host.begin; i < end; i++) {
93 // Canonicalizes a host name that is entirely 8-bit characters (even though
104 // canonicalized host since we know nothing weird can happen (escaped
113 // The return value indicates if the output is a potentially valid host name.
115 bool DoSimpleHost(const INCHAR* host, argument
123 unsigned int source = host[i];
127 if (!DecodeEscaped(host,
78 ScanHostname(const CHAR* spec, const Component& host, bool* has_non_ascii, bool* has_escaped) argument
197 DoComplexHost(const char* host, int host_len, bool has_non_ascii, bool has_escaped, CanonOutput* output) argument
260 DoComplexHost(const base::char16* host, int host_len, bool has_non_ascii, bool has_escaped, CanonOutput* output) argument
291 DoHost(const CHAR* spec, const Component& host, CanonOutput* output, CanonHostInfo* host_info) argument
344 CanonicalizeHost(const char* spec, const Component& host, CanonOutput* output, Component* out_host) argument
354 CanonicalizeHost(const base::char16* spec, const Component& host, CanonOutput* output, Component* out_host) argument
364 CanonicalizeHostVerbose(const char* spec, const Component& host, CanonOutput* output, CanonHostInfo* host_info) argument
371 CanonicalizeHostVerbose(const base::char16* spec, const Component& host, CanonOutput* output, CanonHostInfo* host_info) argument
[all...]

Completed in 551 milliseconds

1234567891011>>