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

1234

/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dcdda.cpp204 char *space = strstr(text.album, " ");
/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/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dunistr.c1654 if (!locale || strstr(locale,"utf8") || strstr(locale,"UTF8")
1655 || strstr(locale,"utf-8") || strstr(locale,"UTF-8"))
/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/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/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/apps/mail/
H A DSettings.cpp462 if (strstr(addonNamePntr, "Spam Filter") != NULL) {
/haiku/src/bin/
H A Dfdinfo.cpp177 || (pattern != NULL && !strstr(info.args, pattern)))
H A Dlistarea.c82 if (strstr(info.args, name) != NULL)
H A Dlistimage.c89 if (strstr(info.args, arg)) {
H A Dps.c215 if (strstr(p, string_to_match) == NULL)
H A Dshutdown.cpp132 if (strstr(teamInfo.args, "shutdown") != NULL
H A Dtrash.cpp159 if (strstr(argv[0], "untrash") || strstr(argv[0], "restore"))
/haiku/src/bin/unzip/
H A Dunzip.c820 if (strncmp(p, "ZIPINFO.",8) == 0 || strstr(p, ".ZIPINFO:") != NULL ||
821 strncmp(p, "II.",3) == 0 || strstr(p, ".II:") != NULL ||
/haiku/src/kits/mail/
H A DMailSettings.cpp517 const char* at = strstr(string, parentDirectory);
H A Dmail_encoding.cpp197 inBuffer = (uint8 *)strstr((char *)inBuffer, "begin");
/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);
/haiku/src/libs/mapm/
H A Dmapm_set.c224 if ((cp = strstr(p,"e")) != NULL)
H A Dmapmgues.c171 if ((cp = strstr(buf, "E")) == NULL)
/haiku/src/servers/launch/
H A DLog.cpp676 if (eventName != NULL && strstr(fEvent->ToString(), eventName) == NULL)
712 if (eventName != NULL && strstr(fEventName.String(), eventName) != NULL)
/haiku/src/servers/media/
H A DDefaultManager.cpp580 if (0 != strstr(info[i].name, "DV Output"))
/haiku/src/system/kernel/debug/
H A Ddebug_builtin_commands.cpp241 match = strstr(line, pattern) != NULL;
/haiku/src/system/libroot/posix/string/
H A Dstrstr.c10 strstr(const char *s1, const char *s2) function
/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")) {

Completed in 169 milliseconds

1234