/external/chromium_org/chrome/browser/chromeos/system_logs/ |
command_line_log_source.h | 20 virtual void Fetch(const SysLogsSourceCallback& callback) OVERRIDE;
|
dbus_log_source.h | 19 virtual void Fetch(const SysLogsSourceCallback& request) OVERRIDE;
|
lsb_release_log_source.h | 18 virtual void Fetch(const SysLogsSourceCallback& callback) OVERRIDE;
|
memory_details_log_source.h | 19 virtual void Fetch(const SysLogsSourceCallback& request) OVERRIDE;
|
network_event_log_source.h | 19 virtual void Fetch(const SysLogsSourceCallback& request) OVERRIDE;
|
touch_log_source.h | 19 virtual void Fetch(const SysLogsSourceCallback& callback) OVERRIDE;
|
chrome_internal_log_source.h | 19 virtual void Fetch(const SysLogsSourceCallback& request) OVERRIDE;
|
system_logs_fetcher_base.h | 28 // the SystemLogsFetcherBase class uses to fetch logs and other 33 virtual void Fetch(const SysLogsSourceCallback& callback) = 0; 49 // fetcher->Fetch(base::Bind(&Example::ProcessLogs, this)); 57 void Fetch(const SysLogsFetcherCallback& callback);
|
system_logs_fetcher_base.cc | 30 void SystemLogsFetcherBase::Fetch(const SysLogsFetcherCallback& callback) { 37 data_sources_[i]->Fetch(base::Bind(&SystemLogsFetcherBase::AddResponse,
|
lsb_release_log_source.cc | 12 void LsbReleaseLogSource::Fetch(const SysLogsSourceCallback& callback) {
|
network_event_log_source.cc | 15 void NetworkEventLogSource::Fetch(const SysLogsSourceCallback& callback) {
|
/external/chromium_org/components/policy/core/common/ |
external_data_manager.h | 30 virtual void Fetch(const std::string& policy,
|
external_data_fetcher.cc | 38 void ExternalDataFetcher::Fetch(const FetchCallback& callback) const { 40 manager_->Fetch(policy_, callback);
|
external_data_fetcher.h | 25 // This instance's Fetch() method will instruct the |manager| to retrieve the 44 void Fetch(const FetchCallback& callback) const;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/ |
plugin.properties | 14 fetchFactories.name = Fetch Script Factories
|
/external/chromium/net/proxy/ |
proxy_script_fetcher.h | 38 // ERR_TIMED_OUT -- the fetch took too long to complete. 46 // Only one fetch is allowed to be outstanding at a time. 47 virtual int Fetch(const GURL& url, string16* utf16_text, 50 // Aborts the in-progress fetch (if any).
|
proxy_script_fetcher_impl_unittest.cc | 102 { // Fetch a non-existent file. 105 int result = pac_fetcher.Fetch(GetTestFileUrl("does-not-exist"), 111 { // Fetch a file that exists. 114 int result = pac_fetcher.Fetch(GetTestFileUrl("pac.txt"), 130 { // Fetch a PAC with mime type "text/plain" 134 int result = pac_fetcher.Fetch(url, &text, &callback); 139 { // Fetch a PAC with mime type "text/html" 143 int result = pac_fetcher.Fetch(url, &text, &callback); 148 { // Fetch a PAC with mime type "application/x-ns-proxy-autoconfig" 152 int result = pac_fetcher.Fetch(url, &text, &callback) [all...] |
/external/chromium_org/net/proxy/ |
proxy_script_fetcher.h | 38 // ERR_TIMED_OUT -- the fetch took too long to complete. 46 // Only one fetch is allowed to be outstanding at a time. 47 virtual int Fetch(const GURL& url, base::string16* utf16_text, 50 // Aborts the in-progress fetch (if any).
|
dhcp_proxy_script_fetcher.h | 18 // Interface for classes that can fetch a proxy script as configured via DHCP. 20 // The Fetch method on this interface tries to retrieve the most appropriate 50 // ERR_TIMED_OUT -- fetch took too long to complete. 58 // Only one fetch is allowed to be outstanding at a time. 59 virtual int Fetch(base::string16* utf16_text, 62 // Aborts the in-progress fetch (if any). 65 // After successful completion of |Fetch()|, this will return the URL 66 // retrieved from DHCP. It is reset if/when |Fetch()| is called again. 88 virtual int Fetch(base::string16* utf16_text,
|
dhcp_proxy_script_fetcher.cc | 23 int DoNothingDhcpProxyScriptFetcher::Fetch(
|
mock_proxy_script_fetcher.h | 18 // A mock ProxyScriptFetcher. No result will be returned to the fetch client 26 virtual int Fetch(const GURL& url, 36 // Spins the message loop until this->Fetch() is invoked.
|
/external/chromium_org/chrome/browser/accessibility/ |
browser_accessibility_state_browsertest.cc | 21 histograms.Fetch();
|
/external/chromium_org/chrome/browser/chromeos/login/ |
tpm_password_fetcher.cc | 31 void TpmPasswordFetcher::Fetch() { 47 // Password hasn't been acquired, reschedule fetch. 63 // Password hasn't been acquired, reschedule fetch. 71 base::Bind(&TpmPasswordFetcher::Fetch, weak_factory_.GetWeakPtr()),
|
tpm_password_fetcher.h | 34 void Fetch(); 37 // Used to implement Fetch(). 40 // Used to implement Fetch(). 44 // Posts a task to call Fetch() later.
|
/external/chromium_org/components/policy/core/common/cloud/ |
mock_cloud_external_data_manager.h | 33 MOCK_METHOD2(Fetch, void(const std::string&,
|