| /PHP_5_3/TSRM/ |
| H A D | TSRM.c | 307 /* fetches the requested resource for the current thread */ 324 /* Fast path for looking up the resources for the current 332 TSRM_ERROR((TSRM_ERROR_LEVEL_INFO, "Fetching resource id %d for current thread %d", id, (long) thread_resources->thread_id)); 382 * it is not linked into the TSRM hash, and not marked as the current interpreter */ 407 tsrm_tls_entry *current; local 409 current = tsrm_tls_get(); 411 /* TODO: unlink current from the global linked list, and replace it 418 return current; 425 tsrm_tls_entry *new_ctx, *current; local 431 current [all...] |
| /PHP_5_3/ext/spl/examples/ |
| H A D | class_tree.php | 82 function current() function
|
| /PHP_5_3/ext/spl/ |
| H A D | spl.php | 195 * default autoload function. If not given just return the current list. 555 /** Return the current element. 557 function current(); function 559 /** Return the key of the current element. 567 /** Check if there is a current element after calls to rewind() or next(). 646 /** @return current flags 767 * @return current flags 842 /** @copydoc Iterator::current */ 843 function current() {/**/} function 878 /** @return The current entrie 1011 function current() {/**/} function 1064 function current() {/**/} function 1115 function current() {/**/} function [all...] |
| H A D | spl_directory.h | 58 zval *current; member in struct:__anon180 124 #define SPL_FILE_DIR_CURRENT_AS_FILEINFO 0x00000000 /* make RecursiveDirectoryTree::current() return SplFileInfo */ 125 #define SPL_FILE_DIR_CURRENT_AS_SELF 0x00000010 /* make RecursiveDirectoryTree::current() return getSelf() */ 126 #define SPL_FILE_DIR_CURRENT_AS_PATHNAME 0x00000020 /* make RecursiveDirectoryTree::current() return getPathname() */ 127 #define SPL_FILE_DIR_CURRENT_MODE_MASK 0x000000F0 /* mask RecursiveDirectoryTree::current() */
|
| H A D | spl_iterators.h | 132 } current; member in struct:_spl_dual_it_object
|
| H A D | spl_fixedarray.c | 60 int current; member in struct:_spl_fixedarray_object 220 intern->current = 0; 256 zend_hash_find(&class_type->function_table, "current", sizeof("current"), (void **) &class_type->iterator_funcs.zf_current); 857 iterator->object->current = 0; 871 if (iterator->object->current >= 0 && iterator->object->array && iterator->object->current < iterator->object->array->size) { 889 ZVAL_LONG(zindex, iterator->object->current); 910 *int_key = (ulong) iterator->object->current; 926 iterator->object->current [all...] |
| H A D | spl_dllist.c | 54 #define SPL_DLLIST_IT_DELETE 0x00000001 /* Delete flag makes the iterator delete the current element on next */ 144 spl_ptr_llist_element *current = llist->head, *next; local 147 while (current) { 148 next = current->next; 149 if(current && dtor) { 150 dtor(current TSRMLS_CC); 152 SPL_LLIST_DELREF(current); 153 current = next; 163 spl_ptr_llist_element *current; local 167 current 320 spl_ptr_llist_element *current = from->head, *next; local 509 spl_ptr_llist_element *current = intern->llist->head, *next; local [all...] |
| /PHP_5_3/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_element.c | 588 xml_element* current; member in struct:_xml_elem_data 602 c = mydata->current; 604 mydata->current = xml_elem_new(); 605 mydata->current->name = (char*)strdup(name); 606 mydata->current->parent = c; 614 Q_PushTail(&mydata->current->attrs, attr); 627 if(mydata && mydata->current && mydata->current->parent) { 628 Q_PushTail(&mydata->current->parent->children, mydata->current); [all...] |
| /PHP_5_3/ext/intl/resourcebundle/ |
| H A D | resourcebundle_iterator.h | 29 zval *current; member in struct:__anon185
|
| /PHP_5_3/ext/curl/ |
| H A D | interface.c | 2044 zval **current; local 2061 zend_hash_get_current_data(postfields, (void **) ¤t) == SUCCESS; 2065 SEPARATE_ZVAL(current); 2066 convert_to_string_ex(current); 2070 postval = Z_STRVAL_PP(current); 2079 if ((type = php_memnstr(postval, ";type=", sizeof(";type=") - 1, postval + Z_STRLEN_PP(current)))) { 2082 if ((filename = php_memnstr(postval, ";filename=", sizeof(";filename=") - 1, postval + Z_STRLEN_PP(current)))) { 2108 CURLFORM_CONTENTSLENGTH, (long)Z_STRLEN_PP(current), 2144 zval **current; local 2156 zend_hash_get_current_data(ph, (void **) ¤t) [all...] |
| /PHP_5_3/ext/date/lib/ |
| H A D | parse_iso_intervals.c | 922 timelib_time *current; local 925 current = s->end; 928 current = s->begin; 933 current->y = timelib_get_nr((char **) &ptr, 4); 934 current->m = timelib_get_nr((char **) &ptr, 2); 935 current->d = timelib_get_nr((char **) &ptr, 2); 936 current->h = timelib_get_nr((char **) &ptr, 2); 937 current->i = timelib_get_nr((char **) &ptr, 2); 938 current->s = timelib_get_nr((char **) &ptr, 2);
|
| /PHP_5_3/ext/date/ |
| H A D | php_date.h | 144 timelib_time *current; member in struct:_php_period_obj
|
| /PHP_5_3/ext/mysqli/ |
| H A D | mysqli_api.c | 547 Request the current charset, or it will be reset to the system one. 743 php_mysqli_stmt_copy_it(zval *** copies, zval *original, uint param_count, uint current) argument 748 MAKE_STD_ZVAL((*copies)[current]); 749 *(*copies)[current] = *original; 750 Z_SET_REFCOUNT_P((*copies)[current], 1); 751 zval_copy_ctor((*copies)[current]); 1231 Get current field offset of result pointer */ 1885 Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection */ 1906 Undo actions from current transaction */ 2183 Get current syste [all...] |
| H A D | mysqli_nonapi.c | 570 int i = 0, current = 0; local 596 (*out_array)[current++] = mysql->mysql;
|
| /PHP_5_3/ext/pdo_dblib/ |
| H A D | php_pdo_dblib_int.h | 137 int current; member in struct:__anon131
|
| /PHP_5_3/ext/session/ |
| H A D | session.c | 616 "verify that the current setting of session.save_path " 863 zval *current; local 892 ALLOC_INIT_ZVAL(current); 893 if (php_var_unserialize(¤t, (const unsigned char **) &p, (const unsigned char *) endptr, &var_hash TSRMLS_CC)) { 894 php_set_session_var(name, namelen, current, &var_hash TSRMLS_CC); 896 zval_ptr_dtor(¤t); 951 zval *current; local 984 ALLOC_INIT_ZVAL(current); 985 if (php_var_unserialize(¤t, (const unsigned char **) &q, (const unsigned char *) endptr, &var_hash TSRMLS_CC)) { 986 php_set_session_var(name, namelen, current, [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | base64.c | 58 const unsigned char *current = str; local 73 *p++ = base64_table[current[0] >> 2]; 74 *p++ = base64_table[((current[0] & 0x03) << 4) + (current[1] >> 4)]; 75 *p++ = base64_table[((current[1] & 0x0f) << 2) + (current[2] >> 6)]; 76 *p++ = base64_table[current[2] & 0x3f]; 78 current += 3; 84 *p++ = base64_table[current[0] >> 2]; 86 *p++ = base64_table[((current[ 145 const unsigned char *current = str; local [all...] |
| H A D | php_array.h | 48 PHP_FUNCTION(current); variable
|
| H A D | scanf.c | 588 zval **current; local 748 current = args[objIndex++]; 749 refcount = Z_REFCOUNT_PP(current); 750 zval_dtor( *current ); 751 ZVAL_LONG( *current, (long)(string - baseString) ); 752 Z_SET_REFCOUNT_PP(current, refcount); 753 Z_SET_ISREF_PP(current); 872 current = args[objIndex++]; 873 refcount = Z_REFCOUNT_PP(current); 874 zval_dtor( *current ); [all...] |
| /PHP_5_3/main/ |
| H A D | SAPI.c | 511 zend_llist_element *current=l->head; local 513 while (current) { 514 header = (sapi_header_struct *)(current->data); 515 next = current->next; 518 if (current->prev) { 519 current->prev->next = next; 524 next->prev = current->prev; 526 l->tail = current->prev; 529 efree(current); 532 current [all...] |
| /PHP_5_3/main/streams/ |
| H A D | filter.c | 436 php_stream_filter *current; local 449 for(current = filter; current; current = current->next) {
|
| /PHP_5_3/Zend/ |
| H A D | zend_dynamic_array.c | 27 unsigned int current; member in struct:_dynamic_array 35 da->current = 0; 45 if (da->current == da->allocated) { 49 return (void *)(da->array+(da->current++)*da->element_size); 54 return (void *)(da->array+(--(da->current))*da->element_size); 60 if (index >= da->current) {
|
| H A D | zend_gc.c | 414 gc_root_buffer *current = GC_G(roots).next; local 416 while (current != &GC_G(roots)) { 417 if (current->handle) { 419 struct _store_object *obj = &EG(objects_store).object_buckets[current->handle].bucket.obj; 425 Z_OBJ_HANDLE(z) = current->handle; 426 Z_OBJ_HT(z) = current->u.handlers; 430 GC_REMOVE_FROM_BUFFER(current); 434 if (GC_ZVAL_GET_COLOR(current->u.pz) == GC_PURPLE) { 435 zval_mark_grey(current->u.pz TSRMLS_CC); 437 GC_ZVAL_SET_ADDRESS(current 526 gc_root_buffer *current = GC_G(roots).next; local 627 gc_root_buffer *current = GC_G(roots).next; local [all...] |
| H A D | zend_hash.c | 1083 HashPosition *current = pos ? pos : &ht->pInternalPointer; local 1087 if (*current) { 1088 *current = (*current)->pListNext; 1096 HashPosition *current = pos ? pos : &ht->pInternalPointer; local 1100 if (*current) { 1101 *current = (*current)->pListLast; 1172 /* This function changes key of current element without changing elements' 1234 /* delete current bucke [all...] |
| H A D | zend_llist.c | 73 #define DEL_LLIST_ELEMENT(current, l) \ 74 if ((current)->prev) {\ 75 (current)->prev->next = (current)->next;\ 77 (l)->head = (current)->next;\ 79 if ((current)->next) {\ 80 (current)->next->prev = (current)->prev;\ 82 (l)->tail = (current)->prev;\ 85 (l)->dtor((current) 93 zend_llist_element *current=l->head; local 109 zend_llist_element *current=l->head, *next; local 262 zend_llist_position *current = pos ? pos : &l->traverse_ptr; local 275 zend_llist_position *current = pos ? pos : &l->traverse_ptr; local 288 zend_llist_position *current = pos ? pos : &l->traverse_ptr; local 302 zend_llist_position *current = pos ? pos : &l->traverse_ptr; local [all...] |