/external/bluetooth/bluedroid/btif/src/ |
btif_storage.c | 45 #include "config.h" 1610 config_t *config = config_new(BTIF_AUTO_PAIR_CONF_FILE); local [all...] |
/external/chromium_org/chrome/browser/safe_browsing/ |
safe_browsing_service_browsertest.cc | 74 SafeBrowsingProtocolConfig config; variable 75 config.url_prefix = url_prefix_; 78 config.disable_auto_update = true; 79 config.client_name = "browser_tests"; 80 return config; 273 const SafeBrowsingProtocolConfig& config) 274 : SafeBrowsingProtocolManager(delegate, request_context_getter, config) { 336 const SafeBrowsingProtocolConfig& config) OVERRIDE { 337 pm_ = new TestProtocolManager(delegate, request_context_getter, config); [all...] |
/external/chromium_org/net/dns/ |
host_resolver_impl_unittest.cc | 1302 DnsConfig config; local 1527 DnsConfig config = CreateValidDnsConfig(); local 1728 DnsConfig config = CreateValidDnsConfig(); local [all...] |
/external/chromium_org/net/proxy/ |
proxy_service.cc | 57 // When the IP address changes we don't immediately re-run proxy auto-config. 59 // attempting to re-valuate proxy auto-config. 63 // auto-config step will be run, and the queued requests resumed. 68 // we were to run proxy auto-config right away, it could fail due to spurious 160 // Config getter that always returns direct settings. 166 virtual ConfigAvailability GetLatestProxyConfig(ProxyConfig* config) 168 *config = ProxyConfig::CreateDirect(); 169 config->set_source(PROXY_CONFIG_SOURCE_UNKNOWN); 320 ProxyConfig* config) OVERRIDE { 361 const ProxyConfig& config, 1110 ProxyConfig config; local [all...] |
/external/chromium_org/net/quic/crypto/ |
quic_crypto_server_config.cc | 298 // We need to ensure that the SCID changes whenever the server config does 299 // thus we make it a hash of the rest of the server config. 317 scoped_ptr<QuicServerConfigProtobuf> config(new QuicServerConfigProtobuf); 318 config->set_config(serialized->AsStringPiece()); 319 QuicServerConfigProtobuf::PrivateKey* curve25519_key = config->add_key(); 324 QuicServerConfigProtobuf::PrivateKey* p256_key = config->add_key(); 329 return config.release(); 336 CryptoFramer::ParseMessage(protobuf->config())); 339 LOG(WARNING) << "Failed to parse server config message"; 343 scoped_refptr<Config> config(ParseConfigProtobuf(protobuf)) 409 scoped_refptr<Config> config = *i; local [all...] |
/external/chromium_org/net/quic/ |
quic_stream_factory.cc | 89 QuicConfig config; local 90 config.SetDefaults(); 91 config.EnablePacing(enable_pacing); 93 config.SetLossDetectionToSend(kTIME); 94 config.set_idle_connection_state_lifetime( 97 return config; 835 QuicConfig config = config_; local 836 config.SetInitialCongestionWindowToSend( 839 config.SetInitialFlowControlWindowToSend(kInitialReceiveWindowSize); 840 config.SetInitialStreamFlowControlWindowToSend(kInitialReceiveWindowSize) [all...] |
/external/chromium_org/remoting/client/plugin/ |
chromoting_instance.cc | 192 ClientConfig* config) { 200 config->authentication_methods.push_back(authentication_method); 202 if (config->authentication_methods.empty()) { 649 ClientConfig config; local 652 if (!data.GetString("hostJid", &config.host_jid) || 653 !data.GetString("hostPublicKey", &config.host_public_key) || 656 !ParseAuthMethods(auth_methods, &config) || 657 !data.GetString("authenticationTag", &config.authentication_tag)) { 661 data.GetString("clientPairingId", &config.client_pairing_id); 662 data.GetString("clientPairedSecret", &config.client_paired_secret) [all...] |
/external/chromium_org/remoting/host/ |
remoting_me2me_host.cc | 126 // Value used for --host-config option to indicate that the path must be read 166 // Host process has just been started. Waiting for config and policies to be 209 // Initializes IPC control channel and config file path from |cmd_line|. 222 // Applies the host config, returning true if successful. 223 bool ApplyConfig(scoped_ptr<JsonHostConfig> config); 410 // Read config from stdin if necessary. 425 LOG(ERROR) << "Can't find host config at " << host_config_path_.value(); 467 scoped_ptr<JsonHostConfig> config(new JsonHostConfig(base::FilePath())); 468 if (!config->SetSerializedData(serialized_config)) { 474 if (!ApplyConfig(config.Pass())) 1202 scoped_ptr<protocol::CandidateSessionConfig> config = local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
mediastreamsignaling_unittest.cc | 251 const webrtc::InternalDataChannelInit* config) { 252 last_init_ = *config; 253 return webrtc::DataChannel::Create(provider_, type_, label, *config); 557 webrtc::InternalDataChannelInit config; local 558 config.id = id; 561 data_channel_provider_.get(), type, label, config)); 1189 webrtc::InternalDataChannelInit config; local 1209 webrtc::DataChannelInit config; local 1229 webrtc::DataChannelInit config; local 1241 webrtc::InternalDataChannelInit config; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcvoiceengine_unittest.cc | 2775 webrtc::AgcConfig config = {0}; local [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/ |
vp9_cx_iface.c | 449 // value, but we don't track the initial config, only the last successful 450 // config. 544 if (ctx->config.enc) { 545 // Update the reference to the config structure to an internal copy. 546 ctx->priv->alg_priv->cfg = *ctx->config.enc; 547 ctx->config.enc = &ctx->priv->alg_priv->cfg; 938 vp8_postproc_cfg_t *config = va_arg(args, vp8_postproc_cfg_t *); local [all...] |
/external/chromium_org/third_party/libwebp/webp/ |
encode.h | 153 // must have succeeded before using the 'config' object. 155 static WEBP_INLINE int WebPConfigInit(WebPConfig* config) { 156 return WebPConfigInitInternal(config, WEBP_PRESET_DEFAULT, 75.f, 164 static WEBP_INLINE int WebPConfigPreset(WebPConfig* config, 166 return WebPConfigInitInternal(config, preset, quality, 175 // This function will overwrite several fields from config: 'method', 'quality' 177 WEBP_EXTERN(int) WebPConfigLosslessPreset(WebPConfig* config, int level); 180 // Returns true if 'config' is non-NULL and all configuration parameters are 182 WEBP_EXTERN(int) WebPValidateConfig(const WebPConfig* config); variable 490 // Main encoding call, after config and picture have been initialized [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_code.h | 217 uint32_t config; /* US_CONFIG */ member in struct:r300_fragment_program_code
|
/external/chromium_org/third_party/mesa/src/src/glx/ |
dri2_glx.c | 87 const __DRI2configQueryExtension *config; member in struct:dri2_screen 187 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base; local 207 if (!glx_context_init(&pcp->base, &psc->base, &config->base)) { 214 config->driConfig, shared, pcp); 237 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base; local 272 if (!glx_context_init(&pcp->base, &psc->base, &config->base)) 301 config->driConfig, 352 __GLXDRIconfigPrivate *config = (__GLXDRIconfigPrivate *) config_base; local 370 if (psc->config) 371 psc->config->configQueryi(psc->driScreen [all...] |
glxclient.h | 106 struct glx_config *config, 113 struct glx_config *config); 376 * Pointer to the config used to create this context. 378 struct glx_config *config; member in struct:glx_context 463 * a pointer to the config data for that screen (if the screen supports GL). 467 struct glx_config *config, 472 struct glx_config *config, 752 extern void __glXInitializeVisualConfigFromTags(struct glx_config * config,
|
glxcmds.c | 201 * \param config Application supplied \c GLXFBConfig. 213 struct glx_config *config; local 217 for (config = priv->screens[i]->configs; config != NULL; 218 config = config->next) { 219 if (config == (struct glx_config *) fbconfig) { 220 return config; 231 struct glx_screen *psc, struct glx_config *config) 239 gc->config = config 358 struct glx_config *config = NULL; local 653 const struct glx_config *config; local 866 struct glx_config *config; local 1228 struct glx_config *config; local 1645 struct glx_config *config = (struct glx_config *) fbconfig; local 1667 struct glx_config *config; local 1707 struct glx_config *config = ValidateGLXFBConfig(dpy, fbconfig); local 1720 struct glx_config *config = (struct glx_config *) fbconfig; local 1950 struct glx_config *config = (struct glx_config *) fbconfig; local 1997 struct glx_config *config = (struct glx_config *) fbconfig; local [all...] |
/external/chromium_org/third_party/skia/src/core/ |
SkBitmap.cpp | 95 SkBitmap::Config SkBitmap::config() const { function in class:SkBitmap 101 int SkBitmap::ComputeBytesPerPixel(SkBitmap::Config config) { 103 switch (config) { 119 SkDEBUGFAIL("unknown config"); 126 size_t SkBitmap::ComputeRowBytes(Config c, int width) { 130 int64_t SkBitmap::ComputeSize64(Config config, int width, int height) { 131 SkColorType ct = SkBitmapConfigToColorType(config); [all...] |
/external/chromium_org/third_party/skia/src/gpu/ |
SkGpuDevice.cpp | 131 * GrRenderTarget does not know its opaqueness, only its config, so we have 267 GrPixelConfig config = SkImageInfo2GrPixelConfig(dstInfo); local 268 if (kUnknown_GrPixelConfig == config) { 277 config, dstPixels, dstRowBytes, flags); 283 GrPixelConfig config = SkImageInfo2GrPixelConfig(info); local 284 if (kUnknown_GrPixelConfig == config) { 291 fRenderTarget->writePixels(x, y, info.width(), info.height(), config, pixels, rowBytes, flags); [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
neteq_unittest.cc | 259 NetEq::Config config; local 260 config.sample_rate_hz = kInitSampleRateHz; 261 neteq_ = NetEq::Create(config); [all...] |
/external/chromium_org/third_party/webrtc/video/ |
video_send_stream_tests.cc | 92 VideoSendStream::Config send_config_; 158 Call::Config call_config(observer.SendTransport()); 203 Call::Config call_config(&transport); 216 Call::Config call_config(&transport); 261 Call::Config call_config(observer.SendTransport()); 293 Call::Config call_config(observer.SendTransport()); 340 Call::Config call_config(observer.SendTransport()); 414 Call::Config call_config(&transport); 492 Call::Config call_config(observer.SendTransport()); 568 Call::Config call_config(observer.SendTransport()) 1146 RtpRtcp::Configuration config; local [all...] |
/external/chromium_org/ui/views/controls/menu/ |
menu_item_view.cc | 535 const MenuConfig& config = GetMenuConfig(); local 539 int x = config.item_left_margin + left_icon_margin_ + 602 const MenuConfig& config = GetMenuConfig(); local 604 item_right_margin_ = config.label_to_arrow_padding + config.arrow_width + 605 config.arrow_to_edge_padding; 606 icon_area_width_ = config.check_width; 610 label_start_ = config.item_left_margin + icon_area_width_; 612 if (config.always_use_icon_to_label_padding) { 613 padding = config.icon_to_label_padding 741 const MenuConfig& config = GetMenuConfig(); local 867 const MenuConfig& config = GetMenuConfig(); local [all...] |
/external/deqp/modules/egl/ |
teglCreateContextExtTests.cpp | 216 void executeForConfig (tcu::egl::Display& display, EGLConfig config, tcu::egl::Surface& surface); 1004 const EGLConfig config = m_configs[m_iteration]; local 1006 const EGLint surfaceTypes = display.getConfigAttrib(config, EGL_SURFACE_TYPE); 1007 const EGLint configId = display.getConfigAttrib(config, EGL_CONFIG_ID); 1019 tcu::egl::PbufferSurface pbuffer(display, config, attribList); 1020 executeForConfig(display, config, pbuffer); 1024 de::UniquePtr<eglu::NativeWindow> window (m_eglTestCtx.createNativeWindow(display.getEGLDisplay(), config, DE_NULL, 256, 256, eglu::parseWindowVisibility(m_testCtx.getCommandLine()))); 1025 tcu::egl::WindowSurface surface (display, eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *window, display.getEGLDisplay(), config, DE_NULL)); 1027 executeForConfig(display, config, surface); 1031 de::UniquePtr<eglu::NativePixmap> pixmap (m_eglTestCtx.createNativePixmap(display.getEGLDisplay(), config, DE_NULL, 256, 256)) [all...] |
teglGLES2SharedRenderingPerfTests.cpp | 102 TestContext (EglTestContext& eglTestCtx, EGLConfig eglConfig, const TestConfig& config, bool share, TestContext* parent); 169 void createCoordData (vector<float>& data, const TestConfig& config) 171 if (config.useIndices) 195 data.reserve(config.triangleCount * 3 * 2); 197 for (int triangleNdx = 0; triangleNdx < config.triangleCount; triangleNdx++) 219 GLuint createCoordBuffer (const glw::Functions& gl, const TestConfig& config) 224 createCoordData(data, config); 238 void createIndexData (vector<deUint16>& data, const TestConfig& config) 240 for (int triangleNdx = 0; triangleNdx < config.triangleCount; triangleNdx++) 257 GLuint createIndexBuffer (const glw::Functions& gl, const TestConfig& config) 1147 TestConfig config = basicConfig; local 1196 TestConfig config = basicConfig; local 1244 TestConfig config = basicConfig; local 1293 TestConfig config = basicConfig; local 1342 TestConfig config = basicConfig; local 1391 TestConfig config = basicConfig; local 1440 TestConfig config = basicConfig; local 1492 TestConfig config = basicConfig; local 1543 TestConfig config = basicConfig; local 1594 TestConfig config = basicConfig; local [all...] |
teglGLES2SharingTests.cpp | 169 EGLContext createContext (EGLDisplay display, EGLContext share, EGLConfig config); 189 EGLContext GLES2SharingTest::createContext (EGLDisplay display, EGLContext share, EGLConfig config) 199 eglGetConfigAttrib(display, config, EGL_CONFIG_ID, &configId); 203 context = eglCreateContext(display, config, share, attriblist); 235 EGLConfig config = configs[0]; local 237 de::UniquePtr<eglu::NativeWindow> window (m_eglTestCtx.createNativeWindow(display.getEGLDisplay(), config, DE_NULL, 480, 480, eglu::parseWindowVisibility(m_testCtx.getCommandLine()))); 238 tcu::egl::WindowSurface surface (display, eglu::createWindowSurface(m_eglTestCtx.getNativeDisplay(), *window, display.getEGLDisplay(), config, DE_NULL)); 241 EGLContext contextA = createContext(display.getEGLDisplay(), EGL_NO_CONTEXT, config); 243 EGLContext contextB = createContext(display.getEGLDisplay(), contextA, config); [all...] |
teglMultiThreadTests.cpp | 557 // Pop configs to stop config list growing 605 // Pop configs to stop config list growing 659 EGLConfig config = configs[rnd.getInt(0, (int)(configs.size()-1))]; local 663 result = eglGetConfigAttrib(m_display, config, attribute, &value); 664 thread.getLog() << ThreadLog::BeginMessage << result << " = eglGetConfigAttrib(" << m_display << ", " << config << ", " << configAttributeToString(attribute) << ", " << value << ")" << ThreadLog::EndMessage; 908 throw tcu::NotSupportedError("No usable config found", "", __FILE__, __LINE__); [all...] |