HomeSort by relevance Sort by last modified time
    Searched refs:config (Results 276 - 300 of 5780) sorted by null

<<11121314151617181920>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/config/
has_xxx.hpp 18 #include <boost/mpl/aux_/config/overload_resolution.hpp>
19 #include <boost/mpl/aux_/config/workaround.hpp>
integral.hpp 17 #include <boost/mpl/aux_/config/msvc.hpp>
18 #include <boost/mpl/aux_/config/workaround.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
msvc_never_true.hpp 17 #include <boost/mpl/aux_/config/msvc.hpp>
18 #include <boost/mpl/aux_/config/workaround.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/array/
data.hpp 15 # include <boost/preprocessor/config/config.hpp>
size.hpp 15 # include <boost/preprocessor/config/config.hpp>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/logical/
not.hpp 17 # include <boost/preprocessor/config/config.hpp>
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cprolog.h 18 # include <stl/config/features.h>
24 # include <stl/config/_prolog.h>
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cprolog.h 18 # include <stl/config/features.h>
24 # include <stl/config/_prolog.h>
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cprolog.h 18 # include <stl/config/features.h>
24 # include <stl/config/_prolog.h>
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cprolog.h 18 # include <stl/config/features.h>
24 # include <stl/config/_prolog.h>
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_cprolog.h 18 # include <stl/config/features.h>
24 # include <stl/config/_prolog.h>
  /frameworks/base/wifi/java/android/net/wifi/
