Searched refs:conf (Results 1 - 25 of 581) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/Documentation/aoe/
H A Dudev-install.sh7 # find udev.conf, often /etc/udev/udev.conf
8 # (or environment can specify where to find udev.conf)
10 if test -z "$conf"; then
11 if test -r /etc/udev/udev.conf; then
12 conf=/etc/udev/udev.conf
14 conf="`find /etc -type f -name udev.conf 2> /dev/null`"
15 if test -z "$conf" || tes
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/man/man5/
H A DMakefile.am17 afpd.conf.5 \
18 netatalk.conf.5 \
19 afp_ldap.conf.5 \
20 afp_signature.conf.5 \
21 afp_voluuid.conf.5
24 afpd.conf.5.tmpl \
25 netatalk.conf.5.tmpl \
26 afp_ldap.conf.5.tmpl \
27 afp_signature.conf.5.tmpl \
28 afp_voluuid.conf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/man/man5/
H A DMakefile.am17 afpd.conf.5 \
18 netatalk.conf.5 \
19 afp_ldap.conf.5 \
20 afp_signature.conf.5 \
21 afp_voluuid.conf.5
24 afpd.conf.5.tmpl \
25 netatalk.conf.5.tmpl \
26 afp_ldap.conf.5.tmpl \
27 afp_signature.conf.5.tmpl \
28 afp_voluuid.conf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Dconf_api.h63 #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,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
82 int _CONF_new_data(CONF *conf);
83 void _CONF_free_data(CONF *conf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/conf/
H A Dconf_api.h63 #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,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
82 int _CONF_new_data(CONF *conf);
83 void _CONF_free_data(CONF *conf);
H A Dtest.c1 /* 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,NUL
[all...]
H A Dconf_lib.c62 #include <openssl/conf.h>
72 void CONF_set_nconf(CONF *conf, LHASH *hash) argument
77 default_CONF_method->init(conf);
78 conf->data = hash;
90 LHASH *CONF_load(LHASH *conf, const char *file, long *eline) argument
106 ltmp = CONF_load_bio(conf, in, eline);
113 LHASH *CONF_load_fp(LHASH *conf, FILE *fp,long *eline) argument
121 ltmp = CONF_load_bio(conf, btmp, eline);
127 LHASH *CONF_load_bio(LHASH *conf, BIO *bp,long *eline) argument
132 CONF_set_nconf(&ctmp, conf);
154 CONF_get_string(LHASH *conf,const char *group,const char *name) argument
168 CONF_get_number(LHASH *conf,const char *group,const char *name) argument
192 CONF_free(LHASH *conf) argument
200 CONF_dump_fp(LHASH *conf, FILE *out) argument
215 CONF_dump_bio(LHASH *conf, BIO *out) argument
245 NCONF_free(CONF *conf) argument
252 NCONF_free_data(CONF *conf) argument
259 NCONF_load(CONF *conf, const char *file, long *eline) argument
271 NCONF_load_fp(CONF *conf, FILE *fp,long *eline) argument
286 NCONF_load_bio(CONF *conf, BIO *bp,long *eline) argument
314 NCONF_get_string(const CONF *conf,const char *group,const char *name) argument
334 NCONF_get_number_e(const CONF *conf,const char *group,const char *name, long *result) argument
360 NCONF_dump_fp(const CONF *conf, FILE *out) argument
374 NCONF_dump_bio(const CONF *conf, BIO *out) argument
[all...]
H A Dconf_def.c1 /* crypto/conf/conf.c */
59 /* Part of the code in here was originally in conf.c, which is now removed */
65 #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);
75 static int str_copy(CONF *conf,char *section,char **to, char *from);
76 static char *scan_quote(CONF *conf, char *p);
77 static char *scan_dquote(CONF *conf, cha
142 def_init_default(CONF *conf) argument
154 def_init_WIN32(CONF *conf) argument
166 def_destroy(CONF *conf) argument
176 def_destroy_data(CONF *conf) argument
184 def_load(CONF *conf, const char *name, long *line) argument
209 def_load_bio(CONF *conf, BIO *in, long *line) argument
466 clear_comments(CONF *conf, char *p) argument
514 str_copy(CONF *conf, char *section, char **pto, char *from) argument
655 eat_ws(CONF *conf, char *p) argument
662 eat_alpha_numeric(CONF *conf, char *p) argument
677 scan_quote(CONF *conf, char *p) argument
696 scan_dquote(CONF *conf, char *p) argument
730 def_dump(const CONF *conf, BIO *out) argument
736 def_is_number(const CONF *conf, char c) argument
741 def_to_int(const CONF *conf, char c) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/conf/
H A Dconf_api.h63 #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,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
82 int _CONF_new_data(CONF *conf);
83 void _CONF_free_data(CONF *conf);
H A Dtest.c1 /* 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,NUL
[all...]
H A Dconf_lib.c62 #include <openssl/conf.h>
72 void CONF_set_nconf(CONF *conf, LHASH *hash) argument
77 default_CONF_method->init(conf);
78 conf->data = hash;
90 LHASH *CONF_load(LHASH *conf, const char *file, long *eline) argument
106 ltmp = CONF_load_bio(conf, in, eline);
113 LHASH *CONF_load_fp(LHASH *conf, FILE *fp,long *eline) argument
121 ltmp = CONF_load_bio(conf, btmp, eline);
127 LHASH *CONF_load_bio(LHASH *conf, BIO *bp,long *eline) argument
132 CONF_set_nconf(&ctmp, conf);
154 CONF_get_string(LHASH *conf,const char *group,const char *name) argument
168 CONF_get_number(LHASH *conf,const char *group,const char *name) argument
192 CONF_free(LHASH *conf) argument
200 CONF_dump_fp(LHASH *conf, FILE *out) argument
215 CONF_dump_bio(LHASH *conf, BIO *out) argument
245 NCONF_free(CONF *conf) argument
252 NCONF_free_data(CONF *conf) argument
259 NCONF_load(CONF *conf, const char *file, long *eline) argument
271 NCONF_load_fp(CONF *conf, FILE *fp,long *eline) argument
286 NCONF_load_bio(CONF *conf, BIO *bp,long *eline) argument
314 NCONF_get_string(const CONF *conf,const char *group,const char *name) argument
334 NCONF_get_number_e(const CONF *conf,const char *group,const char *name, long *result) argument
360 NCONF_dump_fp(const CONF *conf, FILE *out) argument
374 NCONF_dump_bio(const CONF *conf, BIO *out) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dconf_api.h63 #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,
80 long _CONF_get_number(const CONF *conf, const char *section, const char *name);
82 int _CONF_new_data(CONF *conf);
83 void _CONF_free_data(CONF *conf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dtextsearch.h68 * @conf: search configuration
78 struct ts_config *conf,
83 * @conf: search configuration
89 void (*finish)(struct ts_config *conf,
95 * @conf: search configuration
105 static inline unsigned int textsearch_next(struct ts_config *conf, argument
108 unsigned int ret = conf->ops->find(conf, state);
110 if (conf->finish)
111 conf
124 textsearch_find(struct ts_config *conf, struct ts_state *state) argument
135 textsearch_get_pattern(struct ts_config *conf) argument
144 textsearch_get_pattern_len(struct ts_config *conf) argument
165 struct ts_config *conf; local
175 ts_config_priv(struct ts_config *conf) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dfaulty.c91 static int check_mode(conf_t *conf, int mode) argument
93 if (conf->period[mode] == 0 &&
94 atomic_read(&conf->counters[mode]) <= 0)
98 if (atomic_dec_and_test(&conf->counters[mode])) {
99 if (conf->period[mode])
100 atomic_set(&conf->counters[mode], conf->period[mode]);
106 static int check_sector(conf_t *conf, sector_t start, sector_t end, int dir) argument
110 for (i=0; i<conf->nfaults; i++)
111 if (conf
130 add_sector(conf_t *conf, sector_t start, int mode) argument
173 conf_t *conf = (conf_t*)mddev->private; local
226 conf_t *conf = (conf_t*)mddev->private; local
261 conf_t *conf = mddev->private; local
291 conf_t *conf = kmalloc(sizeof(*conf), GFP_KERNEL); local
312 conf_t *conf = (conf_t *)mddev->private; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/lhash/
H A Dlh_test.c66 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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/lhash/
H A Dlh_test.c66 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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/packaging/Debian/debian-stable/
H A Dsamba-common.postinst10 # We need a default smb.conf file. If one doesn't exist we put in place
12 if [ ! -e /etc/samba/smb.conf ]; then
13 cp -a /usr/share/samba/smb.conf /etc/samba/
17 TMPFILE=/etc/samba/smb.conf.dpkg-tmp
40 < /etc/samba/smb.conf >${TMPFILE}
41 mv -f ${TMPFILE} /etc/samba/smb.conf
50 < /etc/samba/smb.conf >${TMPFILE}
51 mv -f ${TMPFILE} /etc/samba/smb.conf
57 ! grep -q dhcp.conf /etc/samba/smb.conf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/packaging/Debian/debian-unstable/
H A Dsamba-common.postinst10 # We need a default smb.conf file. If one doesn't exist we put in place
12 if [ ! -e /etc/samba/smb.conf ]; then
13 cp -a /usr/share/samba/smb.conf /etc/samba/
17 TMPFILE=/etc/samba/smb.conf.dpkg-tmp
40 < /etc/samba/smb.conf >${TMPFILE}
41 mv -f ${TMPFILE} /etc/samba/smb.conf
50 < /etc/samba/smb.conf >${TMPFILE}
51 mv -f ${TMPFILE} /etc/samba/smb.conf
57 ! grep -q dhcp.conf /etc/samba/smb.conf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/printer-accounting/
H A Dacct-all8 /etc/conf/acct-sum /var/log/lp/*
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/packaging/SGI/
H A Dstartswat.sh3 # add SWAT deamon to inetd.conf
5 cp /etc/inetd.conf /etc/inetd.conf.O
8 if [ ! -r /etc/inetd.conf.O -o ! -w /etc/inetd.conf ]; then exit 1; fi
10 sed -e "/^swat/D" -e "/^#SWAT/D" /etc/inetd.conf.O > /etc/inetd.conf
11 echo '#SWAT services' >> /etc/inetd.conf
12 echo swat stream tcp nowait root /usr/samba/bin/swat swat >> /etc/inetd.conf
H A Dremoveswat.sh3 # remove SWAT deamon from inetd.conf
5 cp /etc/inetd.conf /etc/inetd.conf.O
8 if [ ! -r /etc/inetd.conf.O -o ! -w /etc/inetd.conf ]; then exit 1; fi
10 sed -e "/^swat/D" -e "/^#SWAT/D" /etc/inetd.conf.O > /etc/inetd.conf
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/evp/
H A Devp_acnf.c61 #include <openssl/conf.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/evp/
H A Devp_acnf.c61 #include <openssl/conf.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sched/
H A Dem_text.c52 struct tcf_em_text *conf = data; local
56 if (len < sizeof(*conf) || len < (sizeof(*conf) + conf->pattern_len))
59 if (conf->from_layer > conf->to_layer)
62 if (conf->from_layer == conf->to_layer &&
63 conf->from_offset > conf
111 struct tcf_em_text conf; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dxt_string.c33 const struct xt_string_info *conf = matchinfo; local
38 return (skb_find_text((struct sk_buff *)skb, conf->from_offset,
39 conf->to_offset, conf->config, &state)
40 != UINT_MAX) ^ conf->invert;
51 struct xt_string_info *conf = matchinfo; local
55 if (conf->from_offset > conf->to_offset)
57 if (conf->algo[XT_STRING_MAX_ALGO_NAME_SIZE - 1] != '\0')
59 if (conf
[all...]

Completed in 191 milliseconds

1234567891011>>