Home
last modified time | relevance | path

Searched refs:pos1 (Results 1 – 6 of 6) sorted by relevance

/PHP-5.4/win32/
H A Dsendmail.c264 ((pos1 == headers_lc) || (*(pos1-1) == '\n')) in TSendMail()
269 pos1 = headers + (pos1 - headers_lc) + 5; in TSendMail()
271 RPath = estrndup(pos1, strlen(pos1)); in TSendMail()
273 RPath = estrndup(pos1, pos2 - pos1); in TSendMail()
476 …else if (headers && (pos1 = strstr(headers_lc, "cc:")) && ((pos1 == headers_lc) || (*(pos1-1) == '… in SendText()
480 pos1 = headers + (pos1 - headers_lc) + 3; in SendText()
482 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText()
484 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText()
535 pos1 = headers + (pos1 - headers_lc) + 4; in SendText()
537 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText()
[all …]
/PHP-5.4/ext/spl/
H A Dphp_spl.c320 char *copy, *pos1, *pos2; in PHP_FUNCTION() local
330 copy = pos1 = estrndup(SPL_DEFAULT_FILE_EXTENSIONS, sizeof(SPL_DEFAULT_FILE_EXTENSIONS)-1); in PHP_FUNCTION()
332 copy = pos1 = estrndup(file_exts, file_exts_len); in PHP_FUNCTION()
335 while(pos1 && *pos1 && !EG(exception)) { in PHP_FUNCTION()
339 pos2 = strchr(pos1, ','); in PHP_FUNCTION()
341 if (spl_autoload(class_name, lc_name, class_name_len, pos1 TSRMLS_CC)) { in PHP_FUNCTION()
345 pos1 = pos2 ? pos2 + 1 : NULL; in PHP_FUNCTION()
/PHP-5.4/Zend/
H A Dzend_language_scanner.l328 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local
361 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode()
365 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode()
366 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
H A Dzend_language_scanner.c330 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local
363 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode()
367 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode()
368 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
/PHP-5.4/ext/standard/
H A Dstring.c3250 static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int … argument
3263 *pos1 = p - txt1;
3276 int pos1 = 0, pos2 = 0, max; local
3278 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
3280 if (pos1 && pos2) {
3281 sum += php_similar_char(txt1, pos1,
3284 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3285 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
/PHP-5.4/ext/soap/
H A Dsoap.c990 HashPosition pos1, pos2; in soap_create_typemap() local
993 zend_hash_internal_pointer_reset_ex(ht, &pos1); in soap_create_typemap()
994 while (zend_hash_get_current_data_ex(ht, (void**)&tmp, &pos1) == SUCCESS) { in soap_create_typemap()
1097 zend_hash_move_forward_ex(ht, &pos1); in soap_create_typemap()

Completed in 61 milliseconds