Searched refs:string (Results 1 - 25 of 6011) sorted by relevance

1234567891011>>

/freebsd-9.3-release/include/
H A Dmemory.h34 #include <string.h>
/freebsd-9.3-release/cddl/lib/libdtrace/
H A Dnet.d40 string ci_local; /* local host address */
41 string ci_remote; /* remote host address */
42 string ci_protocol; /* protocol (ipv4, ipv6, etc) */
/freebsd-9.3-release/contrib/groff/src/include/
H A Dstringclass.h21 #include <string.h>
28 class string;
30 inline string operator+(const string &, const string &);
31 inline string operator+(const string &, const char *);
32 inline string operator+(const char *, const string &);
33 inline string operato
38 class string { class
[all...]
/freebsd-9.3-release/contrib/texinfo/lib/
H A Dxstrdup.c1 /* xstrdup.c -- copy a string with out of memory checking
25 #include <string.h>
30 xstrdup (const char *string) argument
32 return strcpy (xmalloc (strlen (string) + 1), string);
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetOptions.h20 #include <string>
30 std::string Triple;
33 std::string CPU;
36 std::string FPMath;
39 std::string ABI;
43 std::string CXXABI;
45 /// If given, the version string of the linker in use.
46 std::string LinkerVersion;
49 std::vector<std::string> FeaturesAsWritten;
53 std::vector<std::string> Feature
[all...]
H A DFileSystemOptions.h18 #include <string>
27 std::string WorkingDir;
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DErrno.h17 #include <string>
22 /// Returns a string representation of the errno value, using whatever
26 std::string StrError();
29 std::string StrError(int errnum);
/freebsd-9.3-release/contrib/groff/src/preproc/refer/
H A Drefer.h39 extern string capitalize_fields;
40 extern string reverse_fields;
41 extern string abbreviate_fields;
42 extern string period_before_last_name;
43 extern string period_before_initial;
44 extern string period_before_hyphen;
45 extern string period_before_other;
46 extern string sort_fields;
48 extern string annotation_macro;
49 extern string discard_field
[all...]
H A Dcommand.h22 void process_commands(string &s, const char *file, int lineno);
31 extern string pre_label;
32 extern string post_label;
33 extern string sep_label;
/freebsd-9.3-release/contrib/gperf/lib/
H A Dhash.h13 extern unsigned int hashpjw (const unsigned char *string, unsigned int len);
/freebsd-9.3-release/usr.sbin/rpc.yppasswdd/
H A Dyppasswd_private.x43 string pw_name<>; /* username */
44 string pw_passwd<>; /* encrypted password */
48 string pw_class<>; /* user access class */
49 string pw_gecos<>; /* in real life name */
50 string pw_dir<>; /* home directory */
51 string pw_shell<>; /* default shell */
59 string oldpass<>; /* unencrypted old password */
60 string domain<_YPMAXDOMAIN>; /* domain we want to operate on */
/freebsd-9.3-release/lib/libc/posix1e/
H A Dextattr.c38 #include <string.h>
41 extattr_namespace_to_string(int attrnamespace, char **string) argument
46 if (string != NULL)
47 *string = strdup(EXTATTR_NAMESPACE_USER_STRING);
51 if (string != NULL)
52 *string = strdup(EXTATTR_NAMESPACE_SYSTEM_STRING);
62 extattr_string_to_namespace(const char *string, int *attrnamespace) argument
65 if (!strcmp(string, EXTATTR_NAMESPACE_USER_STRING)) {
69 } else if (!strcmp(string, EXTATTR_NAMESPACE_SYSTEM_STRING)) {
/freebsd-9.3-release/lib/libmd/
H A Drmddriver.c21 #include <string.h>
25 /* Digests a string and prints the result. */
27 RIPEMD160String(char *string) argument
32 string, RIPEMD160_Data(string, strlen(string), buf));
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_tputs.c121 putp(const char *string) argument
123 return tputs(string, 1, _nc_outch);
127 tputs(const char *string, int affcnt, int (*outc) (int)) argument
146 _nc_visbuf(string), affcnt, addrbuf);
148 _tracef("tputs(%s, %d, %s) called", _nc_visbuf(string), affcnt, addrbuf);
155 if (!VALID_STRING(string))
162 always_delay = (string == bell) || (string == flash_screen);
178 if (isdigit(UChar(*string))) {
179 while (isdigit(UChar(*string))) {
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/XCore/
H A DXCoreSubtarget.cpp26 XCoreSubtarget::XCoreSubtarget(const std::string &TT,
27 const std::string &CPU, const std::string &FS)
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dfnmatch.c49 #include <string.h>
56 rk_fnmatch(const char *pattern, const char *string, int flags) argument
61 for (stringstart = string;;)
64 return (*string == EOS ? 0 : FNM_NOMATCH);
66 if (*string == EOS)
68 if (*string == '/' && (flags & FNM_PATHNAME))
70 if (*string == '.' && (flags & FNM_PERIOD) &&
71 (string == stringstart ||
72 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
74 ++string;
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dputenv.c21 @deftypefn Supplemental int putenv (const char *@var{string})
23 Uses @code{setenv} or @code{unsetenv} to put @var{string} into
24 the environment or remove it. If @var{string} is of the form
25 @samp{name=value} the string is added; if no @samp{=} is present the
48 # include <string.h>
70 putenv (const char *string) argument
72 const char *const name_end = strchr (string, '=');
76 char *name = (char *) alloca (name_end - string + 1);
77 memcpy (name, string, name_end - string);
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dputenv.c21 @deftypefn Supplemental int putenv (const char *@var{string})
23 Uses @code{setenv} or @code{unsetenv} to put @var{string} into
24 the environment or remove it. If @var{string} is of the form
25 @samp{name=value} the string is added; if no @samp{=} is present the
48 # include <string.h>
70 putenv (const char *string) argument
72 const char *const name_end = strchr (string, '=');
76 char *name = (char *) alloca (name_end - string + 1);
77 memcpy (name, string, name_end - string);
[all...]
/freebsd-9.3-release/share/examples/sunrpc/msg/
H A Dmsg.x7 int PRINTMESSAGE(string) = 1;
/freebsd-9.3-release/usr.bin/csup/
H A Dfnmatch.c48 #include <string.h>
58 fnmatch(const char *pattern, const char *string, int flags) argument
63 for (stringstart = string;;)
66 if ((flags & FNM_LEADING_DIR) && *string == '/')
68 return (*string == EOS ? 0 : FNM_NOMATCH);
70 if (*string == EOS)
72 if (*string == '/' && (flags & FNM_PATHNAME))
74 if (*string == '.' && (flags & FNM_PERIOD) &&
75 (string == stringstart ||
76 ((flags & FNM_PATHNAME) && *(string
[all...]
/freebsd-9.3-release/sys/libkern/
H A Dfnmatch.c54 fnmatch(const char *pattern, const char *string, int flags) argument
60 for (stringstart = string;;)
63 if ((flags & FNM_LEADING_DIR) && *string == '/')
65 return (*string == EOS ? 0 : FNM_NOMATCH);
67 if (*string == EOS)
69 if (*string == '/' && (flags & FNM_PATHNAME))
71 if (*string == '.' && (flags & FNM_PERIOD) &&
72 (string == stringstart ||
73 ((flags & FNM_PATHNAME) && *(string - 1) == '/')))
75 ++string;
[all...]
/freebsd-9.3-release/cddl/compat/opensolaris/include/
H A Dstrings.h35 #include <string.h>
/freebsd-9.3-release/contrib/libstdc++/include/c/
H A Dstd_cstring.h39 #include_next <string.h>
/freebsd-9.3-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430Subtarget.cpp26 MSP430Subtarget::MSP430Subtarget(const std::string &TT,
27 const std::string &CPU,
28 const std::string &FS) :
30 std::string CPUName = "generic";
32 // Parse features string.
H A DMSP430Subtarget.h18 #include <string>
33 MSP430Subtarget(const std::string &TT, const std::string &CPU,
34 const std::string &FS);
36 /// ParseSubtargetFeatures - Parses features string setting specified

Completed in 183 milliseconds

1234567891011>>