Searched refs:str (Results 251 - 275 of 3737) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/pem/
H A Dpem.h214 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
215 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
216 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
217 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
218 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
221 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
224 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \
227 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
230 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \
233 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/pem/
H A Dpem.h214 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
215 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
216 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
217 # define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
218 # define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
221 # define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
224 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \
227 # define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
230 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \
233 # define IMPLEMENT_PEM_write_fp_const(name, type, str, asn
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/asn1/
H A Dasn1_lib.c332 int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str) argument
334 if (str == NULL)
336 dst->type = str->type;
337 if (!ASN1_STRING_set(dst, str->data, str->length))
339 dst->flags = str->flags;
343 ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *str) argument
346 if (!str)
351 if (!ASN1_STRING_copy(ret, str)) {
358 int ASN1_STRING_set(ASN1_STRING *str, cons argument
391 ASN1_STRING_set0(ASN1_STRING *str, void *data, int len) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/asn1/
H A Dasn1_lib.c332 int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str) argument
334 if (str == NULL)
336 dst->type = str->type;
337 if (!ASN1_STRING_set(dst, str->data, str->length))
339 dst->flags = str->flags;
343 ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *str) argument
346 if (!str)
351 if (!ASN1_STRING_copy(ret, str)) {
358 int ASN1_STRING_set(ASN1_STRING *str, cons argument
391 ASN1_STRING_set0(ASN1_STRING *str, void *data, int len) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/udev/extras/volume_id/lib/
H A Dutil.c32 static int utf8_encoded_expected_len(const char *str) argument
34 unsigned char c = (unsigned char)str[0];
52 static int utf8_encoded_to_unichar(const char *str) argument
58 len = utf8_encoded_expected_len(str);
61 return (int)str[0];
63 unichar = str[0] & 0x1f;
66 unichar = (int)str[0] & 0x0f;
69 unichar = (int)str[0] & 0x07;
72 unichar = (int)str[0] & 0x03;
75 unichar = (int)str[
122 volume_id_utf8_encoded_valid_unichar(const char *str) argument
154 volume_id_set_unicode16(uint8_t *str, size_t len, const uint8_t *buf, enum endian endianess, size_t count) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/bftpd-1.6.6/
H A Doptions.c26 static char str[256]; local
27 char *s = str;
28 if (!fgets(str, sizeof(str), configfile))
33 str[0] = 0; // So we empty the string in order not to confuse the parser.
34 return str;
39 s = str;
47 char *str; local
50 str = config_read_line(configfile);
51 while (!strchr(str, '}')) {
143 char *str; local
[all...]
H A Dcommands_admin.c143 int admin_parsecmd(char *str) argument
147 str[strlen(str) - 2] = '\0'; /* Remove \r\n */
148 p = pp = str; /* Remove garbage in the string */
156 if (!strncasecmp(str, admin_commands[i].name, strlen(admin_commands[i].name))) {
157 cutto(str, strlen(admin_commands[i].name));
158 p = str;
161 memmove(str, p, strlen(str) - (p - str)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/util/pl/
H A Dunix.pl186 my ($str, $tests) = @_;
190 $str =~ s/(\.\/)?\$\($t\)/\$(TEST_D)\/$tests->{$t}/g;
193 return $str;
198 my ($str, $fakes) = @_;
200 my @t = split(/\s+/, $str);
201 $str = '';
204 $str .= ' ' if $str ne '';
207 $str .= $fakes->{$t};
212 $str
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/regex/
H A Dregextest.cpp84 wxString Conv(const char *str);
166 wxString RegExTestCase::Conv(const char *str) argument
168 const wxWCharBuffer wstr = wxConvUTF8.cMB2WC(str);
299 wxString str; local
302 str << (wxChar)m_mode << _T(" ") << m_id << _T(" ") << m_flags << _T(" ")
306 str << _T(" ") << quote(*it);
308 if (str.length() > 77)
309 str = str.substr(0, 74) + _T("...");
311 str << _
323 wxString str; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/util/pl/
H A Dunix.pl186 my ($str, $tests) = @_;
190 $str =~ s/(\.\/)?\$\($t\)/\$(TEST_D)\/$tests->{$t}/g;
193 return $str;
198 my ($str, $fakes) = @_;
200 my @t = split(/\s+/, $str);
201 $str = '';
204 $str .= ' ' if $str ne '';
207 $str .= $fakes->{$t};
212 $str
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Diri.c53 parse_charset (char *str) argument
57 if (!str || !*str)
60 str = strcasestr (str, "charset=");
61 if (!str)
64 str += 8;
65 charset = str;
72 charset = strdupdelim (str, charset);
120 /* Try converting string str fro
123 locale_to_utf8(const char *str) argument
266 remote_to_utf8(struct iri *i, const char *str, const char **new) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/init/
H A Ddo_mounts_md.c53 static int __init md_setup(char *str) argument
60 if (*str == 'd') {
62 str++;
64 if (get_option(&str, &minor) != 2) { /* MD Number */
68 str1 = str;
82 switch (get_option(&str, &level)) { /* RAID level */
85 if (get_option(&str, &factor) != 2 || /* Chunk Size */
86 get_option(&str, &fault) != 2) {
100 str = str1;
108 minor, pername, str);
243 raid_setup(char *str) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/confuse-2.7/src/
H A Dlexer.l33 # define _(str) dgettext(PACKAGE, str)
35 # define _(str) str
37 #define N_(str) str
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/script/
H A Dgap.awk11 function tonum(str)
15 while (cnt <= length(str)) {
17 num += hv[substr(str,cnt,1)];
H A Dgaptab.awk11 function tonum(str)
15 while (cnt <= length(str)) {
17 num += hv[substr(str,cnt,1)];
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/iodbc/
H A Dmisc.c76 static char * /* return new position in input str */
260 char *str; local
262 str = fgets (buf, sizeof (buf), file);
264 if (str == NULL)
269 if (*str == '[')
271 if (upper_strneq (str, "[default]", STRLEN ("[default]")))
288 else if (upper_strneq (str, dsntk, dsnlen))
304 str = readtoken (str, token);
308 str
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/flex/
H A Dsym.c154 /* hashfunct - compute the hash value for "str" and hash size "hash_size" */
156 int hashfunct( str, hash_size )
157 register char str[];
166 while ( str[locstr] )
168 hashval = (hashval << 1) + (unsigned char) str[locstr++];
226 void scinstal( str, xcluflg )
227 char str[];
233 action_define( str, lastsc );
238 scname[lastsc] = copy_string( str );
244 str );
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DLoggerConsole.cpp56 const wxString &str,
66 line, s.c_str(), (const char *)unicode2char(str));
83 line, s.c_str(), msg.str().c_str());
51 AddLogLine( const wxString &file, int line, bool critical, DebugType , const wxString &str, bool , bool ) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/mti-malta/
H A Dmalta-display.c31 void mips_display_message(const char *str) argument
40 if (*str)
41 __raw_writel(*str++, display + i);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/security/selinux/
H A Dexports.c28 int selinux_string_to_sid(char *str, u32 *sid) argument
31 return security_context_to_sid(str, strlen(str), sid);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/
H A Dbuiltin-probe.c62 static int parse_probe_event(const char *str) argument
67 pr_debug("probe-definition(%d): %s\n", params.nevents, str);
74 ret = parse_perf_probe_command(str, pev);
101 const char *str, int unset __used)
103 if (str)
104 return parse_probe_event(str);
110 const char *str, int unset __used)
112 if (str) {
115 strlist__add(params.dellist, str);
122 const char *str, in
100 opt_add_probe_event(const struct option *opt __used, const char *str, int unset __used) argument
109 opt_del_probe_event(const struct option *opt __used, const char *str, int unset __used) argument
121 opt_show_lines(const struct option *opt __used, const char *str, int unset __used) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/common/
H A Dtuklib_mbstr_width.c21 tuklib_mbstr_width(const char *str, size_t *bytes) argument
23 const size_t len = strlen(str);
43 const size_t ret = mbrtowc(&wc, str + i, len - i, &state);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Davstring.c29 int av_strstart(const char *str, const char *pfx, const char **ptr) argument
31 while (*pfx && *pfx == *str) {
33 str++;
36 *ptr = str;
40 int av_stristart(const char *str, const char *pfx, const char **ptr) argument
42 while (*pfx && toupper((unsigned)*pfx) == toupper((unsigned)*str)) {
44 str++;
47 *ptr = str;
96 char *str= av_malloc(16); local
97 if(str) snprint
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/flex/
H A Dsym.c154 /* hashfunct - compute the hash value for "str" and hash size "hash_size" */
156 int hashfunct( str, hash_size )
157 register char str[];
166 while ( str[locstr] )
168 hashval = (hashval << 1) + (unsigned char) str[locstr++];
226 void scinstal( str, xcluflg )
227 char str[];
233 action_define( str, lastsc );
238 scname[lastsc] = copy_string( str );
244 str );
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/common/
H A Dtuklib_mbstr_width.c21 tuklib_mbstr_width(const char *str, size_t *bytes) argument
23 const size_t len = strlen(str);
43 const size_t ret = mbrtowc(&wc, str + i, len - i, &state);

Completed in 194 milliseconds

<<11121314151617181920>>