Home
last modified time | relevance | path

Searched refs:str_search (Results 1 – 25 of 56) sorted by relevance

123

/dports/audio/ctronome/ctronome-0.5.6/
H A Dctronome.c94 lo2 = str_search(temp,hashmark); in next_program()
98 lo2 = str_search(temp,space); in next_program()
100 lo2 += str_search(&temp[lo2],space); in next_program()
104 lo3 = str_search(&temp[++lo2],slash); in next_program()
113 lo2 = str_search(temp,space); in next_program()
115 lo3 = str_search(&temp[++lo2],slash); in next_program()
205 i1 = str_search(argv[++i],slash); in parm_init()
216 i2 = str_search(argv[++i],slash); in parm_init()
H A Droutines.h6 int str_search(byte *,byte); /* search one character and return its pos. */
H A Droutines.c42 int str_search(byte *buffer,byte search) in str_search() function
/dports/security/snort/snort-2.9.18/src/preprocessors/
H A DMakefile.am26 str_search.c str_search.h \
H A DMakefile.in107 str_search.c str_search.h spp_stream6.c spp_stream6.h \
119 str_search.$(OBJEXT) spp_stream6.$(OBJEXT) \
381 str_search.c str_search.h \
/dports/devel/str/str-0.9.12/
H A DMakefile.in55 str_search.c \
67 str_search.lo \
195 str_search.o: str_search.c str_p.h str.h str_config.h str_pcre.h
H A DChangeLog164 *) Added tests to str_test.c for str_span() and str_search().
167 *) Fixed str_search() by removing bogus optimizations.
/dports/mail/lmtp2nntp/lmtp2nntp-1.4.1/lib_str/
H A DMakefile.in55 str_search.c \
67 str_search.lo \
195 str_search.o: str_search.c str_p.h str.h str_config.h str_pcre.h
H A DChangeLog156 *) Added tests to str_test.c for str_span() and str_search().
159 *) Fixed str_search() by removing bogus optimizations.
/dports/misc/apparix/apparix-11-062/util/
H A Dtok.c49 ( const char* str_search in mcxTokMatch() argument
54 { const char* offset= str_search in mcxTokMatch()
116 , (long) (offset - str_search) in mcxTokMatch()
/dports/net/kamailio/kamailio-5.4.5/src/modules/websocket/
H A Dws_handshake.c166 if(str_search(&hdr->body, &str_upgrade) != NULL) { in ws_handle_handshake()
178 if(str_search(&hdr->body, &str_websocket) != NULL) { in ws_handle_handshake()
205 if(str_search(&hdr->body, &str_sip) != NULL) { in ws_handle_handshake()
211 if(str_search(&hdr->body, &str_msrp) != NULL) { in ws_handle_handshake()
/dports/security/snort/snort-2.9.18/src/dynamic-examples/
H A DMakefile.am34 include/str_search.h \
326 include/str_search.h: $(srcdir)/../preprocessors/str_search.h
H A DMakefile.in337 include/str_search.h \
947 include/str_search.h: $(srcdir)/../preprocessors/str_search.h
/dports/biology/hisat2/hisat2-2.2.1/docs/
H A D_config.yml68 str_search: Search
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/netcache/
H A Dlogging.cpp680 str_rev_str(const char* begin_str, const char* end_str, const char* str_search) in str_rev_str() argument
686 if (str_search == NULL) in str_rev_str()
689 const char* search_char = str_search + strlen(str_search); in str_rev_str()
700 while (search_char != str_search); in str_rev_str()
/dports/math/sc-im/sc-im-0.8.2/src/
H A Dgram.y582 | S_GOTO STRING { str_search($2, 0, 0, maxrow, maxcol, 0, 1); }
584 | S_GOTO '#' STRING { str_search($3, 0, 0, maxrow, maxcol, 1, 1); }
586 | S_GOTO '%' STRING { str_search($3, 0, 0, maxrow, maxcol, 2, 1); }
591 | S_GOTOB STRING { str_search($2, 0, 0, maxrow, maxcol, 0, 0); }
593 | S_GOTOB '#' STRING { str_search($3, 0, 0, maxrow, maxcol, 1, 0); }
595 | S_GOTOB '%' STRING { str_search($3, 0, 0, maxrow, maxcol, 2, 0); }
H A Dinterp.h99 void str_search(char * s, int firstrow, int firstcol, int lastrow, int lastcol, int num, int flow);
/dports/security/snort/snort-2.9.18/src/dynamic-preprocessors/
H A DMakefile.am82 include/str_search.h \
153 include/str_search.h \
595 include/str_search.h: $(srcdir)/../preprocessors/str_search.h
752 include/str_search.h \
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/lib/monkey/plugins/auth/
H A Dconf.c83 sep = mk_api->str_search(buf + offset, ":", 1); in mk_auth_conf_add_users()
/dports/math/sc/sc-7.16/
H A Dgram.y585 | S_GOTO STRING range { str_search($2,
589 | S_GOTO '#' STRING range { str_search($3,
593 | S_GOTO '%' STRING range { str_search($3,
597 | S_GOTO STRING { str_search($2, 0, 0,
599 | S_GOTO '#' STRING { str_search($3, 0, 0,
601 | S_GOTO '%' STRING { str_search($3, 0, 0,
/dports/net/kamailio/kamailio-5.4.5/src/core/
H A Dut.c282 char *str_search(str *text, str *needle) in str_search() function
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/lib/monkey/include/monkey/
H A Dmk_plugin.h130 int (*str_search) (const char *, const char *, int);
/dports/devel/py-cmd2/cmd2-2.3.2/cmd2/
H A Dhistory.py265 …def str_search(self, search: str, include_persisted: bool = False) -> 'OrderedDict[int, HistoryIte… member in History
/dports/devel/py-cmd2/cmd2-2.3.2/tests/
H A Dtest_history.py298 items = hist.str_search('ir')
303 items = hist.str_search('rth')
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/lib/monkey/plugins/mandril/
H A Dmandril.c70 n = mk_api->str_search(entry->val, "/", 1);

123