| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | btree_rb.c | 257 * A string-manipulation helper function for check_redblack_tree(). If (orig == 258 * NULL) a copy of val is returned. If (orig != NULL) then a copy of the * 259 * concatenation of orig and val is returned. The original orig is deleted 262 static char *append_val(char * orig, char const * val){ argument 264 if( !orig ){ 268 sqliteSetString(&z, orig, val, (char*)0); 269 sqliteFree( orig ); 275 * Append a string representation of the entire node to orig and return it. 279 static char *append_node(char * orig, BtRbNod argument [all...] |
| /PHP_5_3/ |
| 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_3/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_3/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_3/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_3/ext/dom/ |
| H A D | dom_iterators.c | 72 ret->orig = NULL;
|
| /PHP_5_3/ext/mbstring/ |
| H A D | mbstring.c | 1400 zend_function *func, *orig; local 1434 strlen(p->save_func)+1, (void **)&orig) != SUCCESS) { 1438 if (zend_hash_find(EG(function_table), p->orig_func, strlen(p->orig_func)+1, (void **)&orig) != SUCCESS) { 1442 zend_hash_add(EG(function_table), p->save_func, strlen(p->save_func)+1, orig, sizeof(zend_function), NULL); 1470 zend_function *orig; local 1496 strlen(p->save_func)+1, (void **)&orig) == SUCCESS) { 1498 zend_hash_update(EG(function_table), p->orig_func, strlen(p->orig_func)+1, orig, sizeof(zend_function), NULL);
|
| /PHP_5_3/ext/soap/ |
| H A D | php_encoding.c | 3503 xmlNodePtr orig = node; local 3521 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_3/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 403 if (orig) { 404 spl_heap_object *other = (spl_heap_object*)zend_object_store_get_object(orig TSRMLS_CC);
|
| H A D | spl_observer.c | 198 static zend_object_value spl_object_storage_new_ex(zend_class_entry *class_type, spl_SplObjectStorage **obj, zval *orig TSRMLS_DC) /* {{{ */ 216 if (orig) { 217 spl_SplObjectStorage *other = (spl_SplObjectStorage*)zend_object_store_get_object(orig TSRMLS_CC);
|
| H A D | spl_fixedarray.c | 205 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 223 if (orig && clone_orig) { 224 spl_fixedarray_object *other = (spl_fixedarray_object*)zend_object_store_get_object(orig TSRMLS_CC);
|
| H A D | spl_array.c | 163 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 184 if (orig) { 185 spl_array_object *other = (spl_array_object*)zend_object_store_get_object(orig TSRMLS_CC); 192 if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayObject) { 197 if (Z_OBJ_HT_P(orig) == &spl_handler_ArrayIterator) { 201 intern->array = orig;
|
| H A D | spl_dllist.c | 366 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 385 if (orig) { 386 spl_dllist_object *other = (spl_dllist_object*)zend_object_store_get_object(orig TSRMLS_CC);
|
| /PHP_5_3/Zend/ |
| H A D | zend_alloc.c | 1104 zend_mm_free_block *p, *q, *orig; local 1110 orig = ZEND_MM_SMALL_FREE_BUCKET(heap, 0); 1113 while (q->prev_free_block != orig) { 1118 while (q->next_free_block != orig) { 1123 orig = (zend_mm_free_block*)((char*)orig + sizeof(zend_mm_free_block*) * 2);
|
| H A D | zend_ini.c | 346 ZEND_API long zend_ini_long(char *name, uint name_length, int orig) /* {{{ */ argument 352 if (orig && ini_entry->modified) { 363 ZEND_API double zend_ini_double(char *name, uint name_length, int orig) /* {{{ */ argument 369 if (orig && ini_entry->modified) { 380 ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists) /* {{{ */ argument 390 if (orig && ini_entry->modified) { 404 ZEND_API char *zend_ini_string(char *name, uint name_length, int orig) /* {{{ */ argument 409 return_value = zend_ini_string_ex(name, name_length, orig, &exists);
|
| H A D | zend_ini.h | 104 ZEND_API long zend_ini_long(char *name, uint name_length, int orig); 105 ZEND_API double zend_ini_double(char *name, uint name_length, int orig); 106 ZEND_API char *zend_ini_string(char *name, uint name_length, int orig); 107 ZEND_API char *zend_ini_string_ex(char *name, uint name_length, int orig, zend_bool *exists);
|
| H A D | zend_execute.c | 980 zval *orig = dim; local 982 ZVAL_NULL(orig); 1102 zval *orig = dim; local 1104 ZVAL_NULL(orig);
|
| /PHP_5_3/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_3/ext/pgsql/ |
| H A D | pgsql.c | 848 int orig; local 867 orig = PGG(ignore_notices); 877 PGG(ignore_notices) = orig;
|