Searched defs:config (Results 126 - 150 of 333) sorted by relevance

1234567891011>>

/external/webrtc/src/modules/audio_processing/
H A Decho_control_mobile_impl.cc293 AecmConfig config; local
294 config.cngMode = comfort_noise_enabled_;
295 config.echoMode = MapSetting(routing_mode_);
297 return WebRtcAecm_set_config(static_cast<Handle*>(handle), config);
H A Dgain_control_impl.cc368 WebRtcAgc_config_t config; local
372 //config.targetLevelDbfs = static_cast<WebRtc_Word16>(-target_level_dbfs_);
373 config.targetLevelDbfs = static_cast<WebRtc_Word16>(target_level_dbfs_);
374 config.compressionGaindB =
376 config.limiterEnable = limiter_enabled_;
378 return WebRtcAgc_set_config(static_cast<Handle*>(handle), config);
/external/wpa_supplicant_6/wpa_supplicant/
H A Dmain_winsvc.c18 * 'adapter' and 'config' values.
72 TCHAR adapter[TBUFLEN], config[TBUFLEN], ctrl_interface[TBUFLEN]; local
109 buflen = sizeof(config);
110 ret = RegQueryValueEx(hk, TEXT("config"), NULL, NULL,
111 (LPBYTE) config, &buflen);
113 config[sizeof(config) - 1] = '\0';
114 wpa_unicode2ascii_inplace(config);
115 printf("config[len=%d] '%s'\n",
116 (int) buflen, (char *) config);
[all...]
H A Dconfig_winreg.c40 #include "config.h"
56 static int wpa_config_read_blobs(struct wpa_config *config, HKEY hk) argument
66 wpa_printf(MSG_DEBUG, "Could not open wpa_supplicant config "
117 wpa_config_set_blob(config, blob);
170 static int wpa_config_read_global_uuid(struct wpa_config *config, HKEY hk) argument
179 if (uuid_str2bin(str, config->uuid))
188 static int wpa_config_read_global_os_version(struct wpa_config *config, argument
198 if (hexstr2bin(str, config->os_version, 4))
208 static int wpa_config_read_global(struct wpa_config *config, HKEY hk) argument
212 wpa_config_read_reg_dword(hk, TEXT("ap_scan"), &config
359 wpa_config_read_networks(struct wpa_config *config, HKEY hk) argument
429 struct wpa_config *config; local
534 wpa_config_write_global(struct wpa_config *config, HKEY hk) argument
929 wpa_config_write(const char *name, struct wpa_config *config) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dmain_winsvc.c12 * 'adapter' and 'config' values.
66 TCHAR adapter[TBUFLEN], config[TBUFLEN], ctrl_interface[TBUFLEN]; local
103 buflen = sizeof(config);
104 ret = RegQueryValueEx(hk, TEXT("config"), NULL, NULL,
105 (LPBYTE) config, &buflen);
107 config[sizeof(config) - 1] = '\0';
108 wpa_unicode2ascii_inplace(config);
109 printf("config[len=%d] '%s'\n",
110 (int) buflen, (char *) config);
[all...]
/external/aac/libAACenc/src/
H A Daacenc.cpp266 void FDKaacEnc_AacInitDefaultConfig(AACENC_CONFIG *config) argument
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
376 FDKaacEnc_Initialize(HANDLE_AAC_ENC hAacEnc, AACENC_CONFIG *config, HANDLE_TRANSPORTENC hTpEnc, ULONG initFlags) argument
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dproxy_config_service_impl_unittest.cc252 // Instantiate proxy config service with |init_config|.
260 ProxyConfigServiceImpl::ProxyConfig* config,
262 config->mode = mode;
273 ProxyConfigServiceImpl::ProxyConfig* config,
277 config->mode = mode;
315 // Init config from |source|.
320 ProxyConfigServiceImpl::ProxyConfig config; local
321 config_service()->UIGetProxyConfig(&config);
323 // For owner, write access to config should be equal CanBeWrittenByOwner().
324 // For non-owner, config i
256 SetAutomaticProxy( ProxyConfigServiceImpl::ProxyConfig::Mode mode, ProxyConfigServiceImpl::ProxyConfig::Source source, const char* pac_url, ProxyConfigServiceImpl::ProxyConfig* config, ProxyConfigServiceImpl::ProxyConfig::AutomaticProxy* automatic_proxy) argument
268 SetManualProxy( ProxyConfigServiceImpl::ProxyConfig::Mode mode, ProxyConfigServiceImpl::ProxyConfig::Source source, const char* server_uri, net::ProxyServer::Scheme scheme, ProxyConfigServiceImpl::ProxyConfig* config, ProxyConfigServiceImpl::ProxyConfig::ManualProxy* manual_proxy) argument
373 ProxyConfigServiceImpl::ProxyConfig config; local
398 SyncGetLatestProxyConfig(net::ProxyConfig* config) argument
433 net::ProxyConfig config; local
550 const net::ProxyConfig& config() const { function in class:chromeos::ProxyChangedObserver
555 OnProxyConfigChanged( const net::ProxyConfig& config, net::ProxyConfigService::ConfigAvailability availability) argument
[all...]
/external/chromium/chrome/browser/net/websocket_experiment/
H A Dwebsocket_experiment_task.h107 const Config& config, URLFetcher::Delegate* delegate);
109 const Config& config, net::WebSocketDelegate* delegate);
132 WebSocketExperimentTask(const Config& config,
148 const Config& config() const { return config_; } function in class:chrome_browser_net_websocket_experiment::WebSocketExperimentTask
/external/dhcpcd/
H A Dconfigure.c43 #include "config.h"
112 const char *prefix, const char *const *config)
117 if (config == NULL)
121 for (i = 0; config[i] != NULL; i++) {
122 eq = strchr(config[i], '=');
123 e1 = eq - config[i] + 1;
126 config[i], e1) == 0)
129 ne[j] = make_var(prefix, config[i]);
136 ne[j - 1] = make_var(prefix, config[i]);
261 (const char *const *)ifo->config);
111 append_config(char ***env, ssize_t *len, const char *prefix, const char *const *config) argument
[all...]
H A Dif-options.h99 char **config; member in struct:if_options
/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 DPerformanceResults.java174 * @param config Configuration name
177 public List getComponentSummaryScenarios(String componentName, String config) { argument
183 scenarios.addAll(componentResults.getSummaryScenarios(true, config));
188 return componentResults.getSummaryScenarios(false, config);
226 String config = this.sortedConfigNames[i];
228 if (refLength != config.length()) return null; // strings have not the same length => cannot find a pattern
231 if (config.charAt(j) != c) {
323 // create config names
332 // Sort the config names
690 // Store config informatio
[all...]
/external/libnfc-nxp/src/
H A DphHciNfc_AdminMgmt.c299 uint8_t config = 0x00; local
305 NFC_ADDRESS_UICC_SESSION , config );
H A DphHciNfc_Sequence.c1056 static uint8_t config = 0; local
1058 PHNFC_UNUSED_VARIABLE(config);
1596 &p_emulation_cfg->config.uiccEmuCfg;
1875 &&(FALSE == p_emulation_cfg->config.uiccEmuCfg.enableUicc)
/external/openssl/apps/
H A Dopenssl.c150 CONF *config=NULL; variable
340 config=NCONF_new(NULL);
341 i=NCONF_load(config,p,&errline);
349 "WARNING: can't open config file: %s\n",p);
352 NCONF_free(config);
353 config = NULL;
358 NCONF_free(config);
431 if (config != NULL)
433 NCONF_free(config);
434 config
[all...]
/external/qemu/hw/
H A Dgoldfish_events_device.c353 AndroidHwConfig* config = android_hw; local
394 if (config->hw_dPad) {
402 if (config->hw_trackBall) {
405 if (androidHwConfig_isScreenTouch(config)) {
409 if (strcmp(config->hw_camera_back, "none") ||
410 strcmp(config->hw_camera_front, "none")) {
415 if (config->hw_keyboard) {
434 if (!config->hw_dPad) {
447 if (config->hw_trackBall) {
456 if (!androidHwConfig_isScreenNoTouch(config)) {
[all...]
/external/skia/include/gpu/
H A DGrContext.h475 * @param config the pixel config of the destination buffer
481 * because of an unsupported pixel config or because no render
486 GrPixelConfig config, void* buffer,
490 config, buffer,
503 * @param config the pixel config of the source buffer
510 GrPixelConfig config, const void* buffer,
513 config, buffer, rowBytes, 0);
523 * @param config th
484 readRenderTargetPixels(GrRenderTarget* target, int left, int top, int width, int height, GrPixelConfig config, void* buffer, size_t rowBytes) argument
508 writeRenderTargetPixels(GrRenderTarget* target, int left, int top, int width, int height, GrPixelConfig config, const void* buffer, size_t rowBytes) argument
531 readTexturePixels(GrTexture* texture, int left, int top, int width, int height, GrPixelConfig config, void* buffer, size_t rowBytes) argument
552 writeTexturePixels(GrTexture* texture, int left, int top, int width, int height, GrPixelConfig config, const void* buffer, size_t rowBytes) argument
[all...]
/external/skia/include/images/
H A DSkImageDecoder.h110 virtual void inspect(int index, SkBitmap::Config config, int width, int height) {} argument
119 /** This optional table describes the caller's preferred config based on
123 pref[] table, which contains the caller's preferred config for that
130 config is actually returned, as it may not be able to support the
181 only the bitmap's width/height/config need be set. If kDecodePixels_Mode
185 kDecodeBounds_Mode, //!< only return width/height/config in bitmap
196 * decoding, the function converts the decoded config in bitmap
236 config given the image data. If pref something other than kNo_Config,
239 config does not support that), in which case the decoder will choose a
256 config give
[all...]
/external/skia/src/core/
H A DSkBlitMask_D32.cpp233 SkBlitMask::ColorProc SkBlitMask::ColorFactory(SkBitmap::Config config, argument
236 ColorProc proc = PlatformColorProcs(config, format, color);
241 switch (config) {
262 ColorProc proc = ColorFactory(device.config(), mask.fFormat, color);
556 SkBlitMask::RowProc SkBlitMask::RowFactory(SkBitmap::Config config, argument
560 RowProc proc = PlatformRowProcs(config, format, flags);
574 switch (config) {
/external/skia/src/views/
H A DSkWindow.cpp88 void SkWindow::setConfig(SkBitmap::Config config) argument
90 this->resize(fBitmap.width(), fBitmap.height(), config);
93 void SkWindow::resize(int width, int height, SkBitmap::Config config) argument
95 if (config == SkBitmap::kNo_Config)
96 config = fConfig;
98 if (width != fBitmap.width() || height != fBitmap.height() || config != fConfig)
100 fConfig = config;
101 fBitmap.setConfig(config, width, height);
/external/skia/tests/
H A DBitmapCopyTest.cpp25 gConfigName[src.config()], src.isOpaque(),
26 gConfigName[dst.config()], dst.isOpaque());
30 static bool canHaveAlpha(SkBitmap::Config config) { argument
31 return config != SkBitmap::kRGB_565_Config;
45 if (canHaveAlpha(bitmap.config()) && canHaveAlpha(dstConfig)) {
51 REPORTER_ASSERT(reporter, dst.config() == dstConfig);
62 REPORTER_ASSERT(reporter, dst.config() == dstConfig);
228 str.printf("%s [config = %s]",
266 if (SkBitmap::kIndex8_Config == src.config() ||
267 SkBitmap::kRLE_Index8_Config == src.config()) {
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Djet_data.h148 S_JET_CONFIG config; member in struct:s_jet_data_tag
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A DDisplay.cpp201 for (ConfigSet::Iterator config = configSet.mSet.begin(); config != configSet.mSet.end(); config++)
203 Config configuration = *config;
300 bool Display::getConfigAttrib(EGLConfig config, EGLint attribute, EGLint *value) argument
302 const egl::Config *configuration = mConfigSet.get(config);
396 Surface *Display::createWindowSurface(HWND window, EGLConfig config) argument
398 const Config *configuration = mConfigSet.get(config);
429 const egl::Config *config = mConfigSet.get(configHandle); local
431 gl::Context *context = glCreateContext(config, shareContex
462 isValidConfig(EGLConfig config) argument
[all...]
H A DlibEGL.cpp33 bool validate(egl::Display *display, EGLConfig config) argument
40 if (!display->isValidConfig(config))
289 EGLBoolean __stdcall eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) argument
291 TRACE("(EGLDisplay dpy = 0x%0.8p, EGLConfig config = 0x%0.8p, EGLint attribute = %d, EGLint *value = 0x%0.8p)",
292 dpy, config, attribute, value);
298 if (!validate(display, config))
303 if (!display->getConfigAttrib(config, attribute, value))
318 EGLSurface __stdcall eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list) argument
320 TRACE("(EGLDisplay dpy = 0x%0.8p, EGLConfig config = 0x%0.8p, EGLNativeWindowType win = 0x%0.8p, "
321 "const EGLint *attrib_list = 0x%0.8p)", dpy, config, wi
385 eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list) argument
411 eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list) argument
635 eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list) argument
770 eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list) argument
[all...]
/external/webrtc/src/modules/audio_processing/aecm/
H A Decho_control_mobile.c534 WebRtc_Word32 WebRtcAecm_set_config(void *aecmInst, AecmConfig config) argument
549 if (config.cngMode != AecmFalse && config.cngMode != AecmTrue)
554 aecm->aecmCore->cngMode = config.cngMode;
556 if (config.echoMode < 0 || config.echoMode > 4)
561 aecm->echoMode = config.echoMode;
616 WebRtc_Word32 WebRtcAecm_get_config(void *aecmInst, AecmConfig *config) argument
625 if (config == NULL)
637 config
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Deap_tls_common.c61 struct eap_peer_config *config)
63 params->ca_cert = (char *) config->ca_cert;
64 params->ca_path = (char *) config->ca_path;
65 params->client_cert = (char *) config->client_cert;
66 params->private_key = (char *) config->private_key;
67 params->private_key_passwd = (char *) config->private_key_passwd;
68 params->dh_file = (char *) config->dh_file;
69 params->subject_match = (char *) config->subject_match;
70 params->altsubject_match = (char *) config->altsubject_match;
71 params->engine = config
60 eap_tls_params_from_conf1(struct tls_connection_params *params, struct eap_peer_config *config) argument
81 eap_tls_params_from_conf2(struct tls_connection_params *params, struct eap_peer_config *config) argument
102 eap_tls_params_from_conf(struct eap_sm *sm, struct eap_ssl_data *data, struct tls_connection_params *params, struct eap_peer_config *config, int phase2) argument
139 eap_tls_init_connection(struct eap_sm *sm, struct eap_ssl_data *data, struct eap_peer_config *config, struct tls_connection_params *params) argument
193 eap_peer_tls_ssl_init(struct eap_sm *sm, struct eap_ssl_data *data, struct eap_peer_config *config) argument
957 eap_peer_select_phase2_methods(struct eap_peer_config *config, const char *prefix, struct eap_method_type **types, size_t *num_types) argument
[all...]

Completed in 2166 milliseconds

1234567891011>>