Searched refs:strstr (Results 1 - 25 of 86) sorted by relevance

1234

/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dparse_duckduckgo_html.c59 if (strstr(html, "<!DOCTYPE html PUBLIC") != html) {
63 p = strstr(html, "DuckDuckGo");
66 p = strstr(html, "<body");
71 p = strstr(html, "Search Results<");
102 p = strstr(p, G_BEGIN_URL);
106 nextresult = strstr(p, G_BEGIN_URL);
109 p = strstr(p, G_END_URL);
122 p = strstr(p, G_END_NAME);
137 while ((tmp = strstr(q, "<b>")))
139 while ((tmp = strstr(
[all...]
/haiku/src/apps/cortex/addons/Flanger/
H A DFlangerApp.cpp43 if(argc < 2 || strstr(argv[1], "node=") != argv[1]) {
/haiku/src/apps/cortex/addons/LoggingConsumer/
H A DLoggingConsumerApp.cpp48 if(argc < 2 || strstr(argv[1], "node=") != argv[1]) {
/haiku/src/system/libroot/posix/string/
H A Dstrstr.c10 strstr(const char *s1, const char *s2) function
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DDemuxerTable.cpp27 if (strstr(format->name, demuxerFormat->short_name) != NULL)
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DAPELink.cpp58 char * pHeader = strstr(pData, APE_LINK_HEADER);
59 char * pImageFile = strstr(pData, APE_LINK_IMAGE_FILE_TAG);
60 char * pStartBlock = strstr(pData, APE_LINK_START_BLOCK_TAG);
61 char * pFinishBlock = strstr(pData, APE_LINK_FINISH_BLOCK_TAG);
/haiku/src/tests/add-ons/print/ppd/model/
H A DStatementWrapper.cpp54 return strstr(GetKeyword(), kJCL) == GetKeyword();
115 if (strstr(type, "PickOne") != NULL) return kPickOne;
116 if (strstr(type, "PickMany") != NULL) return kPickMany;
117 if (strstr(type, "Boolean") != NULL) return kBoolean;
/haiku/src/tools/
H A Dexec.c109 if (argsLen == 0 && (val = strstr(currentArg, "=")) != NULL) {
116 dollar = strstr(val, "$");
/haiku/src/tests/servers/app/code_to_name/
H A Dcode_to_name.cpp101 if (strstr(path.Path(), "headers/private/app/ServerProtocol.h") != NULL) {
/haiku/src/libs/mapm/
H A Dmapmgues.c171 if ((cp = strstr(buf, "E")) == NULL)
/haiku/src/bin/
H A Dlistarea.c82 if (strstr(info.args, name) != NULL)
H A Dlistimage.c89 if (strstr(info.args, arg)) {
H A Dshutdown.cpp132 if (strstr(teamInfo.args, "shutdown") != NULL
H A Dtrash.cpp159 if (strstr(argv[0], "untrash") || strstr(argv[0], "restore"))
H A Dps.c215 if (strstr(p, string_to_match) == NULL)
H A Dfdinfo.cpp177 || (pattern != NULL && !strstr(info.args, pattern)))
/haiku/src/tests/servers/registrar/
H A Drun_test_registrar.cpp89 const char* generatedPath = strstr(registrarPath, "generated");
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.cpp428 if ((p = ::strstr(res, "250-AUTH")) != NULL
429 || (p = ::strstr(res, "250 AUTH")) != NULL) {
430 if(::strstr(p, "LOGIN"))
432 if(::strstr(p, "PLAIN"))
434 if(::strstr(p, "CRAM-MD5"))
436 if(::strstr(p, "DIGEST-MD5")) {
872 if (strstr(buf, CRLF) && (out.FindFirst(searchStr) != B_ERROR))
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660_identify.cpp452 if (strstr(escapes, "%/@") || strstr(escapes, "%/C")
453 || strstr(escapes, "%/E")) {
/haiku/src/tests/system/kernel/unit/
H A DTestSuite.cpp113 const char* separator = strstr(name, "::");
/haiku/src/tests/add-ons/kernel/debugger/
H A Dc++filt.cpp73 // strnstr() is BSD, so use a small local buffer and strstr().
78 if (strstr(prefix, "_Z")) {
/haiku/headers/posix/
H A Dstring.h42 extern char *strstr(const char *string, const char *searchString);
/haiku/src/tools/opd_to_package_info/
H A Dopd_to_package_info.cpp67 if (strstr(name, "x86") != NULL) {
68 if (strstr(name, "gcc4") != NULL)
/haiku/src/tools/fs_shell/
H A Dstring.cpp124 return strstr((char*)string, searchString);
/haiku/src/libs/glut/
H A Dglut_ext.c39 /* If your application crashes in the strstr routine below,
44 where = (GLubyte *) strstr((const char *) start, extension);

Completed in 236 milliseconds

1234