Searched refs:php_memnstr (Results 1 – 10 of 10) sorted by relevance
/PHP-5.5/main/ |
H A D | getopt.c | 103 if ((pos = php_memnstr(&argv[*optind][arg_start], "=", 1, argv[*optind]+arg_end)) != NULL) { in php_getopt()
|
H A D | php.h | 328 #define php_memnstr zend_memnstr macro
|
/PHP-5.5/ext/intl/grapheme/ |
H A D | grapheme_string.c | 150 …found = (unsigned char *)php_memnstr((char *)haystack + noffset, (char *)needle, needle_len, (char… in PHP_FUNCTION() 224 …found = (unsigned char*) php_memnstr((char *)haystack_dup + noffset, (char *)needle_dup, needle_le… in PHP_FUNCTION() 643 …found = (unsigned char *)php_memnstr((char *)haystack, (char *)needle, needle_len, (char *)haystac… in strstr_common_handler()
|
/PHP-5.5/ext/standard/ |
H A D | string.c | 1036 p2 = php_memnstr(Z_STRVAL_P(str), Z_STRVAL_P(delim), Z_STRLEN_P(delim), endp); in php_explode() 1044 } while ((p2 = php_memnstr(p1, Z_STRVAL_P(delim), Z_STRLEN_P(delim), endp)) != NULL && in php_explode() 1063 p2 = php_memnstr(Z_STRVAL_P(str), Z_STRVAL_P(delim), Z_STRLEN_P(delim), endp); in php_explode_negative_limit() 1082 } while ((p2 = php_memnstr(p1, Z_STRVAL_P(delim), Z_STRLEN_P(delim), endp)) != NULL); in php_explode_negative_limit() 1647 return php_memnstr(s, t, t_len, s + s_len); 1806 found = php_memnstr(haystack, needle_char, 1, haystack + haystack_len); 1851 found = php_memnstr(haystack + offset, 1861 found = php_memnstr(haystack + offset, 1919 found = php_memnstr(haystack_dup + offset, 3760 while ((o = php_memnstr(o, n, needle_len, endp))) { [all …]
|
H A D | file.c | 598 if (php_memnstr(filename, "://", sizeof("://") - 1, filename + filename_len)) { in PHP_FUNCTION()
|
/PHP-5.5/ext/wddx/ |
H A D | wddx.c | 859 while ((p2 = php_memnstr(p1, ",", sizeof(",")-1, endp)) != NULL) { in php_wddx_push_element()
|
/PHP-5.5/ext/imap/ |
H A D | php_imap.c | 4233 …if ((charset_token = (long)php_memnstr(&string[offset], "=?", 2, string + end))) { /* Is there any… in PHP_FUNCTION() 4245 …if ((encoding_token = (long)php_memnstr(&string[charset_token+2], "?", 1, string+end))) { /* Find… in PHP_FUNCTION() 4247 …if ((end_token = (long)php_memnstr(&string[encoding_token+3], "?=", 2, string+end))) { /* Find tok… in PHP_FUNCTION()
|
/PHP-5.5/ext/curl/ |
H A D | interface.c | 2670 …if ((type = php_memnstr(postval, ";type=", sizeof(";type=") - 1, postval + Z_STRLEN_PP(current))))… in _php_curl_setopt() 2673 …if ((filename = php_memnstr(postval, ";filename=", sizeof(";filename=") - 1, postval + Z_STRLEN_PP… in _php_curl_setopt()
|
/PHP-5.5/main/streams/ |
H A D | streams.c | 1019 return php_memnstr((char*)&stream->readbuf[stream->readpos + skiplen], in _php_stream_search_delim()
|
/PHP-5.5/ext/mbstring/ |
H A D | mbstring.c | 696 while ((p2 = php_memnstr(p1, ",", 1, endp)) != NULL) { in php_mb_parse_encoding_list() 709 p2 = p = php_memnstr(p1, ",", 1, endp); in php_mb_parse_encoding_list()
|
Completed in 78 milliseconds