HomeSort by relevance Sort by last modified time
    Searched refs:conf (Results 1 - 25 of 555) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/conf/
conf_api.h 63 #include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section
    [all...]
test.c 1 /* crypto/conf/test.c */
61 #include <openssl/conf.h>
66 LHASH *conf; local
73 conf=CONF_load(NULL,"ssleay.cnf",&eline);
74 if (conf == NULL)
81 lh_stats(conf,stdout);
82 lh_node_stats(conf,stdout);
83 lh_node_usage_stats(conf,stdout);
85 s=CONF_get_string(conf,NULL,"init2");
88 s=CONF_get_string(conf,NULL,"cipher1")
    [all...]
conf_lib.c 62 #include <openssl/conf.h>
66 const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT;
70 /* Init a 'CONF' structure from an old LHASH */
72 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
77 default_CONF_method->init(conf);
78 conf->data = hash;
81 /* The following section contains the "CONF classic" functions,
82 rewritten in terms of the new CONF interface. */
90 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file
    [all...]
conf_def.c 1 /* crypto/conf/conf.c */
59 /* Part of the code in here was originally in conf.c, which is now removed */
66 #include <openssl/conf.h>
72 static char *eat_ws(CONF *conf, char *p);
73 static char *eat_alpha_numeric(CONF *conf, char *p);
74 static void clear_comments(CONF *conf, char *p)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
conf_api.h 63 #include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section
    [all...]
  /external/openssl/crypto/conf/
conf_api.h 63 #include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section
    [all...]
test.c 1 /* crypto/conf/test.c */
61 #include <openssl/conf.h>
66 LHASH *conf; local
73 conf=CONF_load(NULL,"ssleay.cnf",&eline);
74 if (conf == NULL)
81 lh_stats(conf,stdout);
82 lh_node_stats(conf,stdout);
83 lh_node_usage_stats(conf,stdout);
85 s=CONF_get_string(conf,NULL,"init2");
88 s=CONF_get_string(conf,NULL,"cipher1")
    [all...]
conf_lib.c 62 #include <openssl/conf.h>
66 const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT;
70 /* Init a 'CONF' structure from an old LHASH */
72 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
77 default_CONF_method->init(conf);
78 conf->data = hash;
81 /* The following section contains the "CONF classic" functions,
82 rewritten in terms of the new CONF interface. */
90 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file
    [all...]
conf_def.c 1 /* crypto/conf/conf.c */
59 /* Part of the code in here was originally in conf.c, which is now removed */
66 #include <openssl/conf.h>
72 static char *eat_ws(CONF *conf, char *p);
73 static char *eat_alpha_numeric(CONF *conf, char *p);
74 static void clear_comments(CONF *conf, char *p)
    [all...]
  /external/openssl/include/openssl/
conf_api.h 63 #include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section
    [all...]
  /hardware/broadcom/wlan/bcmdhd/config/
config-bcm.mk 19 hardware/broadcom/wlan/bcmdhd/config/wpa_supplicant_overlay.conf:system/etc/wifi/wpa_supplicant_overlay.conf \
20 hardware/broadcom/wlan/bcmdhd/config/p2p_supplicant_overlay.conf:system/etc/wifi/p2p_supplicant_overlay.conf
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglConfig.cpp 77 EglConfig::EglConfig(const EglConfig& conf):m_buffer_size(conf.m_buffer_size),
78 m_red_size(conf.m_red_size),
79 m_green_size(conf.m_green_size),
80 m_blue_size(conf.m_blue_size),
81 m_alpha_size(conf.m_alpha_size),
82 m_bind_to_tex_rgb(conf.m_bind_to_tex_rgb),
83 m_bind_to_tex_rgba(conf.m_bind_to_tex_rgba),
84 m_caveat(conf.m_caveat),
85 m_config_id(conf.m_config_id)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/lhash/
lh_test.c 66 LHASH *conf; local
70 conf=lh_new(lh_strhash,strcmp);
81 lh_insert(conf,p);
84 lh_node_stats(conf,stdout);
85 lh_stats(conf,stdout);
86 lh_node_usage_stats(conf,stdout);
  /external/openssl/crypto/lhash/
lh_test.c 66 LHASH *conf; local
70 conf=lh_new(lh_strhash,strcmp);
81 lh_insert(conf,p);
84 lh_node_stats(conf,stdout);
85 lh_stats(conf,stdout);
86 lh_node_usage_stats(conf,stdout);
  /device/common/gps/
gps_as.mk 18 device/common/gps/gps.conf_AS:system/etc/gps.conf
gps_as_supl.mk 18 device/common/gps/gps.conf_AS_SUPL:system/etc/gps.conf
gps_eu.mk 18 device/common/gps/gps.conf_EU:system/etc/gps.conf
gps_eu_supl.mk 18 device/common/gps/gps.conf_EU_SUPL:system/etc/gps.conf
gps_us.mk 18 device/common/gps/gps.conf_US:system/etc/gps.conf
gps_us_supl.mk 18 device/common/gps/gps.conf_US_SUPL:system/etc/gps.conf
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
evp_acnf.c 61 #include <openssl/conf.h>
  /external/openssl/crypto/evp/
evp_acnf.c 61 #include <openssl/conf.h>
  /hardware/qcom/gps/etc/
Android.mk 4 LOCAL_MODULE := gps.conf
8 LOCAL_SRC_FILES := gps.conf
  /hardware/qcom/gps/msm8960/etc/
Android.mk 5 LOCAL_MODULE := gps.conf
9 LOCAL_SRC_FILES := gps.conf
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
RunInLocale.java 38 final Configuration conf = res.getConfiguration(); local
39 if (newLocale == null || newLocale.equals(conf.locale)) {
42 final Locale savedLocale = conf.locale;
44 conf.locale = newLocale;
45 res.updateConfiguration(conf, null);
48 conf.locale = savedLocale;
49 res.updateConfiguration(conf, null);

Completed in 389 milliseconds

1 2 3 4 5 6 7 8 91011>>