| /PHP_5_4/ |
| H A D | genfiles | 17 cp $f $f.orig 18 grep -v '#line ' $f.orig > $f
|
| H A D | makedist | 97 find . -name \*.orig -print0 | xargs -0 rm
|
| /PHP_5_4/scripts/apache/ |
| H A D | apconf-conv.sh | 21 mv -f $1 $1.orig
|
| H A D | aphtaccess-conv.sh | 21 mv -f $1 $1.orig
|
| /PHP_5_4/ext/ftp/tests/ |
| H A D | server.inc | 234 $orig = file_get_contents(dirname(__FILE__).'/'.$m[1]); 237 if (isset($ascii) && !$ascii && $orig === $data) { 240 } elseif ((!empty($ascii) || isset($bug39583)) && $data === strtr($orig, array("\r\n" => "\n", "\r" => "\n", "\n" => "\r\n"))) { 245 var_dump($orig); 251 $orig = file_get_contents(dirname(__FILE__).'/'.$m[1]); 252 if ( $orig === $data) { 257 var_dump($orig);
|
| /PHP_5_4/Zend/ |
| H A D | zend_ini.c | 348 ZEND_API long zend_ini_long(char *name, uint name_length, int orig) /* {{{ */ argument 354 if (orig && ini_entry->modified) { 365 ZEND_API double zend_ini_double(char *name, uint name_length, int orig) /* {{{ */ argument 371 if (orig && ini_entry->modified) { 382 ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists) /* {{{ */ argument 392 if (orig && ini_entry->modified) { 406 ZEND_API char *zend_ini_string(char *name, uint name_length, int orig) /* {{{ */ argument 411 return_value = zend_ini_string_ex(name, name_length, orig, &exists);
|
| H A D | zend_ini.h | 102 ZEND_API long zend_ini_long(char *name, uint name_length, int orig); 103 ZEND_API double zend_ini_double(char *name, uint name_length, int orig); 104 ZEND_API char *zend_ini_string(char *name, uint name_length, int orig); 105 ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists);
|
| H A D | zend_execute.c | 1196 zval *orig = dim; local 1198 ZVAL_NULL(orig); 1330 zval *orig = dim; local 1332 ZVAL_NULL(orig);
|
| H A D | zend_alloc.c | 1126 zend_mm_free_block *p, *q, *orig; local 1132 orig = ZEND_MM_SMALL_FREE_BUCKET(heap, 0); 1135 while (q->prev_free_block != orig) { 1140 while (q->next_free_block != orig) { 1145 orig = (zend_mm_free_block*)((char*)orig + sizeof(zend_mm_free_block*) * 2);
|
| /PHP_5_4/ext/date/lib/ |
| H A D | timelib.c | 49 timelib_time* timelib_time_clone(timelib_time *orig) argument 52 memcpy(tmp, orig, sizeof(timelib_time)); 53 if (orig->tz_abbr) { 54 tmp->tz_abbr = strdup(orig->tz_abbr); 56 if (orig->tz_info) { 57 tmp->tz_info = orig->tz_info;
|
| H A D | timelib.h | 120 timelib_time* timelib_time_clone(timelib_time* orig);
|
| /PHP_5_4/ext/dom/ |
| H A D | dom_iterators.c | 72 ret->orig = NULL;
|
| /PHP_5_4/ext/pgsql/ |
| H A D | pgsql.c | 861 int orig; local 880 orig = PGG(ignore_notices); 890 PGG(ignore_notices) = orig;
|
| /PHP_5_4/ext/soap/ |
| H A D | php_encoding.c | 3480 xmlNodePtr orig = node; local 3498 if (orig != node) {
|
| H A D | php_http.c | 416 php_url *orig; local 418 (orig = (php_url *) zend_fetch_resource(tmp TSRMLS_CC, -1, "httpurl", NULL, 1, le_url)) != NULL && 420 (((use_ssl && orig->scheme != NULL && strcmp(orig->scheme, "https") == 0) || 421 (!use_ssl && orig->scheme == NULL) || 422 (!use_ssl && strcmp(orig->scheme, "https") != 0)) && 423 strcmp(orig->host, phpurl->host) == 0 && 424 orig->port == phpurl->port))) {
|
| /PHP_5_4/ext/spl/ |
| H A D | spl_heap.c | 384 static zend_object_value spl_heap_object_new_ex(zend_class_entry *class_type, spl_heap_object **obj, zval *orig, int clone_orig TSRMLS_DC) /* {{{ */ argument 402 if (orig) { 403 spl_heap_object *other = (spl_heap_object*)zend_object_store_get_object(orig TSRMLS_CC);
|
| H A D | spl_observer.c | 253 static zend_object_value spl_object_storage_new_ex(zend_class_entry *class_type, spl_SplObjectStorage **obj, zval *orig TSRMLS_DC) /* {{{ */ 271 if (orig) { 272 spl_SplObjectStorage *other = (spl_SplObjectStorage*)zend_object_store_get_object(orig TSRMLS_CC); 273 spl_object_storage_addall(intern, orig, other TSRMLS_CC);
|
| H A D | spl_fixedarray.c | 223 static zend_object_value spl_fixedarray_object_new_ex(zend_class_entry *class_type, spl_fixedarray_object **obj, zval *orig, int clone_orig TSRMLS_DC) /* {{{ */ argument 240 if (orig && clone_orig) { 241 spl_fixedarray_object *other = (spl_fixedarray_object*)zend_object_store_get_object(orig TSRMLS_CC);
|
| H A D | spl_array.c | 167 static zend_object_value spl_array_object_new_ex(zend_class_entry *class_type, spl_array_object **obj, zval *orig, int clone_orig TSRMLS_DC) argument 186 if (orig) { 187 spl_array_object *other = (spl_array_object*)zend_object_store_get_object(orig TSRMLS_CC); 194 if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayObject) { 199 if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayIterator) { 203 intern->array = orig;
|
| H A D | spl_dllist.c | 369 static zend_object_value spl_dllist_object_new_ex(zend_class_entry *class_type, spl_dllist_object **obj, zval *orig, int clone_orig TSRMLS_DC) /* {{{ */ argument 387 if (orig) { 388 spl_dllist_object *other = (spl_dllist_object*)zend_object_store_get_object(orig TSRMLS_CC);
|
| /PHP_5_4/ext/phar/ |
| H A D | func_interceptors.c | 808 #define PharFileFunction(fname, funcnum, orig) \ 811 PHAR_G(orig)(INTERNAL_FUNCTION_PARAM_PASSTHRU); \ 820 phar_file_stat(filename, (php_stat_len) filename_len, funcnum, PHAR_G(orig), INTERNAL_FUNCTION_PARAM_PASSTHRU); \ 1058 if (SUCCESS == zend_hash_find(CG(function_table), #func, sizeof(#func), (void **)&orig)) { \ 1059 PHAR_G(orig_##func) = orig->internal_function.handler; \ 1060 orig->internal_function.handler = phar_##func; \ 1065 zend_function *orig; local 1095 if (PHAR_G(orig_##func) && SUCCESS == zend_hash_find(CG(function_table), #func, sizeof(#func), (void **)&orig)) { \ 1096 orig->internal_function.handler = PHAR_G(orig_##func); \ 1102 zend_function *orig; local [all...] |
| /PHP_5_4/main/streams/ |
| H A D | streams.c | 110 php_stream *orig = enclosed->enclosing_stream; local 114 return orig;
|