Searched defs:config (Results 51 - 75 of 333) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/extensions/
H A Dextensions_quota_service.h114 void Reset(const Config& config, const base::TimeTicks& start);
145 explicit QuotaLimitHeuristic(const Config& config, BucketMapper* map);
155 const Config& config() { return config_; } function in class:QuotaLimitHeuristic
176 explicit TimedLimit(const Config& config, BucketMapper* map) argument
177 : QuotaLimitHeuristic(config, map) {}
187 const Config& config,
/external/chromium/chrome/browser/importer/
H A Dfirefox_proxy_settings.cc43 LOG(ERROR) << "Unknown Firefox proxy config type: " << type;
55 LOG(ERROR) << "Unknown Firefox proxy config type: " << type;
98 bool FirefoxProxySettings::ToProxyConfig(net::ProxyConfig* config) { argument
101 *config = net::ProxyConfig::CreateDirect();
104 *config = net::ProxyConfig::CreateAutoDetect();
107 *config = net::ProxyConfig::CreateFromCustomPacURL(
124 *config = net::ProxyConfig();
125 config->proxy_rules().type =
129 config->proxy_rules().proxy_for_http = net::ProxyServer(
135 config
[all...]
/external/chromium/chrome/browser/net/
H A Dssl_config_service_manager_pref.cc29 // Store SSL config settings in |config|. Must only be called from IO thread.
30 virtual void GetSSLConfig(net::SSLConfig* config);
37 // new config information.
46 void SSLConfigServicePref::GetSSLConfig(net::SSLConfig* config) { argument
47 *config = cached_config_;
87 // Store SSL config settings in |config|, directly from the preferences. Must
89 void GetSSLConfigFromPrefs(net::SSLConfig* config);
193 net::SSLConfig* config) {
192 GetSSLConfigFromPrefs( net::SSLConfig* config) argument
[all...]
/external/chromium/net/proxy/
H A Dinit_proxy_resolver.cc53 int InitProxyResolver::Init(const ProxyConfig& config, argument
59 DCHECK(config.HasAutomaticSettings());
70 pac_urls_ = BuildPacUrlsFallbackList(config);
88 const ProxyConfig& config) const {
90 if (config.auto_detect())
92 if (config.has_pac_url())
93 pac_urls.push_back(PacURL(false, config.pac_url()));
H A Dinit_proxy_resolver_unittest.cc178 ProxyConfig config; local
179 config.set_pac_url(GURL("http://custom/proxy.pac"));
186 EXPECT_EQ(OK, init.Init(config, base::TimeDelta(), NULL, &callback));
214 ProxyConfig config; local
215 config.set_pac_url(GURL("http://custom/proxy.pac"));
223 init.Init(config, base::TimeDelta(), NULL, &callback));
247 ProxyConfig config; local
248 config.set_pac_url(GURL("http://custom/proxy.pac"));
255 init.Init(config, base::TimeDelta(), NULL, &callback));
264 ProxyConfig config; local
280 ProxyConfig config; local
297 ProxyConfig config; local
316 ProxyConfig config; local
377 ProxyConfig config; local
397 ProxyConfig config; local
419 ProxyConfig config; local
440 ProxyConfig config; local
482 ProxyConfig config; local
[all...]
H A Dpolling_proxy_config_service.cc39 bool GetLatestProxyConfig(ProxyConfig* config) { argument
48 *config = last_config_;
99 ProxyConfig config; local
100 func(&config);
106 NewRunnableMethod(this, &Core::GetConfigCompleted, config));
111 void GetConfigCompleted(const ProxyConfig& config) { argument
120 if (!has_config_ || !last_config_.Equals(config)) {
123 last_config_ = config;
125 OnProxyConfigChanged(config,
168 PollingProxyConfigService::GetLatestProxyConfig(ProxyConfig* config) { argument
[all...]
H A Dproxy_config.cc164 ProxyConfig::ProxyConfig(const ProxyConfig& config) argument
165 : auto_detect_(config.auto_detect_),
166 pac_url_(config.pac_url_),
167 proxy_rules_(config.proxy_rules_),
168 id_(config.id_) {
174 ProxyConfig& ProxyConfig::operator=(const ProxyConfig& config) { argument
175 auto_detect_ = config.auto_detect_;
176 pac_url_ = config.pac_url_;
177 proxy_rules_ = config.proxy_rules_;
178 id_ = config
[all...]
H A Dproxy_config.h110 // Indicates an invalid proxy config.
114 ProxyConfig(const ProxyConfig& config);
116 ProxyConfig& operator=(const ProxyConfig& config);
123 // Returns true if the given config is equivalent to this config.
126 // Returns true if this config contains any "automatic" settings. See the
171 ProxyConfig config; local
172 config.set_auto_detect(true);
173 return config;
177 ProxyConfig config; local
[all...]
H A Dproxy_config_service_mac.cc42 void GetCurrentProxyConfig(ProxyConfig* config) { argument
52 config->set_auto_detect(
67 config->set_pac_url(GURL(base::SysCFStringRefToUTF8(pac_url_ref)));
81 config->proxy_rules().type =
83 config->proxy_rules().proxy_for_ftp = proxy_server;
95 config->proxy_rules().type =
97 config->proxy_rules().proxy_for_http = proxy_server;
109 config->proxy_rules().type =
111 config->proxy_rules().proxy_for_https = proxy_server;
123 config
214 GetLatestProxyConfig(ProxyConfig* config) argument
[all...]
H A Dproxy_config_service_win.cc156 void ProxyConfigServiceWin::GetCurrentProxyConfig(ProxyConfig* config) { argument
161 *config = ProxyConfig::CreateDirect();
164 SetFromIEConfig(config, ie_config);
170 ProxyConfig* config,
173 config->set_auto_detect(true);
177 config->proxy_rules().ParseFromString(WideToASCII(ie_config.lpszProxy));
185 config->proxy_rules().bypass_rules.AddRuleFromString(bypass_url_domain);
189 config->set_pac_url(GURL(ie_config.lpszAutoConfigUrl));
169 SetFromIEConfig( ProxyConfig* config, const WINHTTP_CURRENT_USER_IE_PROXY_CONFIG& ie_config) argument
H A Dproxy_service.h88 // Returns ERR_FAILED if there is not another proxy config to try.
108 // be queried for new config info which will be used for all subsequent
123 const ProxyConfig& config() { function in class:net::ProxyService
209 // Creates a config service appropriate for this platform that fetches the
292 const ProxyConfig& config,
338 // The earliest time at which we should run any proxy auto-config. (Used to
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dcodec.h158 VideoEncoderConfig& operator=(const VideoEncoderConfig& config) { argument
159 max_codec = config.max_codec;
160 num_threads = config.num_threads;
161 cpu_profile = config.cpu_profile;
165 bool operator==(const VideoEncoderConfig& config) const {
166 return max_codec == config.max_codec &&
167 num_threads == config.num_threads &&
168 cpu_profile == config.cpu_profile;
171 bool operator!=(const VideoEncoderConfig& config) const {
172 return !(*this == config);
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DComponentResults.java222 * @param config Configuration name
225 public List getSummaryScenarios(boolean global, String config) { argument
230 ConfigResults configResults = scenarioResults.getConfigResults(config);
H A DSQL_Results.java85 if (DB_Results.DEBUG) DB_Results.DEBUG_WRITER.print("[SQL query (config pattern="+configPattern); //$NON-NLS-1$
167 * @param config The name of the concerned configuration
174 ResultSet queryScenarioTimestampDataPoints(String config, int scenarioID, String lastBuildName, long lastBuildTime) throws SQLException { argument
175 if (DB_Results.LOG) DB_Results.LOG_WRITER.starts(" + SQL query (config="+config+", scenario ID="+scenarioID+", build name="+lastBuildName); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
192 ResultSet queryScenarioBuildDataPoints(String config, int scenarioID, String buildName) throws SQLException { argument
193 if (DB_Results.LOG) DB_Results.LOG_WRITER.starts(" + SQL query (config="+config+", scenario ID="+scenarioID+", build name="+buildName); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
212 * @param config The name of the concerned configuration
217 ResultSet queryScenarioDataPoints(String config, in argument
247 queryScenarioSummaries(int scenarioID, String config, String[] builds) argument
[all...]
/external/icu4c/tools/icuinfo/
H A Dicuinfo.cpp194 printf( " config| (configuration string)\n");
203 const char *config = uplug_getConfiguration(plug); local
217 if(config!=NULL&&*config) {
218 printf(" config| %s\n", config);
/external/quake/src/com/android/quake/
H A DQuakeView.java294 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/external/skia/gm/
H A Ddrawbitmaprect.cpp18 static void makebm(SkBitmap* bm, SkBitmap::Config config, int w, int h) { argument
19 bm->setConfig(config, w, h);
H A Dtilemodes.cpp24 static void makebm(SkBitmap* bm, SkBitmap::Config config, int w, int h) { argument
25 bm->setConfig(config, w, h);
/external/skia/include/core/
H A DSkDevice.h40 * based on the config and the width.
42 * @param config The desired config for the pixels. If the request cannot
43 * be met, the closest matching support config will be used.
50 SkDevice(SkBitmap::Config config, int width, int height, bool isOpaque = false);
65 SkDevice* createCompatibleDevice(SkBitmap::Config config,
92 /** Returns true if the device's bitmap's config treats every pixels as
97 /** Return the bitmap config of the device's pixels
99 SkBitmap::Config config() const { return fBitmap.getConfig(); } function in class:SkDevice
120 * If the bitmap has config kARGB_8888_Confi
[all...]
H A DSkPixelRef.h140 /** Makes a deep copy of this PixelRef, respecting the requested config.
142 not be created with the given config), or this PixelRef does not
144 virtual SkPixelRef* deepCopy(SkBitmap::Config config) { return NULL; } argument
/external/skia/include/gpu/
H A DGrRenderTarget.h47 * @return the pixel config. Can be kUnknown_GrPixelConfig
49 * config that isn't equivalent with one of our configs.
51 GrPixelConfig config() const { return fConfig; } function in class:GrRenderTarget
132 * @param config the pixel config of the destination buffer
138 * because of an unsupported pixel config.
141 GrPixelConfig config, void* buffer, size_t rowBytes);
150 * @param config the pixel config of the source buffer
156 GrPixelConfig config, cons
175 GrRenderTarget(GrGpu* gpu, GrTexture* texture, int width, int height, GrPixelConfig config, int sampleCnt) argument
[all...]
/external/skia/samplecode/
H A DSampleEncode.cpp27 static void make_image(SkBitmap* bm, SkBitmap::Config config, int configIndex) { argument
44 bm->setConfig(config, width, height);
45 switch (config) {
108 static void make_name(SkString* name, int config, int ext) { argument
110 name->append(gConfigLabels[config]);
/external/skia/src/core/
H A DSkBlitRow_D16.cpp228 SkBlitRow::Proc SkBlitRow::Factory(unsigned flags, SkBitmap::Config config) { argument
235 switch (config) {
/external/skia/src/gpu/
H A DSkGr.cpp25 SkASSERT(SkBitmap::kIndex8_Config == bitmap.config());
82 if (SkBitmap::kIndex8_Config == bitmap->config()) {
202 GrPixelConfig SkGr::BitmapConfig2PixelConfig(SkBitmap::Config config, argument
204 switch (config) {
/external/skia/src/gpu/gl/
H A DGrGLCaps.h71 * Call to note that a color config has been verified as a valid color
75 void markConfigAsValidColorAttachment(GrPixelConfig config) { argument
76 fVerifiedColorConfigs.markVerified(config);
80 * Call to check whether a config has been verified as a valid color
83 bool isConfigVerifiedColorAttachment(GrPixelConfig config) const {
84 return fVerifiedColorConfigs.isVerified(config);
88 * Call to note that a color config / stencil format pair passed
94 GrPixelConfig config,
98 * Call to check whether color config / stencil format pair has already
102 GrPixelConfig config,
180 markVerified(GrPixelConfig config) argument
[all...]

Completed in 373 milliseconds

1234567891011>>