Searched defs:actual (Results 1 - 7 of 7) sorted by relevance
| /PHP_TRUNK/sapi/apache2filter/ |
| H A D | sapi_apache2.c | 738 apr_off_t actual = 0; local 740 if (apr_brigade_length(pbb->bb, 1, &actual) == APR_SUCCESS) { 741 return actual;
|
| /PHP_TRUNK/ext/phar/ |
| H A D | phar.c | 1325 char *actual = NULL, *p; local 1340 fp = php_stream_open_wrapper(fname, "rb", IGNORE_URL|STREAM_MUST_SEEK|0, &actual); 1342 if (actual) { 1343 fname = actual; 1344 fname_len = strlen(actual); 1352 if (actual) { 1353 efree(actual); 1358 if (actual) { 1359 efree(actual); 1365 if (actual) { 1478 char *actual; local 2329 char *actual = NULL; local [all...] |
| H A D | phar_object.c | 373 /* post-process REQUEST_URI and retrieve the actual request URI. This is for 477 char *fname, *arch = NULL, *entry = NULL, *path, *actual; local 481 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &path, &path_len, &actual, &actual_len) == FAILURE) { 517 if (SUCCESS != phar_mount_entry(*pphar, actual, actual_len, path, path_len TSRMLS_CC)) { 518 zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "Mounting of %s to %s within phar %s failed", path, actual, arch); 553 zend_throw_exception_ex(phar_ce_PharException, 0 TSRMLS_CC, "Mounting of %s to %s failed", path, actual); 561 * reads $_SERVER['REQUEST_URI'] (the actual original value) and parses out the 1786 * Return value is an array mapping phar index to actual files added. 1928 * Returned is an array mapping phar index to actual file added 2637 * Returns true if phar.readonly=0 or phar is a PharData AND the actual fil 4319 char *pathto, *filename, *actual; local [all...] |
| H A D | tar.c | 202 phar_archive_data *myphar, **actual; local 611 if (SUCCESS != zend_hash_add(&(PHAR_GLOBALS->phar_fname_map), myphar->fname, fname_len, (void*)&myphar, sizeof(phar_archive_data*), (void **)&actual)) { 620 myphar = *actual;
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_execute_API.c | 495 char *actual = Z_STRVAL_P(p); local 508 char *save = actual, *slash; 510 if ((Z_TYPE_P(p) & IS_CONSTANT_UNQUALIFIED) && (slash = (char *)zend_memrchr(actual, '\\', actual_len))) { 511 actual = slash + 1; 512 actual_len -= (actual - Z_STRVAL_P(p)); 514 actual = estrndup(actual, actual_len); 515 Z_STRVAL_P(p) = actual; 519 if (actual[0] == '\\') { 524 ++actual; 597 char *actual; local [all...] |
| H A D | zend_vm_def.h | 3497 char *actual = (char *)zend_memrchr(Z_STRVAL_P(opline->op2.zv), '\\', Z_STRLEN_P(opline->op2.zv)); variable 3498 if(!actual) { 3499 actual = Z_STRVAL_P(opline->op2.zv); 3501 actual++; 3504 zend_error(E_NOTICE, "Use of undefined constant %s - assumed '%s'", actual, actual); 3505 ZVAL_STRINGL(&EX_T(opline->result.var).tmp_var, actual, Z_STRLEN_P(opline->op2.zv)-(actual - Z_STRVAL_P(opline->op2.zv)), 1);
|
| H A D | zend_vm_execute.h | 3697 char *actual = (char *)zend_memrchr(Z_STRVAL_P(opline->op2.zv), '\\', Z_STRLEN_P(opline->op2.zv)); local 3698 if(!actual) { 3699 actual = Z_STRVAL_P(opline->op2.zv); 3701 actual++; 3704 zend_error(E_NOTICE, "Use of undefined constant %s - assumed '%s'", actual, actual); 3705 ZVAL_STRINGL(&EX_T(opline->result.var).tmp_var, actual, Z_STRLEN_P(opline->op2.zv)-(actual - Z_STRVAL_P(opline->op2.zv)), 1); 15567 char *actual = (char *)zend_memrchr(Z_STRVAL_P(opline->op2.zv), '\\', Z_STRLEN_P(opline->op2.zv)); local 15568 if(!actual) { 25175 char *actual = (char *)zend_memrchr(Z_STRVAL_P(opline->op2.zv), '\\\\', Z_STRLEN_P(opline->op2.zv)); local [all...] |
Completed in 55 milliseconds