HomeSort by: relevance | last modified time | path
    Searched refs:strstr (Results 1 - 25 of 976) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
strstr.h 20 strstr() that would collide with our definition if included afterwards. */
27 /* No known system has a strstr() function that works correctly in
29 #undef strstr macro
30 #define strstr rpl_strstr macro
33 extern char *strstr (const char *haystack, const char *needle);
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
strstr.h 20 strstr() that would collide with our definition if included afterwards. */
27 /* No known system has a strstr() function that works correctly in
29 #undef strstr macro
30 #define strstr rpl_strstr macro
33 extern char *strstr (const char *haystack, const char *needle);
  /src/external/gpl2/xcvs/dist/lib/
strstr.h 20 strstr() that would collide with our definition if included afterwards. */
27 /* No known system has a strstr() function that works correctly in
29 #undef strstr macro
30 #define strstr rpl_strstr macro
33 extern char *strstr (const char *haystack, const char *needle);
  /src/external/gpl3/gcc/dist/gcc/config/mips/
driver-native.cc 68 if (strstr (buf, "Godson2 V0.2") != NULL
69 || strstr (buf, "Loongson-2 V0.2") != NULL
70 || strstr (buf, "Loongson-2E") != NULL)
72 else if (strstr (buf, "Godson2 V0.3") != NULL
73 || strstr (buf, "Loongson-2 V0.3") != NULL
74 || strstr (buf, "Loongson-2F") != NULL)
76 else if (strstr (buf, "Godson3 V0.5") != NULL
77 || strstr (buf, "Loongson-3 V0.5") != NULL
78 || strstr (buf, "Loongson-3A") != NULL)
80 else if (strstr (buf, "SiByte SB1") != NULL
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/mips/
driver-native.cc 62 if (strstr (buf, "Godson2 V0.2") != NULL
63 || strstr (buf, "Loongson-2 V0.2") != NULL
64 || strstr (buf, "Loongson-2E") != NULL)
66 else if (strstr (buf, "Godson2 V0.3") != NULL
67 || strstr (buf, "Loongson-2 V0.3") != NULL
68 || strstr (buf, "Loongson-2F") != NULL)
70 else if (strstr (buf, "Godson3 V0.5") != NULL
71 || strstr (buf, "Loongson-3 V0.5") != NULL
72 || strstr (buf, "Loongson-3A") != NULL)
74 else if (strstr (buf, "SiByte SB1") != NULL
    [all...]
  /src/sys/arch/sparc/stand/common/
isfloppy.c 8 strstr(dev, "SUNW,fdtwo") != NULL ||
9 strstr(dev, "fdthree") != NULL;
  /src/external/mit/libuv/dist/test/
test-dlerror.c 38 ASSERT_NOT_NULL(strstr(msg, dlerror_no_error));
47 if (NULL == strstr(msg, "Dynamic loading not supported"))
48 ASSERT_NOT_NULL(strstr(msg, path));
50 ASSERT_NULL(strstr(msg, dlerror_no_error));
57 if (NULL == strstr(msg, "Dynamic loading not supported"))
58 ASSERT_NOT_NULL(strstr(msg, path));
60 ASSERT_NULL(strstr(msg, dlerror_no_error));
test-error.c 53 ASSERT_NULL(strstr(uv_strerror(UV_EINVAL), "Success"));
57 ASSERT_NULL(strstr(uv_strerror_r(UV_EINVAL, buf, sizeof(buf)), "Success"));
58 ASSERT_NOT_NULL(strstr(uv_strerror_r(1337, buf, sizeof(buf)), "1337"));
59 ASSERT_NOT_NULL(strstr(uv_strerror_r(-1337, buf, sizeof(buf)), "-1337"));
  /src/external/bsd/libarchive/dist/cpio/test/
test_option_zstd.c 24 if (strstr(p, "Unsupported compression") != NULL) {
33 if (strstr(p, "Can't launch") != NULL && !canZstd()) {
42 if (strstr(p, "Can't write") != NULL && !canZstd()) {
49 if (strstr(p, "Error closing") != NULL && !canZstd()) {
test_option_lz4.c 24 if (strstr(p, "compression not available") != NULL) {
34 if (strstr(p, "Can't launch") != NULL && !canLz4()) {
44 if (strstr(p, "Can't write") != NULL && !canLz4()) {
52 if (strstr(p, "Error closing") != NULL && !canLz4()) {
  /src/external/bsd/libarchive/dist/tar/test/
test_option_lz4.c 24 if (strstr(p, "Unsupported compression") != NULL) {
33 if (strstr(p, "Can't launch") != NULL && !canLz4()) {
42 if (strstr(p, "Can't write") != NULL && !canLz4()) {
49 if (strstr(p, "Error closing") != NULL && !canLz4()) {
test_option_zstd.c 24 if (strstr(p, "Unsupported compression") != NULL) {
33 if (strstr(p, "Can't launch") != NULL && !canZstd()) {
42 if (strstr(p, "Can't write") != NULL && !canZstd()) {
49 if (strstr(p, "Error closing") != NULL && !canZstd()) {
test_leading_slash.c 27 assert(strstr(errfile, expected_errmsg) != NULL);
  /src/tests/lib/libc/string/
t_strerror.c 52 ATF_REQUIRE(strstr(strerror(i), "Unknown error:") == NULL);
55 ATF_REQUIRE(strstr(strerror(i), "Unknown error:") != NULL);
69 ATF_REQUIRE(strstr(strerror(INT_MAX), "Unknown error:") != NULL);
74 ATF_REQUIRE(strstr(strerror(INT_MIN), "Unknown error:") != NULL);
91 ATF_REQUIRE(strstr(buf, "Unknown error:") == NULL);
96 ATF_REQUIRE(strstr(buf, "Unknown error:") != NULL);
117 ATF_REQUIRE(strstr(buf, "Unknown error:") != NULL);
122 ATF_REQUIRE(strstr(buf, "Unknown error:") != NULL);
  /src/tests/rump/rumpkern/
t_modlinkset.c 64 ATF_CHECK((strstr(buf, "msdos") != NULL));
65 ATF_CHECK((strstr(buf, "cd9660") != NULL));
  /src/external/bsd/ntp/dist/sntp/tests/
t-log.c 76 char* x = strstr(line,testName);
80 x = strstr(line,testString);
  /src/external/gpl3/binutils/dist/libiberty/
strstr.c 1 /* Simple implementation of strstr for systems without it.
6 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
26 strstr (const char *s1, const char *s2) function
  /src/external/gpl3/binutils.old/dist/libiberty/
strstr.c 1 /* Simple implementation of strstr for systems without it.
6 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
26 strstr (const char *s1, const char *s2) function
  /src/external/gpl3/gcc/dist/libiberty/
strstr.c 1 /* Simple implementation of strstr for systems without it.
6 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
26 strstr (const char *s1, const char *s2) function
  /src/external/gpl3/gcc.old/dist/libiberty/
strstr.c 1 /* Simple implementation of strstr for systems without it.
6 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
26 strstr (const char *s1, const char *s2) function
  /src/external/gpl3/gdb/dist/libiberty/
strstr.c 1 /* Simple implementation of strstr for systems without it.
6 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
26 strstr (const char *s1, const char *s2) function
  /src/external/gpl3/gdb.old/dist/libiberty/
strstr.c 1 /* Simple implementation of strstr for systems without it.
6 @deftypefn Supplemental char* strstr (const char *@var{string}, const char *@var{sub})
26 strstr (const char *s1, const char *s2) function
  /src/usr.sbin/sysinst/arch/atari/
md.c 66 if (strstr(instsys.version, "(ATARITT"))
68 else if (strstr(instsys.version, "(FALCON"))
70 else if (strstr(instsys.version, "(SMALL030"))
72 else if (strstr(instsys.version, "(HADES"))
74 else if (strstr(instsys.version, "(MILAN-ISAIDE"))
76 else if (strstr(instsys.version, "(MILAN-PCIIDE"))
150 if (strstr(cpu_model, "Milan") != NULL)
  /src/external/gpl3/binutils/dist/opcodes/
ia64-gen.c 719 if ((notestr = strstr (name, "+")) != NULL)
893 return ((op == IA64_OPND_RR_R3 && strstr (field, "rr"))
894 || (op == IA64_OPND_DBR_R3 && strstr (field, "dbr"))
895 || (op == IA64_OPND_IBR_R3 && strstr (field, "ibr"))
896 || (op == IA64_OPND_PKR_R3 && strstr (field, "pkr"))
897 || (op == IA64_OPND_PMC_R3 && strstr (field, "pmc"))
898 || (op == IA64_OPND_PMD_R3 && strstr (field, "pmd"))
899 || (op == IA64_OPND_MSR_R3 && strstr (field, "msr"))
900 || (op == IA64_OPND_CPUID_R3 && strstr (field, "cpuid"))
901 || (op == IA64_OPND_DAHR_R3 && strstr (field, "dahr")))
    [all...]
  /src/external/gpl3/binutils.old/dist/opcodes/
ia64-gen.c 719 if ((notestr = strstr (name, "+")) != NULL)
893 return ((op == IA64_OPND_RR_R3 && strstr (field, "rr"))
894 || (op == IA64_OPND_DBR_R3 && strstr (field, "dbr"))
895 || (op == IA64_OPND_IBR_R3 && strstr (field, "ibr"))
896 || (op == IA64_OPND_PKR_R3 && strstr (field, "pkr"))
897 || (op == IA64_OPND_PMC_R3 && strstr (field, "pmc"))
898 || (op == IA64_OPND_PMD_R3 && strstr (field, "pmd"))
899 || (op == IA64_OPND_MSR_R3 && strstr (field, "msr"))
900 || (op == IA64_OPND_CPUID_R3 && strstr (field, "cpuid"))
901 || (op == IA64_OPND_DAHR_R3 && strstr (field, "dahr")))
    [all...]

Completed in 42 milliseconds

1 2 3 4 5 6 7 8 91011>>