WifiConfigStore.java 106 * removeNetwork(). For these calls, the config is not persisted
109 * These calls persist the supplicant config to disk.
133 * map supplicant config to IP configuration. */
199 if (DBG) log("Loading config and enabling all networks");
210 for(WifiConfiguration config : mConfiguredNetworks.values()) {
211 networks.add(new WifiConfiguration(config));
217 * enable all networks and save config. This will be a no-op if the list
222 for(WifiConfiguration config : mConfiguredNetworks.values()) {
223 if(config != null && config.status == Status.DISABLED)
268 WifiConfiguration config = new WifiConfiguration(); local
313 WifiConfiguration config = mConfiguredNetworks.get(netId); local
389 WifiConfiguration config = mConfiguredNetworks.get(netId); local
435 WifiConfiguration config = mConfiguredNetworks.get(netId); local
481 WifiConfiguration config = mConfiguredNetworks.get(netId); local
564 WifiConfiguration config = mConfiguredNetworks.get(netId); local
573 WifiConfiguration config = mConfiguredNetworks.get(netId); local
588 WifiConfiguration config = mConfiguredNetworks.get(netId); local
617 WifiConfiguration config = mConfiguredNetworks.get(netId); local
665 WifiConfiguration config = new WifiConfiguration(); local
1009 WifiConfiguration config = mConfiguredNetworks.get( local
1716 WifiConfiguration config; local
    [all...]
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglCreateWindowSurface.java 1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
5 EGLConfig config,
13 EGLConfig config,
20 EGLConfig config,
38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
40 surface = _eglCreateWindowSurfaceTexture(dpy, config,
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_runner.cc 108 WebSocketExperimentTask::Config* config; local
109 WebSocketExperimentTask::Config task_config;
112 config = &config_.ws_config[STATE_RUN_WS - STATE_RUN_WS];
113 *config = task_config;
114 config->url =
116 config->ws_location =
118 config->http_url =
121 config = &config_.ws_config[STATE_RUN_WSS - STATE_RUN_WS];
122 *config = task_config
    [all...]
  /external/dnsmasq/src/
dhcp.c 494 struct dhcp_config *config; local
496 for (config = configs; config; config = config->next)
497 if ((config->flags & CONFIG_ADDR) && config->addr.s_addr == addr.s_addr)
498 return config;
635 static int is_addr_in_context(struct dhcp_context *context, struct dhcp_config *config)
639 if (!(config->flags & CONFIG_ADDR)
669 struct dhcp_config *config, *candidate; local
727 struct dhcp_config *config; local
921 struct dhcp_config *config; local
    [all...]
  /external/aac/libAACenc/src/
aacenc.cpp 266 void FDKaacEnc_AacInitDefaultConfig(AACENC_CONFIG *config)
269 FDKmemclear(config, sizeof(AACENC_CONFIG));
272 config->anc_Rate = 0; /* no ancillary data */
273 config->ancDataBitRate = 0; /* no additional consumed bitrate */
276 config->bitRate = -1; /* bitrate must be set*/
277 config->averageBits = -1; /* instead of bitrate/s we can configure bits/superframe */
278 config->bitrateMode = 0;
279 config->bandWidth = 0; /* get bandwidth from table */
280 config->useTns = TNS_ENABLE_MASK; /* tns enabled completly */
281 config->usePns = 1; /* depending on channelBitrate this might be set to 0 lat (…)
    [all...]
  /frameworks/base/core/java/android/app/
ResourcesManager.java 113 DisplayMetrics dm, Configuration config) {
114 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
115 config.densityDpi = dm.densityDpi;
116 config.screenWidthDp = (int)(dm.widthPixels / dm.density);
117 config.screenHeightDp = (int)(dm.heightPixels / dm.density);
118 int sl = Configuration.resetScreenLayout(config.screenLayout);
120 config.orientation = Configuration.ORIENTATION_LANDSCAPE;
121 config.screenLayout = Configuration.reduceScreenLayout(sl,
122 config.screenWidthDp, config.screenHeightDp)
185 Configuration config; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfigurationTest.java 50 ProjectLintConfiguration config = local
56 assertTrue(config.isEnabled(usuallyEnabledIssue));
57 assertFalse(config.isEnabled(usuallyDisabledIssue));
59 config.setSeverity(usuallyEnabledIssue, Severity.IGNORE);
60 config.setSeverity(usuallyDisabledIssue, Severity.ERROR);
61 assertFalse(config.isEnabled(usuallyEnabledIssue));
62 assertTrue(config.isEnabled(usuallyDisabledIssue));
64 // Make a NEW config object to ensure the state is persisted properly, not just
65 // kept on the config object!
66 config = new ProjectLintConfiguration(client, project, parent, false /*fatalOnly*/)
86 ProjectLintConfiguration config = local
137 ProjectLintConfiguration config = local
    [all...]
  /device/generic/goldfish/opengl/system/egl/
eglDisplay.h 51 EGLBoolean getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value);
52 EGLBoolean setConfigAttrib(EGLConfig config, EGLint attrib, EGLint value);
53 EGLBoolean getConfigGLPixelFormat(EGLConfig config, GLenum * format);
54 EGLBoolean getConfigNativePixelFormat(EGLConfig config, PixelFormat * format);
56 void dumpConfig(EGLConfig config);
61 EGLBoolean getAttribValue(EGLConfig config, EGLint attribIdxi, EGLint * value);
62 EGLBoolean setAttribValue(EGLConfig config, EGLint attribIdxi, EGLint value);
74 /* This is the mapping between an attribute name to it's index in any given config */
76 /* This is an array of all config's attributes values stored in the following sequencial fasion (read: v[c,a] = the value of attribute <a> of config <c>
    [all...]
  /external/chromium_org/net/quic/test_tools/
mock_crypto_client_stream.cc 65 ASSERT_FALSE(session()->config()->negotiated());
69 session()->config()->set_congestion_control(cgst, kQBIC);
70 session()->config()->set_idle_connection_state_lifetime(
73 session()->config()->set_max_streams_per_connection(
77 session()->config()->ToHandshakeMessage(&msg);
80 session()->config()->ProcessClientHello(msg, &error_details);
82 ASSERT_TRUE(session()->config()->negotiated());
  /external/sonivox/jet_tools/JetCreator/
JetFile.py 61 # config file defines
252 self.config = config = ConfigParser.ConfigParser()
258 config.read(self.config_file)
264 config = self.config
265 for section in config.sections():
267 for option, value in config.items(section):
273 config = self.config
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/x11/
glxinit.c 273 __glXInitializeVisualConfigFromTags(__GLcontextModes * config, int count,
281 config->visualID = *bp++;
283 config->visualType = _gl_convert_from_x_visual_type(*bp++);
285 config->rgbMode = *bp++;
287 config->redBits = *bp++;
288 config->greenBits = *bp++;
289 config->blueBits = *bp++;
290 config->alphaBits = *bp++;
291 config->accumRedBits = *bp++;
292 config->accumGreenBits = *bp++
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/x11/
glxinit.c 273 __glXInitializeVisualConfigFromTags(__GLcontextModes * config, int count,
281 config->visualID = *bp++;
283 config->visualType = _gl_convert_from_x_visual_type(*bp++);
285 config->rgbMode = *bp++;
287 config->redBits = *bp++;
288 config->greenBits = *bp++;
289 config->blueBits = *bp++;
290 config->alphaBits = *bp++;
291 config->accumRedBits = *bp++;
292 config->accumGreenBits = *bp++
    [all...]
  /external/chromium_org/net/proxy/
proxy_config.h 148 // Indicates an invalid proxy config.
152 ProxyConfig(const ProxyConfig& config);
154 ProxyConfig& operator=(const ProxyConfig& config);
161 // Returns true if the given config is equivalent to this config. The
165 // Returns true if this config contains any "automatic" settings. See the
226 ProxyConfig config; local
227 config.set_auto_detect(true);
228 return config;
232 ProxyConfig config; local
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java 117 WifiConfiguration config = null;
126 config = new WifiConfiguration();
177 config.ipAssignment = IpAssignment.STATIC;
178 config.linkProperties = mLinkProperties;
180 config.ipAssignment = IpAssignment.DHCP;
182 config.proxySettings = ProxySettings.NONE;
183 networks.add(config);
191 config.SSID = new String(ch, start, length);
199 config.allowedKeyManagement.set(KeyMgmt.NONE);
202 config.allowedKeyManagement.set(KeyMgmt.NONE)
    [all...]

Completed in 1121 milliseconds

<<11121314151617181920>>