Home
last modified time | relevance | path

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

/PHP-5.5/win32/
H A Dsendmail.c265 ((pos1 == headers_lc) || (*(pos1-1) == '\n')) in TSendMail()
270 pos1 = headers + (pos1 - headers_lc) + 5; in TSendMail()
272 RPath = estrndup(pos1, strlen(pos1)); in TSendMail()
274 RPath = estrndup(pos1, pos2 - pos1); in TSendMail()
477 …else if (headers && (pos1 = strstr(headers_lc, "cc:")) && ((pos1 == headers_lc) || (*(pos1-1) == '… in SendText()
481 pos1 = headers + (pos1 - headers_lc) + 3; in SendText()
483 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText()
485 tempMailTo = estrndup(pos1, pos2 - pos1); in SendText()
536 pos1 = headers + (pos1 - headers_lc) + 4; in SendText()
538 tempMailTo = estrndup(pos1, strlen(pos1)); in SendText()
[all …]
/PHP-5.5/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.5/Zend/
H A Dzend_language_scanner.l331 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local
364 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode()
368 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode()
369 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
H A Dzend_language_scanner.c333 unsigned char *pos1, *pos2; in zend_multibyte_detect_unicode() local
366 if ((pos1 = memchr(LANG_SCNG(script_org), 0, LANG_SCNG(script_org_size)))) { in zend_multibyte_detect_unicode()
370 while (pos1 - pos2 >= sizeof("__HALT_COMPILER();")-1) { in zend_multibyte_detect_unicode()
371 pos2 = memchr(pos2, '_', pos1 - pos2); in zend_multibyte_detect_unicode()
/PHP-5.5/ext/standard/
H A Dstring.c3220 static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int … argument
3233 *pos1 = p - txt1;
3246 int pos1 = 0, pos2 = 0, max; local
3248 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
3250 if (pos1 && pos2) {
3251 sum += php_similar_char(txt1, pos1,
3254 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3255 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
/PHP-5.5/ext/soap/
H A Dsoap.c996 HashPosition pos1, pos2; in soap_create_typemap() local
999 zend_hash_internal_pointer_reset_ex(ht, &pos1); in soap_create_typemap()
1000 while (zend_hash_get_current_data_ex(ht, (void**)&tmp, &pos1) == SUCCESS) { in soap_create_typemap()
1103 zend_hash_move_forward_ex(ht, &pos1); in soap_create_typemap()

Completed in 58 milliseconds