Searched refs:pos1 (Results 1 – 4 of 4) sorted by relevance
/PHP-5.3/win32/ |
H A D | sendmail.c | 264 ((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.3/ext/spl/ |
H A D | php_spl.c | 289 char *copy, *pos1, *pos2; in PHP_FUNCTION() local 299 copy = pos1 = estrndup(SPL_DEFAULT_FILE_EXTENSIONS, sizeof(SPL_DEFAULT_FILE_EXTENSIONS)-1); in PHP_FUNCTION() 301 copy = pos1 = estrndup(file_exts, file_exts_len); in PHP_FUNCTION() 304 while(pos1 && *pos1 && !EG(exception)) { in PHP_FUNCTION() 308 pos2 = strchr(pos1, ','); in PHP_FUNCTION() 310 if (spl_autoload(class_name, lc_name, class_name_len, pos1 TSRMLS_CC)) { in PHP_FUNCTION() 314 pos1 = pos2 ? pos2 + 1 : NULL; in PHP_FUNCTION()
|
/PHP-5.3/ext/standard/ |
H A D | string.c | 2870 static void php_similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int … argument 2883 *pos1 = p - txt1; 2896 int pos1, pos2, max; local 2898 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max); 2900 if (pos1 && pos2) { 2901 sum += php_similar_char(txt1, pos1, 2904 if ((pos1 + max < len1) && (pos2 + max < len2)) { 2905 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
|
/PHP-5.3/ext/soap/ |
H A D | soap.c | 1101 HashPosition pos1, pos2; in soap_create_typemap() local 1104 zend_hash_internal_pointer_reset_ex(ht, &pos1); in soap_create_typemap() 1105 while (zend_hash_get_current_data_ex(ht, (void**)&tmp, &pos1) == SUCCESS) { in soap_create_typemap() 1208 zend_hash_move_forward_ex(ht, &pos1); in soap_create_typemap()
|
Completed in 37 milliseconds