Home
last modified time | relevance | path

Searched refs:tmp (Results 1 – 25 of 1152) sorted by path

12345678910>>...47

/PHP-5.5/
H A D.gdbinit438 set $tmp = 0
441 set $tmp = $tmp + 1
465 set $tmp = $depth
466 while $tmp != 0
468 set $tmp = $tmp - 1
479 set $tmp = $depth
480 while $tmp != 1
482 set $tmp = $tmp - 1
516 set $tmp = 0
520 if $str[$tmp] > 32 && $str[$tmp] < 127
[all …]
H A D.gitignore96 tmp-php.ini
192 ext/oci8/tests/*.tmp
196 ext/pdo/tests/*.tmp
200 ext/pdo_mysql/tests/*.tmp
203 ext/pdo_odbc/tests/*.tmp
207 ext/pdo_pgsql/tests/*.tmp
211 ext/pdo_sqlite/tests/*.tmp
215 ext/pspell/tests/*.tmp
228 ext/sqlite3/tests/*.tmp
H A DINSTALL544 "socket" => "/tmp/php.socket",
589 PHP_PID=/tmp/php.pid
594 FCGI_BIND_ADDRESS=/tmp/php.sock
921 will therefore need to create a /var/www/tmp directory for PHP
H A DMakefile.global92 $(EGREP) -h -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_FILE" > $(top_builddir)/tmp-php.ini; \
94 echo > $(top_builddir)/tmp-php.ini; \
99 … -v $(PHP_DEPRECATED_DIRECTIVES_REGEX) "$$INI_SCANNED_PATH"/*.ini >> $(top_builddir)/tmp-php.ini; \
104 …XECUTABLE) -n -c $(top_builddir)/tmp-php.ini $(PHP_TEST_SETTINGS) $(top_srcdir)/run-tests.php -n -…
106 rm $(top_builddir)/tmp-php.ini; \
H A DNEWS2255 with non std tmp dir). (Pierre)
5693 - Removed special treatment of "/tmp" in sessions for open_basedir.
H A DREADME.PHP4-TO-PHP5-THIN-CHANGES76 Fatal error: Class 'a' not found in /tmp/cl.php on line 2
154 PHP Fatal error: Cannot re-assign $this in /tmp/this_ex.php on line 4
H A DREADME.SELF-CONTAINED-EXTENSIONS37 $ mkdir /tmp/newext
38 $ cd /tmp/newext
H A DREADME.TESTING123 TMPDIR=/var/tmp
H A DREADME.input_filter154 zval **tmp;
177 if(zend_hash_find(HASH_OF(array_ptr), var, var_len+5, (void **)&tmp) == SUCCESS) {
178 *return_value = **tmp;
/PHP-5.5/TSRM/
H A Dtsrm_virtual_cwd.c263 char tmp[MAXPATHLEN]; in php_sys_readlink() local
305 char *tmp = cur_path; in php_sys_stat_ex() local
310 if (tmp[1] == ':') { in php_sys_stat_ex()
328 if (tmp != cur_path) { in php_sys_stat_ex()
329 free(tmp); in php_sys_stat_ex()
762 char *tmp; in tsrm_realpath_r() local
864 memcpy(tmp, path, len+1); in tsrm_realpath_r()
1021 memcpy(path, tmp, i-1); in tsrm_realpath_r()
1160 void *tmp; in virtual_file_ex() local
1320 if (tmp == NULL) { in virtual_file_ex()
[all …]
/PHP-5.5/Zend/tests/
H A Dbug30998.phpt14 $f = fopen("/tmp/blah", "r");
18 fopen(/tmp/blah): failed to open stream: %s (2) in %s:%d
20 Warning: fopen(/tmp/blah): failed to open stream: %s in %s on line %d
H A Dbug55509.phpt20 $tmp = explode(":", $line);
21 $index = strtolower($tmp[0]);
22 $value = (int)ltrim($tmp[1], " ")*1024;
37 $tmp = explode(":", $line);
38 $index = strtolower($tmp[0]);
39 $value = trim($tmp[1], " ");
H A Dbug63741.phpt5 file_put_contents(dirname(__FILE__)."/bug63741.tmp.php",
44 include dirname(__FILE__)."/bug63741.tmp.php";
47 <?php unlink(dirname(__FILE__)."/bug63741.tmp.php"); ?>
H A Dcast_to_array.phpt37 $tmp = (array)$var;
38 var_dump($tmp);
H A Dcast_to_bool.phpt33 $tmp = (bool)$var;
34 var_dump($tmp);
H A Dcast_to_double.phpt35 $tmp = (double)$var;
36 var_dump($tmp);
H A Dcast_to_int.phpt33 $tmp = (int)$var;
34 var_dump($tmp);
H A Dcast_to_object.phpt33 $tmp = (object)$var;
34 var_dump($tmp);
H A Dcast_to_string.phpt33 $tmp = (string)$var;
34 var_dump($tmp);
H A Dobject_handlers.phpt64 $c = "tmp";
/PHP-5.5/Zend/
H A Dzend.c135 zval **tmp; in print_hash() local
148 while (zend_hash_get_current_data_ex(ht, (void **) &tmp, &iterator) == SUCCESS) { in print_hash()
183 zend_print_zval_r_ex(write_func, *tmp, indent+PRINT_ZVAL_INDENT TSRMLS_CC); in print_hash()
197 zval **tmp; in print_flat_hash() local
205 while (zend_hash_get_current_data_ex(ht, (void **) &tmp, &iterator) == SUCCESS) { in print_flat_hash()
219 zend_print_flat_zval_r(*tmp TSRMLS_CC); in print_flat_hash()
H A Dzend_API.c1227 zval *tmp; in add_assoc_long_ex() local
1238 zval *tmp; in add_assoc_null_ex() local
1249 zval *tmp; in add_assoc_bool_ex() local
1260 zval *tmp; in add_assoc_resource_ex() local
1271 zval *tmp; in add_assoc_double_ex() local
1282 zval *tmp; in add_assoc_string_ex() local
1293 zval *tmp; in add_assoc_stringl_ex() local
1310 zval *tmp; in add_index_long() local
1321 zval *tmp; in add_index_null() local
1332 zval *tmp; in add_index_bool() local
[all …]
H A Dzend_alloc.c1168 char *tmp; in zend_mm_startup() local
1199 tmp = getenv("ZEND_MM_SEG_SIZE"); in zend_mm_startup()
1200 if (tmp) { in zend_mm_startup()
1201 seg_size = zend_atoi(tmp, 0); in zend_mm_startup()
1223 tmp = getenv("ZEND_MM_COMPACT"); in zend_mm_startup()
1224 if (tmp) { in zend_mm_startup()
1225 heap->compact_size = zend_atoi(tmp, 0); in zend_mm_startup()
2723 char *tmp = getenv("USE_ZEND_ALLOC"); in alloc_globals_ctor() local
2725 if (tmp && !zend_atoi(tmp, 0)) { in alloc_globals_ctor()
H A Dzend_alloc.h95 void *tmp = malloc(len); in __zend_malloc() local
96 if (tmp) { in __zend_malloc()
97 return tmp; in __zend_malloc()
105 void *tmp = _safe_malloc(nmemb, len, 0); in __zend_calloc() local
106 memset(tmp, 0, nmemb * len); in __zend_calloc()
107 return tmp; in __zend_calloc()
H A Dzend_builtin_functions.c572 zval *array, *entry, **entry_ptr, *tmp; in ZEND_FUNCTION() local
596 ALLOC_ZVAL(tmp); in ZEND_FUNCTION()
597 *tmp = *entry; in ZEND_FUNCTION()
598 zval_copy_ctor(tmp); in ZEND_FUNCTION()
599 Z_UNSET_ISREF_P(tmp); in ZEND_FUNCTION()
600 Z_SET_REFCOUNT_P(tmp, 0); in ZEND_FUNCTION()
601 entry=tmp; in ZEND_FUNCTION()
2045 zval **tmp; in debug_print_backtrace_args() local
2050 while (zend_hash_get_current_data_ex(arg_array->value.ht, (void **) &tmp, &iterator) == SUCCESS) { in debug_print_backtrace_args()
2054 zend_print_flat_zval_r(*tmp TSRMLS_CC); in debug_print_backtrace_args()

Completed in 112 milliseconds

12345678910>>...47