HomeSort by relevance Sort by last modified time
    Searched full:_config (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/tracing_agent/
display_tracing_agent_unittest.py 29 self._config = tracing_config.TracingConfig()
30 self._config.enable_platform_display_trace = True
42 self._agent.StartAgentTracing(self._config, 10)
45 self._agent.StartAgentTracing(self._config, 10)
50 self._agent.StartAgentTracing(self._config, 10)
57 self._agent.StartAgentTracing(self._config, 10)
64 self._agent.StartAgentTracing(self._config, 10)
cpu_tracing_agent_unittest.py 33 self._config = tracing_config.TracingConfig()
34 self._config.enable_cpu_trace = True
61 self.assertTrue(self._agent.StartAgentTracing(self._config, 0))
69 self._config.enable_cpu_trace = False
71 self.assertFalse(self._agent.StartAgentTracing(self._config, 0))
83 self._agent.StartAgentTracing(self._config, 0)
89 self._agent.StartAgentTracing(self._config, 0)
97 self._agent.StartAgentTracing(self._config, 0)
107 self._agent.StartAgentTracing(self._config, 0)
124 self._agent.StartAgentTracing(self._config, 0
    [all...]
atrace_tracing_agent.py 18 self._config = None
32 self._config = atrace_agent.AtraceConfig(config.atrace_config.categories,
37 return self._atrace_agent.StartAgentTracing(self._config, timeout)
battor_tracing_agent_unittest.py 92 self._config = tracing_config.TracingConfig()
93 self._config.enable_battor_trace = True
138 self.assertTrue(self.android_agent.StartAgentTracing(self._config, 0))
147 self._config.enable_battor_trace = False
148 self.assertFalse(self.android_agent.StartAgentTracing(self._config, 0))
161 self.android_agent.StartAgentTracing(self._config, 0)
178 self.assertTrue(self.android_agent.StartAgentTracing(self._config, 0))
  /external/v8/build/
shim_headers.gni 7 config_name = "${target_name}_config"
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
server.py 95 self._config = None
179 if not self._config:
183 self._config = Config(local_file)
184 return self._config
192 self._config = config
201 self._config = config
202 self._config.dump_to_sdb("botoConfigs", self.id)
205 self._config = Config(do_load=False)
206 self._config.load_from_sdb("botoConfigs", self.id)
217 if not self._config
    [all...]
  /external/chromium-trace/catapult/systrace/systrace/tracing_agents/
ftrace_agent.py 139 self._config = None
144 if ((self._config.trace_buf_size is not None)
145 and (self._config.trace_buf_size > 0)):
146 buffer_size = self._config.trace_buf_size
165 self._config = config
198 if self._config.fix_threads:
200 if self._config.fix_tgids:
202 if self._config.fix_circular:
ftrace_agent_unittest.py 137 agent._config = options
138 agent._config.atrace_categories = categories
  /external/chromium-trace/catapult/telemetry/telemetry/web_perf/
timeline_based_measurement.py 172 self._config = tracing_config.TracingConfig()
173 self._config.enable_chrome_trace = True
174 self._config.enable_platform_display_trace = False
178 self._config.chrome_trace_config.SetCategoryFilter(overhead_level)
181 self._config.chrome_trace_config.SetLowOverheadFilter()
183 self._config.chrome_trace_config.SetDefaultOverheadFilter()
185 self._config.chrome_trace_config.SetDebugOverheadFilter()
196 category_filter = self._config.chrome_trace_config.category_filter
202 return self._config.chrome_trace_config.category_filter
206 return self._config
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
MultiPartInputStream.java 65 protected MultipartConfigElement _config; field in class:MultiPartInputStream
127 if (MultiPartInputStream.this._config.getMaxFileSize() > 0 && _size + 1 > MultiPartInputStream.this._config.getMaxFileSize())
130 if (MultiPartInputStream.this._config.getFileSizeThreshold() > 0 && _size + 1 > MultiPartInputStream.this._config.getFileSizeThreshold() && _file==null)
139 if (MultiPartInputStream.this._config.getMaxFileSize() > 0 && _size + length > MultiPartInputStream.this._config.getMaxFileSize())
142 if (MultiPartInputStream.this._config.getFileSizeThreshold() > 0 && _size + length > MultiPartInputStream.this._config.getFileSizeThreshold() && _file==null)
343 _config = config
    [all...]
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
parameters.py 37 """Creates a _Config class and modifies its class dict.
45 A new _Config class. The modified class will have two fields.
63 # Handle inheritance of _Config.
80 """An option for _Config."""
103 class _Config(object):
227 # The following are constants that depends on the value of _config.
228 # They are constants because _config is completely initialized on the first
  /external/autotest/client/cros/
kernel_config.py 38 @param default: value returned if key is not set in self._config
40 return self._config.get(key, default)
43 value = self._config.get(name, None)
117 for name in self._config:
161 self._config = config
dhcpv6_test_server.py 73 self._config = {
97 '']) % self._config
  /external/libusb/libusb/
descriptor.c 471 struct libusb_config_descriptor *_config = malloc(sizeof(*_config)); local
478 if (!_config)
486 usbi_parse_descriptor(tmp, "bbw", _config, host_endian);
487 buf = malloc(_config->wTotalLength);
494 _config->wTotalLength, &host_endian);
498 r = parse_configuration(dev->ctx, _config, buf, host_endian);
507 *config = _config;
511 free(_config);
536 struct libusb_config_descriptor *_config; local
    [all...]
  /external/autotest/server/
git_kernel.py 22 self._config = None
29 self._config = config
117 sk.configure(self._config)
  /external/autotest/server/cros/dynamic_suite/
tools.py 14 _CONFIG = global_config.global_config
19 return _CONFIG.get_config_value('CROS', 'image_url_pattern', type=str)
24 return _CONFIG.get_config_value('CROS', 'firmware_url_pattern', type=str)
29 return _CONFIG.get_config_value('CROS', 'factory_image_url_pattern',
35 return _CONFIG.get_config_value('CROS', 'sharding_factor', type=int)
40 return _CONFIG.get_config_value('CROS', 'infrastructure_user', type=str)
45 return _CONFIG.get_config_value('CROS', 'package_url_pattern', type=str)
50 return _CONFIG.get_config_value('SCHEDULER', 'try_job_timeout_mins',
  /external/jetty/src/java/org/eclipse/jetty/security/
SpnegoLoginService.java 44 private String _config; field in class:SpnegoLoginService
81 return _config;
91 _config = config;
100 Resource resource = Resource.newResource(_config);
HashLoginService.java 53 private String _config; field in class:HashLoginService
79 return _config;
85 _config = config;
103 _config = config;
143 LOG.debug("doStart: Starting new PropertyUserStore. PropertiesFile: " + _config + " refreshInterval: " + _refreshInterval);
147 _propertyUserStore.setConfig(_config);
PropertyUserStore.java 65 private String _config; field in class:PropertyUserStore
79 return _config;
85 _config = config;
102 _configResource = Resource.newResource(_config);
129 if (_config == null)
133 LOG.debug("Load " + this + " from " + _config);
  /external/ImageMagick/m4/
ax_prefix_config_h.m4 33 # AX_PREFIX_CONFIG_H(mylib/_config.h) # prep mylib/_config.h from it..
37 # # and also mylib/_config.h
41 # but even under the name "mylib/_config.h" it contains prefix-defines
54 # and this "mylib/_config.h" can be installed along with other header
65 # #include <mylib/_config.h>
78 # #include <mylib/_config.h>
  /external/autotest/server/cros/network/
connection_worker.py 244 self._config = netperf_config
250 return 'netperf_%s' % self._config.human_readable_tag
261 client, self.work_client, self._config) as netperf:
268 result = netperf.run(self._config)
274 if result.duration_seconds < self._config.test_time:
277 (result.duration_seconds, self._config.test_time))
  /external/eigen/bench/btl/generic_bench/
btl.hh 174 char * _config; local
175 _config = getenv ("BTL_CONFIG");
176 if (_config!=NULL)
178 std::vector<BtlString> config = BtlString(_config).split(" \t\n");
  /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
sermsdos.py 118 self._config(self.portstr, self.baud, self.parity,
127 def _config(self, port, baud, parity, data, stop, retry, member in class:Serial
136 self._config(self.portstr, BAUD_RATES[baudrate],
  /external/v8/tools/release/
common_includes.py 408 self._config = config
416 self.default_cwd = (self._config.get("DEFAULT_CWD") or
420 assert self._config is not None
435 return self._config[key]
439 state_file = "%s-state.json" % self._config["PERSISTFILE_BASENAME"]
573 self.DeleteBranch(self._config["BRANCHNAME"])
577 self.GitDeleteBranch(self._config["BRANCHNAME"])
580 for f in glob.iglob("%s*" % self._config["PERSISTFILE_BASENAME"]):
794 self._config = config or self._Config()
    [all...]
  /external/skia/site/dev/chrome/
blink.md 51 5. Add code suppression to Blink's 'public/blink\_skia\_config\.gyp'.
56 1. Add code suppression to Blink's 'public/blink\_skia\_config\.gyp' before making code
70 2. Add code suppression to Blink's 'public/blink\_skia\_config\.gyp'.

Completed in 4532 milliseconds

1 2 3 4