HomeSort by relevance Sort by last modified time
    Searched defs:config (Results 101 - 125 of 2436) sorted by null

1 2 3 45 6 7 8 91011>>

  /development/apps/CustomLocale/src/com/android/customlocale2/
ChangeLocale.java 49 Configuration config = am.getConfiguration(); local
60 config.locale = loc;
64 config.userSetLocale = true;
66 am.updateConfiguration(config);
  /development/ndk/platforms/android-3/include/linux/netfilter/
xt_string.h 26 struct ts_config __attribute__((aligned(8))) *config; member in struct:xt_string_info
  /device/linaro/hikey/uefi-tools/
parse-platforms.py 5 default_filename='platforms.config'
16 value = config.get(args.platform, "EXTRA_FILES")
21 value = config.get(args.platform, "BUILD_ATF")
27 value = config.get(args.platform, "UEFI_BIN")
41 value = config.get(args.platform, args.option)
54 parser.add_argument('-c', '--config-file', help='Specify a non-default platform config file.', required=False)
65 config = ConfigParser.ConfigParser() variable
66 config.read(config_filename)
68 platforms = config.sections(
    [all...]
  /external/autotest/client/bin/
xen.py 24 def config(self, config_file, config_list = None): member in class:xen
25 raise NotImplementedError('config() not implemented for xen')
73 # hardcoding dom0 config (no modules for testing, yay!)
74 # FIXME: probe host to determine which config to pick
76 self.log('using kernel config: %s ' % c)
77 self.kjob.config(c)
192 """Check Makefile and .config to return kernel version"""
  /external/autotest/frontend/
database_settings_helper.py 37 config = global_config.global_config variable
38 SHARD_HOSTNAME = config.get_config_value('SHARD', 'shard_hostname',
43 """Retrieves a config value for the specified key.
45 @param config_key: The string key associated with the desired config value.
46 @param section: Section of global config to read config. Default is set to
51 @return: The config value, as returned by
54 return config.get_config_value(section, config_key, **kwargs)
57 def _get_global_config(config_key, default=config._NO_DEFAULT_SPECIFIED,
59 """Retrieves a global config value for the specified key
    [all...]
  /external/autotest/site_utils/
lxc_config.py 6 This module helps to deploy config files from host to container. It reads
7 the settings from a setting file (ssp_deploy_config), and deploy the config
25 source: config file in host to be copied to container.
26 target: config file's location inside container.
27 append: true to append the content of config file to existing file inside
30 permission: Permission to set to the config file inside container.
41 The setting file can be overridden by a shadow config, ssp_deploy_shadow_config.
47 the module still supports copy over files like ssh config and autotest
66 config = global_config.global_config variable
88 """An object to deploy config to container
    [all...]
  /external/avahi/avahi-core/
querier-test.c 21 #include <config.h>
84 AvahiServerConfig config; local
92 avahi_server_config_init(&config);
93 config.publish_hinfo = 0;
94 config.publish_addresses = 0;
95 config.publish_workstation = 0;
96 config.publish_domain = 0;
98 avahi_address_parse("192.168.50.1", AVAHI_PROTO_UNSPEC, &config.wide_area_servers[0]);
99 config.n_wide_area_servers = 1;
100 config.enable_wide_area = 1
    [all...]
update-test.c 21 #include <config.h>
73 AvahiServerConfig config; local
81 avahi_server_config_init(&config);
82 config.publish_domain = config.publish_workstation = config.use_ipv6 = config.publish_hinfo = 0;
83 server = avahi_server_new(poll_api, &config, server_callback, NULL, NULL);
85 avahi_server_config_free(&config);
  /external/avahi/examples/
core-browse-services.c 32 #include <config.h>
151 AvahiServerConfig config; local
166 avahi_server_config_init(&config);
167 config.publish_hinfo = 0;
168 config.publish_addresses = 0;
169 config.publish_workstation = 0;
170 config.publish_domain = 0;
173 avahi_address_parse("192.168.50.1", AVAHI_PROTO_UNSPEC, &config.wide_area_servers[0]);
174 config.n_wide_area_servers = 1;
175 config.enable_wide_area = 1
    [all...]
core-publish-service.c 21 #include <config.h>
193 AvahiServerConfig config; local
210 avahi_server_config_init(&config);
211 config.host_name = avahi_strdup("gurkiman");
212 config.publish_workstation = 0;
215 server = avahi_server_new(avahi_simple_poll_get(simple_poll), &config, server_callback, NULL, &error);
218 avahi_server_config_free(&config);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
ConfigurableProvider.java 1 package org.bouncycastle.jcajce.provider.config;
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
VirtualMachine.java 19 import com.google.caliper.config.VmConfig;
28 final VmConfig config; field in class:VirtualMachine
30 VirtualMachine(String name, VmConfig config) {
32 this.config = config;
39 && this.config.equals(that.config);
45 return Objects.hashCode(name, config);
51 .add("config", config)
    [all...]
  /external/chromium-trace/catapult/devil/devil/
devil_env.py 145 config = _Environment() variable
  /external/curl/docs/examples/
debug.c 83 struct data *config = (struct data *)userp; local
113 dump(text, stderr, (unsigned char *)data, size, config->trace_ascii);
121 struct data config; local
123 config.trace_ascii = 1; /* enable ascii tracing */
128 curl_easy_setopt(curl, CURLOPT_DEBUGDATA, &config);
  /external/curl/src/
tool_cb_wrt.c 37 struct GlobalConfig *global = outs->config->global;
79 struct OperationConfig *config = outs->config; local
89 if(!config)
93 if(config->include_headers) {
95 warnf(config->global, "Header data size exceeds single call write "
102 warnf(config->global, "Data size exceeds single call write limit!\n");
131 warnf(config->global, "Invalid output struct data for write callback\n");
146 if(config->readbusy) {
147 config->readbusy = FALSE
    [all...]
  /external/deqp/modules/egl/
teglRenderCase.hpp 44 struct Config
46 eglw::EGLConfig config; member in struct:deqp::egl::RenderCase::Config
50 Config (eglw::EGLConfig config_, eglw::EGLint surfaceTypeBit_, eglw::EGLint apiBits_)
51 : config (config_)
58 virtual void executeForConfig (eglw::EGLDisplay display, eglw::EGLConfig config);
59 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config) = DE_NULL;
71 virtual void executeForSurface (eglw::EGLDisplay display, eglw::EGLSurface surface, const Config& config);
72 virtual void executeForContext (eglw::EGLDisplay display, eglw::EGLContext context, eglw::EGLSurface surface, const Config& config) = DE_NULL
    [all...]
  /external/deqp/scripts/
launchcontrol_build.py 74 "--config",
75 dest="config",
91 print "# %s %s BUILD" % (options.config.upper(), options.buildType.upper())
94 launchControlConfig = BUILD_CONFIGS[options.config]
96 config = BuildConfig(buildDir, options.buildType, launchControlConfig.getBuildArgs()) variable
97 initBuildDir(config, MAKEFILE_GENERATOR)
101 genMustpassLists(MUSTPASS_LISTS, MAKEFILE_GENERATOR, config)
  /external/f2fs-tools/lib/
libf2fs_io.c 26 struct f2fs_configuration config; variable in typeref:struct:f2fs_configuration
33 if (lseek64(config.kd, (off64_t)offset, SEEK_SET) < 0)
35 if (read(config.kd, buf, len) < 0)
42 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
44 if (read(config.fd, buf, len) < 0)
52 return posix_fadvise(config.fd, offset, len, POSIX_FADV_WILLNEED);
60 if (lseek64(config.fd, (off64_t)offset, SEEK_SET) < 0)
62 if (write(config.fd, buf, len) < 0)
74 if (lseek64(config.dump_fd, (off64_t)offset, SEEK_SET) < 0)
76 if (write(config.dump_fd, buf, len) < 0
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
clientpairingsession.cc 53 const message::ConfigurationMessage* config = configuration(); local
54 if (!config) {
60 wire()->SendConfigurationMessage(*config);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
DefaultShaderProvider.java 26 public final DefaultShader.Config config; field in class:DefaultShaderProvider
28 public DefaultShaderProvider (final DefaultShader.Config config) {
29 this.config = (config == null) ? new DefaultShader.Config() : config;
33 this(new DefaultShader.Config(vertexShader, fragmentShader));
46 return new DefaultShader(renderable, config);
    [all...]
DepthShaderProvider.java 26 public final DepthShader.Config config; field in class:DepthShaderProvider
28 public DepthShaderProvider (final DepthShader.Config config) {
29 this.config = (config == null) ? new DepthShader.Config() : config;
33 this(new DepthShader.Config(vertexShader, fragmentShader));
46 return new DepthShader(renderable, config);
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/classical/
MainShaderProvider.java 26 public final MainShader.Config config; field in class:MainShaderProvider
28 public MainShaderProvider (final MainShader.Config config) {
29 if (config == null) throw new GdxRuntimeException("MainShaderProvider needs config");
30 this.config = config;
35 return new MainShader(renderable, config);
Pass2ShaderProvider.java 26 public final Pass2Shader.Config config; field in class:Pass2ShaderProvider
28 public Pass2ShaderProvider (final Pass2Shader.Config config) {
29 if (config == null) throw new GdxRuntimeException("Pass2ShaderProvider needs config");
30 this.config = config;
35 return new Pass2Shader(renderable, config);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/realistic/
MainShaderProvider.java 26 public final MainShader.Config config; field in class:MainShaderProvider
28 public MainShaderProvider (final MainShader.Config config) {
29 if (config == null) throw new GdxRuntimeException("MainShaderProvider needs config");
30 this.config = config;
35 return new MainShader(renderable, config);
  /external/libgdx/tests/gdx-tests-android/src/com/badlogic/gdx/tests/android/
GdxTestActivity.java 37 AndroidApplicationConfiguration config = new AndroidApplicationConfiguration(); local
38 config.useImmersiveMode = true;
39 initialize(test, config);

Completed in 833 milliseconds

1 2 3 45 6 7 8 91011>>