Searched refs:str (Results 1 - 25 of 2265) sorted by relevance

1234567891011>>

/freebsd-10-stable/crypto/openssl/ssl/
H A Dssl_stat.c90 const char *str; local
94 str = "before SSL initialization";
97 str = "before accept initialization";
100 str = "before connect initialization";
103 str = "SSL negotiation finished successfully";
106 str = "SSL renegotiate ciphers";
109 str = "before/connect initialization";
112 str = "ok/connect SSL initialization";
115 str = "before/accept initialization";
118 str
466 const char *str; local
487 const char *str; local
857 const char *str; local
959 const char *str; local
1061 const char *str; local
[all...]
/freebsd-10-stable/sys/cddl/compat/opensolaris/sys/
H A Drefstr.h32 #define refstr_value(str) (str)
/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Dstrsep.c43 strsep(char **str, const char *delim) argument
45 char *save = *str;
46 if(*str == NULL)
48 *str = *str + strcspn(*str, delim);
49 if(**str == 0)
50 *str = NULL;
52 **str = 0;
53 (*str)
[all...]
H A Dstrlwr.c42 strlwr(char *str) argument
46 for(s = str; *s; s++)
48 return str;
H A Dstrupr.c42 strupr(char *str) argument
46 for(s = str; *s; s++)
48 return str;
H A Dstrpool.c41 char *str; member in struct:rk_strpool
52 if (p->str) {
53 free(p->str);
54 p->str = NULL;
67 char *str, *str2; local
74 p->str = NULL;
78 len = vasprintf(&str, fmt, ap);
80 if (str == NULL) {
84 str2 = realloc(p->str, len + p->len + 1);
89 p->str
103 char *str; local
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DProcessMessage.cpp18 inline void AppendFaultAddr(std::string& str, lldb::addr_t addr) argument
22 str += ss.str();
30 static std::string str; local
39 str = "invalid address";
40 AppendFaultAddr(str, fault_addr);
43 str = "address access protected";
44 AppendFaultAddr(str, fault_addr);
47 str = "illegal instruction";
50 str
113 chcar str[8]; local
211 chcar str[8]; local
[all...]
/freebsd-10-stable/contrib/xz/src/xz/
H A Doptions.h17 extern lzma_options_delta *options_delta(const char *str);
24 extern lzma_options_bcj *options_bcj(const char *str);
31 extern lzma_options_lzma *options_lzma(const char *str);
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.strstr.d33 str = "foobarbarbazbarbop";
36 c = str;
37 printf("strstr(\"%s\", \"%s\") = \"%s\"\n", str, c, strstr(str, c));
40 printf("strstr(\"%s\", \"%s\") = \"%s\"\n", str, c, strstr(str, c));
43 printf("strstr(\"%s\", \"%s\") = \"%s\"\n", str, c, strstr(str, c));
46 printf("strstr(\"%s\", \"%s\") = \"%s\"\n", str, c, strstr(str,
[all...]
H A Dtst.strchr.d33 str = "fooeyfooeyfoo";
37 printf("strchr(\"%s\", '%c') = \"%s\"\n", str, c, strchr(str, c));
38 printf("strrchr(\"%s\", '%c') = \"%s\"\n", str, c, strrchr(str, c));
41 printf("strchr(\"%s\", '%c') = \"%s\"\n", str, c, strchr(str, c));
42 printf("strrchr(\"%s\", '%c') = \"%s\"\n", str, c, strrchr(str, c));
44 printf("strrchr(\"%s\", '%c') = \"%s\"\n", strchr(str,
[all...]
/freebsd-10-stable/usr.sbin/pkg_install/lib/
H A Dstr.c40 get_dash_string(char **str) argument
42 char *s = *str;
45 *str = copy_string_adds_newline(s + 1);
47 *str = fileGetContents(s);
48 return *str;
53 copy_string(const char *str) argument
55 return (str ? strdup(str) : NULL);
60 copy_string_adds_newline(const char *str) argument
62 if (str
81 suffix(const char *str, const char *suff) argument
94 nuke_suffix(char *str) argument
105 str_lowercase(char *str) argument
114 get_string(char *str, int max, FILE *fp) argument
[all...]
/freebsd-10-stable/contrib/apr/strings/
H A Dapr_strtok.c27 APR_DECLARE(char *) apr_strtok(char *str, const char *sep, char **last) argument
31 if (!str) /* subsequent call */
32 str = *last; /* start where we left off */
35 while (*str && strchr(sep, *str))
36 ++str;
38 if (!*str) /* no more tokens */
41 token = str;
/freebsd-10-stable/contrib/libstdc++/libsupc++/
H A Dpure.cc37 # define writestr(str) write(2, str, sizeof(str) - 1)
45 # define writestr(str) std::fputs(str, stderr)
48 # define writestr(str) /* Empty */
/freebsd-10-stable/lib/libc/stdlib/
H A Datoi.c45 atoi(str)
46 const char *str;
48 return (int)strtol(str, (char **)NULL, 10);
52 atoi_l(str, locale)
53 const char *str;
56 return (int)strtol_l(str, (char **)NULL, 10, locale);
H A Datol.c45 atol(str)
46 const char *str;
48 return strtol(str, (char **)NULL, 10);
52 atol_l(str, locale)
53 const char *str;
56 return strtol_l(str, (char **)NULL, 10, locale);
H A Datoll.c42 atoll(str)
43 const char *str;
45 return strtoll(str, (char **)NULL, 10);
49 atoll_l(str, locale)
50 const char *str;
53 return strtoll_l(str, (char **)NULL, 10, locale);
/freebsd-10-stable/sbin/dump/
H A Dunctime.c47 unctime(char *str) argument
51 str = strptime(str, "%a %b %e %T %Y", &then);
52 if (str == NULL || (*str != '\n' && *str != '\0'))
/freebsd-10-stable/contrib/groff/src/libs/libgroff/
H A Dstrtol.c47 long strtol(str, ptr, base)
48 char *str, **ptr;
51 char *start = str;
57 while (ISASCII((unsigned char)*str) && isspace((unsigned char)*str))
58 str++;
60 if (*str == '-') {
62 str++;
65 if (*str == '0') {
66 if (str[
[all...]
/freebsd-10-stable/contrib/sendmail/libsm/
H A Dmatch.c20 ** str -- string.
21 ** par -- pattern to find in str.
45 sm_match(str, pat)
46 const char *str;
58 return *str == '\0';
60 if (*str == '\0')
63 ++str;
74 if (sm_match(pat, str))
76 if (*str == '\0')
78 ++str;
[all...]
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.shortstr.d34 this->str = ",,,Carrots,,Barley,Oatmeal,,,,,,,,,,,,,,,,,,Beans,";
39 strtok(this->str, ",");
44 this->str = ",,,,,,,,,,,,,,,,,,,,,,Carrots,";
45 strtok(this->str, ",");
50 strtok(this->str, "a");
55 printf("%s\n", substr(this->str, 1, 40));
60 printf("%s\n", strjoin(this->str, this->str));
66 printf("%d\n", index(this->str, this->str1));
71 printf("%d\n", rindex(this->str, thi
[all...]
/freebsd-10-stable/cddl/contrib/opensolaris/common/ctf/
H A Dctf_error.c86 const char *str; local
89 str = _ctf_errlist[error - ECTF_BASE];
91 str = ctf_strerror(error);
93 return (str ? str : "Unknown error");
/freebsd-10-stable/lib/libnetbsd/
H A Dutil.c44 char *str; local
46 str = fflagstostr(flags);
47 if (*str == '\0') {
48 free(str);
49 str = strdup(def);
51 return (str);
/freebsd-10-stable/contrib/ncurses/ncurses/base/
H A Ddefine_key.c38 define_key(const char *str, int keycode) argument
42 T((T_CALLED("define_key(%s,%d)"), _nc_visbuf(str), keycode));
48 if (str != 0) {
49 define_key(str, 0);
54 if (str != 0) {
55 if (key_defined(str) == 0) {
56 if (_nc_add_to_try(&(SP->_keytry), str, ukey) == OK) {
66 while (_nc_remove_string(&(SP->_keytry), str))
/freebsd-10-stable/lib/libc/locale/
H A Dfix_grouping.c44 __fix_locale_grouping_str(const char *str) argument
49 if (str == NULL || *str == '\0') {
53 for (src = (char*)str, dst = (char*)str; *src != '\0'; src++) {
81 return (dst == (char*)str) ? nogrouping : str;
85 return str;
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_read_set_format.c41 char str[10]; local
53 strcpy(str, "7zip");
56 strcpy(str, "ar");
59 strcpy(str, "cab");
62 strcpy(str, "cpio");
65 strcpy(str, "empty");
68 strcpy(str, "iso9660");
71 strcpy(str, "lha");
74 strcpy(str, "mtree");
77 strcpy(str, "ra
[all...]

Completed in 154 milliseconds

1234567891011>>