Searched refs:config (Results 1 - 25 of 4392) sorted by last modified time

1234567891011>>

/external/yaffs2/yaffs2/
H A DKconfig5 config YAFFS_FS
23 config YAFFS_YAFFS1
32 config YAFFS_DOES_ECC
42 config YAFFS_ECC_WRONG_ORDER
53 config YAFFS_YAFFS2
62 config YAFFS_AUTO_YAFFS2
73 config YAFFS_DISABLE_LAZY_LOAD
93 config YAFFS_DISABLE_WIDE_TNODES
108 config YAFFS_ALWAYS_CHECK_CHUNK_ERASED
126 config YAFFS_SHORT_NAMES_IN_RA
[all...]
H A Dyaffs_fs.c37 #include <linux/config.h>
H A Dyportenv.h34 #include <linux/config.h>
/external/yaffs2/yaffs2/direct/
H A Dyaffs_ramem2k.c23 #include <linux/config.h>
/external/yaffs2/yaffs2/mtdemul/
H A Dnandemul2k.c17 #include <linux/config.h>
/external/zlib/src/
H A Ddeflate.c123 } config; typedef in typeref:struct:config_s
126 local const config configuration_table[2] = {
131 local const config configuration_table[10] = {
H A Dmake_vms.com40 $! Setup variables holding "config" information
123 $ open/write conf_hin config.hin
237 $ write sys$output "No source for config.hin found."
603 $! 0.03 20040309 Make sure local config file gets not deleted
706 $! Write configuration to both permanent and temporary config file
/external/webrtc/src/modules/audio_processing/aec/
H A Decho_cancellation.c604 WebRtc_Word32 WebRtcAec_set_config(void *aecInst, AecConfig config) argument
617 if (config.skewMode != kAecFalse && config.skewMode != kAecTrue) {
621 aecpc->skewMode = config.skewMode;
623 if (config.nlpMode != kAecNlpConservative && config.nlpMode !=
624 kAecNlpModerate && config.nlpMode != kAecNlpAggressive) {
628 aecpc->nlpMode = config.nlpMode;
632 if (config.metricsMode != kAecFalse && config
653 WebRtcAec_get_config(void *aecInst, AecConfig *config) argument
[all...]
/external/webrtc/src/modules/audio_processing/aec/interface/
H A Decho_cancellation.h171 * AecConfig config Config instance that contains all
179 WebRtc_Word32 WebRtcAec_set_config(void *aecInst, AecConfig config);
190 * AecConfig *config Pointer to the config instance that
195 WebRtc_Word32 WebRtcAec_get_config(void *aecInst, AecConfig *config);
/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/webrtc/src/modules/audio_processing/aecm/interface/
H A Decho_control_mobile.h143 * AecmConfig config Config instance that contains all
152 AecmConfig config);
163 * AecmConfig *config Pointer to the config instance that
169 AecmConfig *config);
/external/webrtc/src/modules/audio_processing/agc/
H A Danalog_agc.c44 /* Default settings if config is not used */
1444 /* Store the config in a WebRtcAgc_config_t */
1452 int WebRtcAgc_get_config(void *agcInst, WebRtcAgc_config_t *config) argument
1462 if (config == NULL)
1474 config->limiterEnable = stt->usedConfig.limiterEnable;
1475 config->targetLevelDbfs = stt->usedConfig.targetLevelDbfs;
1476 config->compressionGaindB = stt->usedConfig.compressionGaindB;
1666 // Default config settings.
/external/webrtc/src/modules/audio_processing/agc/interface/
H A Dgain_control.h182 * This function sets the config parameters (targetLevelDbfs,
187 * - config : config struct
195 int WebRtcAgc_set_config(void* agcInst, WebRtcAgc_config_t config);
198 * This function returns the config parameters (targetLevelDbfs,
205 * - config : config struct
211 int WebRtcAgc_get_config(void* agcInst, WebRtcAgc_config_t* config);
/external/webrtc/src/modules/audio_processing/
H A Decho_cancellation_impl.cc365 AecConfig config; local
366 config.metricsMode = metrics_enabled_;
367 config.nlpMode = MapSetting(suppression_level_);
368 config.skewMode = drift_compensation_enabled_;
369 config.delay_logging = delay_logging_enabled_;
371 return WebRtcAec_set_config(static_cast<Handle*>(handle), config);
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/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c80 EGLConfig config; local
91 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
97 eglGetConfigAttrib(display, config, EGL_NATIVE_VISUAL_ID, &format);
101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
102 context = eglCreateContext(display, config, NULL, NULL);
/external/wpa_supplicant_8/hostapd/
H A DAndroid.mk17 include $(LOCAL_PATH)/android.config
H A DMakefile16 -include .config
896 @if [ ! -r .config ]; then \
898 echo '(.config). See README for more instructions. You can'; \
899 echo 'run "cp defconfig .config" to create an example'; \
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap.c129 struct eap_peer_config *config = eap_get_config(sm); local
133 if (config == NULL || config->eap_methods == NULL)
136 m = config->eap_methods;
319 struct eap_peer_config *config = eap_get_config(sm); local
327 if (sm->reqMethod == EAP_TYPE_TLS && config &&
328 (config->pending_req_pin ||
329 config->pending_req_passphrase)) {
1137 struct eap_peer_config *config = eap_get_config(sm); local
1142 if (config
1664 struct eap_peer_config *config; local
1842 struct eap_peer_config *config = eap_get_config(sm); local
1907 eap_get_phase2_types(struct eap_peer_config *config, size_t *count) argument
1988 struct eap_peer_config *config = eap_get_config(sm); local
1996 eap_get_ext_password(struct eap_sm *sm, struct eap_peer_config *config) argument
2025 struct eap_peer_config *config = eap_get_config(sm); local
2052 struct eap_peer_config *config = eap_get_config(sm); local
2080 struct eap_peer_config *config = eap_get_config(sm); local
2096 struct eap_peer_config *config = eap_get_config(sm); local
2114 struct eap_peer_config *config = eap_get_config(sm); local
2131 struct eap_peer_config *config = eap_get_config(sm); local
2145 struct eap_peer_config *config = eap_get_config(sm); local
2154 struct eap_peer_config *config = eap_get_config(sm); local
[all...]
H A Deap.h302 struct eap_method_type * eap_get_phase2_types(struct eap_peer_config *config,
H A Deap_aka.c91 struct eap_peer_config *config = eap_get_config(sm); local
104 if (config && config->anonymous_identity) {
105 data->pseudonym = os_malloc(config->anonymous_identity_len);
107 os_memcpy(data->pseudonym, config->anonymous_identity,
108 config->anonymous_identity_len);
109 data->pseudonym_len = config->anonymous_identity_len;
H A Deap_fast.c150 struct eap_peer_config *config = eap_get_config(sm); local
152 if (config == NULL)
161 if (config->phase1 && eap_fast_parse_phase1(data, config->phase1) < 0) {
166 if (eap_peer_select_phase2_methods(config, "auth=",
176 if (eap_peer_tls_ssl_init(sm, &data->ssl, config, EAP_TYPE_FAST)) {
201 if (!config->pac_file) {
208 eap_fast_load_pac_bin(sm, &data->pac, config->pac_file) < 0) {
215 eap_fast_load_pac(sm, &data->pac, config->pac_file) < 0) {
420 struct eap_peer_config *config local
1029 struct eap_peer_config *config = eap_get_config(sm); local
[all...]
H A Deap_mschapv2.c300 struct eap_peer_config *config = eap_get_config(sm); local
301 if (config && config->new_password) {
306 bin_clear_free(config->password, config->password_len);
307 if (config->flags & EAP_CONFIG_FLAGS_EXT_PASSWORD) {
309 } else if (config->flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH) {
310 config->password = os_malloc(16);
311 config->password_len = 16;
312 if (config
405 struct eap_peer_config *config = eap_get_config(sm); local
671 struct eap_peer_config *config = eap_get_config(sm); local
767 struct eap_peer_config *config = eap_get_config(sm); local
[all...]
H A Deap_peap.c136 struct eap_peer_config *config = eap_get_config(sm); local
147 if (config && config->phase1 &&
148 eap_peap_parse_phase1(data, config->phase1) < 0) {
153 if (eap_peer_select_phase2_methods(config, "auth=",
163 if (eap_peer_tls_ssl_init(sm, &data->ssl, config, EAP_TYPE_PEAP)) {
599 struct eap_peer_config *config = eap_get_config(sm); local
724 (config->pending_req_identity || config->pending_req_password ||
725 config
[all...]

Completed in 1561 milliseconds

1234567891011>>