Home
last modified time | relevance | path

Searched refs:orig (Results 1 – 25 of 102) sorted by last modified time

12345

/PHP-5.5/scripts/apache/
H A Dapconf-conv.sh21 mv -f $1 $1.orig
H A Daphtaccess-conv.sh21 mv -f $1 $1.orig
/PHP-5.5/sapi/caudium/
H A Dconfig.m436 string orig,pike=Stdio.File("stdin")->read()-"\n";
37 orig=pike;
38 if(search(orig, "/"))
39 orig = combine_path(getcwd(), orig);
42 write(combine_path(dirname(orig), pike)); '`
/PHP-5.5/main/streams/
H A Dstreams.c110 php_stream *orig = enclosed->enclosing_stream; in php_stream_encloses() local
114 return orig; in php_stream_encloses()
/PHP-5.5/
H A Dmakedist100 find . -name \*.orig -print0 | xargs -0 rm
H A Dgenfiles26 cp $f $f.orig
27 grep -v '#line ' $f.orig > $f
/PHP-5.5/ext/standard/tests/time/
H A Dstrptime_basic.phpt18 $orig = setlocale(LC_ALL, 'C');
35 setlocale(LC_ALL, $orig);
H A Dstrptime_parts.phpt17 $orig = setlocale(LC_ALL, 'C');
53 setlocale(LC_ALL, $orig);
/PHP-5.5/ext/spl/tests/
H A Dbug54323.phpt6 public $prop = 'C::prop.orig';
H A DarrayObject___construct_basic3.phpt6 public $prop = 'C::prop.orig';
10 public $prop = 'MyArrayObject::prop.orig';
52 prop=>C::prop.orig
55 string(12) "C::prop.orig"
80 prop=>C::prop.orig
82 string(24) "MyArrayObject::prop.orig"
83 string(12) "C::prop.orig"
H A DarrayObject___construct_basic4.phpt6 public $prop = 'C::prop.orig';
10 public $prop = 'MyArrayObject::prop.orig';
52 prop=>C::prop.orig
54 string(12) "C::prop.orig"
55 string(12) "C::prop.orig"
82 prop=>C::prop.orig
84 string(24) "MyArrayObject::prop.orig"
85 string(12) "C::prop.orig"
H A DarrayObject___construct_basic5.phpt6 public $prop = 'C::prop.orig';
10 public $prop = 'MyArrayObject::prop.orig';
52 prop=>C::prop.orig
54 string(12) "C::prop.orig"
55 string(12) "C::prop.orig"
82 prop=>C::prop.orig
84 string(24) "MyArrayObject::prop.orig"
85 string(12) "C::prop.orig"
H A DarrayObject_clone_basic3.phpt6 public $p = 'C::p.orig';
27 string(9) "C::p.orig"
41 string(9) "C::p.orig"
58 string(9) "C::p.orig"
74 string(9) "C::p.orig"
H A DarrayObject___construct_basic2.phpt6 public $prop = 'C::prop.orig';
10 public $prop = 'MyArrayObject::prop.orig';
52 prop=>C::prop.orig
55 string(12) "C::prop.orig"
80 prop=>C::prop.orig
82 string(24) "MyArrayObject::prop.orig"
83 string(12) "C::prop.orig"
/PHP-5.5/ext/spl/
H A Dspl_observer.c259 …ge_new_ex(zend_class_entry *class_type, spl_SplObjectStorage **obj, zval *orig TSRMLS_DC) /* {{{ */ in spl_object_storage_new_ex()
277 if (orig) { in spl_object_storage_new_ex()
278 spl_SplObjectStorage *other = (spl_SplObjectStorage*)zend_object_store_get_object(orig TSRMLS_CC); in spl_object_storage_new_ex()
279 spl_object_storage_addall(intern, orig, other TSRMLS_CC); in spl_object_storage_new_ex()
H A Dspl_dllist.c367 …bject_new_ex(zend_class_entry *class_type, spl_dllist_object **obj, zval *orig, int clone_orig TSR… in spl_dllist_object_new_ex() argument
385 if (orig) { in spl_dllist_object_new_ex()
386 spl_dllist_object *other = (spl_dllist_object*)zend_object_store_get_object(orig TSRMLS_CC); in spl_dllist_object_new_ex()
H A Dspl_fixedarray.c223 …t_new_ex(zend_class_entry *class_type, spl_fixedarray_object **obj, zval *orig, int clone_orig TSR… in spl_fixedarray_object_new_ex() argument
240 if (orig && clone_orig) { in spl_fixedarray_object_new_ex()
241 …spl_fixedarray_object *other = (spl_fixedarray_object*)zend_object_store_get_object(orig TSRMLS_CC… in spl_fixedarray_object_new_ex()
H A Dspl_heap.c385 …_object_new_ex(zend_class_entry *class_type, spl_heap_object **obj, zval *orig, int clone_orig TSR… in spl_heap_object_new_ex() argument
403 if (orig) { in spl_heap_object_new_ex()
404 spl_heap_object *other = (spl_heap_object*)zend_object_store_get_object(orig TSRMLS_CC); in spl_heap_object_new_ex()
H A Dspl_array.c167 …object_new_ex(zend_class_entry *class_type, spl_array_object **obj, zval *orig, int clone_orig TSR… in spl_array_object_new_ex() argument
186 if (orig) { in spl_array_object_new_ex()
187 spl_array_object *other = (spl_array_object*)zend_object_store_get_object(orig TSRMLS_CC); in spl_array_object_new_ex()
194 if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayObject) { in spl_array_object_new_ex()
199 if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayIterator) { in spl_array_object_new_ex()
203 intern->array = orig; in spl_array_object_new_ex()
/PHP-5.5/ext/soap/
H A Dphp_http.c482 php_url *orig; in make_http_soap_request() local
484 … (orig = (php_url *) zend_fetch_resource(tmp TSRMLS_CC, -1, "httpurl", NULL, 1, le_url)) != NULL && in make_http_soap_request()
486 (((use_ssl && orig->scheme != NULL && strcmp(orig->scheme, "https") == 0) || in make_http_soap_request()
487 (!use_ssl && orig->scheme == NULL) || in make_http_soap_request()
488 (!use_ssl && strcmp(orig->scheme, "https") != 0)) && in make_http_soap_request()
489 strcmp(orig->host, phpurl->host) == 0 && in make_http_soap_request()
490 orig->port == phpurl->port))) { in make_http_soap_request()
H A Dphp_encoding.c3478 xmlNodePtr orig = node; in xmlSearchNsPrefixByHref() local
3496 if (orig != node) { in xmlSearchNsPrefixByHref()
/PHP-5.5/ext/snmp/tests/
H A Dsnmp-object.phpt35 $orig = array('.1.3.6.1.2.1.1.1.0', '.1.3.6.1.2.1.1.5.0');
36 $result = $session->get($orig, TRUE);
37 foreach($orig as $oid){
/PHP-5.5/ext/phar/
H A Dfunc_interceptors.c808 #define PharFileFunction(fname, funcnum, orig) \ argument
811 PHAR_G(orig)(INTERNAL_FUNCTION_PARAM_PASSTHRU); \
820 …phar_file_stat(filename, (php_stat_len) filename_len, funcnum, PHAR_G(orig), INTERNAL_FUNCTION_PAR…
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; in phar_intercept_functions_init() local
1095 …##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; in phar_intercept_functions_shutdown() local
/PHP-5.5/ext/pgsql/
H A Dpgsql.c966 int orig; in _rollback_transactions() local
985 orig = PGG(ignore_notices); in _rollback_transactions()
995 PGG(ignore_notices) = orig; in _rollback_transactions()
/PHP-5.5/ext/mbstring/oniguruma/
H A DHISTORY1753 2003/02/10: [inst] change backup file suffix name from '.orig' to '.ruby_orig'.
1765 2003/02/07: [inst] change backup file suffix name from '.orig' to '.ruby_orig'.

Completed in 88 milliseconds

12345