| /PHP_TRUNK/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_TRUNK/ext/spl/examples/ |
| H A D | class_tree.php | 82 function current() function
|
| /PHP_TRUNK/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:__anon199 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_fixedarray.c | 60 int current; member in struct:_spl_fixedarray_object 237 intern->current = 0; 273 zend_hash_find(&class_type->function_table, "current", sizeof("current"), (void **) &class_type->iterator_funcs.zf_current); 906 iterator->object->current = 0; 920 if (iterator->object->current >= 0 && iterator->object->array && iterator->object->current < iterator->object->array->size) { 938 ZVAL_LONG(zindex, iterator->object->current); 959 ZVAL_LONG(key, iterator->object->current); 973 iterator->object->current [all...] |
| H A D | spl_iterators.h | 138 } current; member in struct:_spl_dual_it_object
|
| H A D | spl_dllist.c | 57 #define SPL_DLLIST_IT_DELETE 0x00000001 /* Delete flag makes the iterator delete the current element on next */ 147 spl_ptr_llist_element *current = llist->head, *next; local 150 while (current) { 151 next = current->next; 152 if(current && dtor) { 153 dtor(current TSRMLS_CC); 155 SPL_LLIST_DELREF(current); 156 current = next; 166 spl_ptr_llist_element *current; local 170 current 323 spl_ptr_llist_element *current = from->head, *next; local 511 spl_ptr_llist_element *current = intern->llist->head, *next; local 1140 spl_ptr_llist_element *current = intern->llist->head, *next; local [all...] |
| /PHP_TRUNK/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_TRUNK/ext/intl/breakiterator/ |
| H A D | codepointiterator_internal.cpp | 179 int32_t CodePointBreakIterator::current(void) const function in class:CodePointBreakIterator
|
| /PHP_TRUNK/ext/intl/common/ |
| H A D | common_enum.h | 58 zval *current; member in struct:__anon191
|
| /PHP_TRUNK/ext/intl/resourcebundle/ |
| H A D | resourcebundle_iterator.h | 29 zval *current; member in struct:__anon203
|
| /PHP_TRUNK/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 | 480 gc_root_buffer *current = GC_G(roots).next; local 482 while (current != &GC_G(roots)) { 483 if (current->handle) { 485 struct _store_object *obj = &EG(objects_store).object_buckets[current->handle].bucket.obj; 491 Z_OBJ_HANDLE(z) = current->handle; 492 Z_OBJ_HT(z) = current->u.handlers; 496 GC_REMOVE_FROM_BUFFER(current); 500 if (GC_ZVAL_GET_COLOR(current->u.pz) == GC_PURPLE) { 501 zval_mark_grey(current->u.pz TSRMLS_CC); 503 GC_ZVAL_SET_ADDRESS(current 616 gc_root_buffer *current = GC_G(roots).next; local 756 gc_root_buffer *current = GC_G(roots).next; local [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 107 zend_llist_element *current=l->head, *next; local 260 zend_llist_position *current = pos ? pos : &l->traverse_ptr; local 273 zend_llist_position *current = pos ? pos : &l->traverse_ptr; local 286 zend_llist_position *current = pos ? pos : &l->traverse_ptr; local 300 zend_llist_position *current = pos ? pos : &l->traverse_ptr; local [all...] |
| H A D | zend_hash.c | 1121 HashPosition *current = pos ? pos : &ht->pInternalPointer; local 1125 if (*current) { 1126 *current = (*current)->pListNext; 1134 HashPosition *current = pos ? pos : &ht->pInternalPointer; local 1138 if (*current) { 1139 *current = (*current)->pListLast; 1228 /* This function changes key of current element without changing elements' 1300 /* delete current bucke [all...] |
| /PHP_TRUNK/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 | 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...] |
| H A D | php_array.h | 48 PHP_FUNCTION(current); variable
|
| /PHP_TRUNK/main/ |
| H A D | SAPI.c | 597 zend_llist_element *current=l->head; local 599 while (current) { 600 header = (sapi_header_struct *)(current->data); 601 next = current->next; 604 if (current->prev) { 605 current->prev->next = next; 610 next->prev = current->prev; 612 l->tail = current->prev; 615 efree(current); 618 current [all...] |
| H A D | output.c | 671 * Output handler hook for output handler functions to check/modify the current handlers abilities */ 1204 php_output_handler **current, *orphan = OG(active); local 1234 if (SUCCESS == zend_stack_top(&OG(handlers), (void *) ¤t)) { 1235 OG(active) = *current; 1348 Clean (delete) the current output buffer */ 1369 Flush (send) the output buffer, and delete current output buffer */ 1386 Clean the output buffer, and delete current output buffer */ 1403 Get current buffer contents, flush (send) the output buffer, and delete current output buffer */ 1422 Get current buffe [all...] |
| /PHP_TRUNK/main/streams/ |
| H A D | filter.c | 436 php_stream_filter *current; local 449 for(current = filter; current; current = current->next) {
|
| /PHP_TRUNK/ext/mysqli/ |
| H A D | mysqli_nonapi.c | 644 int i = 0, current = 0; local 670 (*out_array)[current++] = mysql->mysql;
|
| H A D | mysqli_api.c | 552 Request the current charset, or it will be reset to the system one. 823 php_mysqli_stmt_copy_it(zval *** copies, zval *original, uint param_count, uint current) argument 828 MAKE_STD_ZVAL((*copies)[current]); 829 *(*copies)[current] = *original; 830 Z_SET_REFCOUNT_P((*copies)[current], 1); 831 zval_copy_ctor((*copies)[current]); 1311 Get current field offset of result pointer */ 1924 Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection */ 1946 Undo actions from current transaction */ 2234 Get current syste [all...] |
| /PHP_TRUNK/ext/date/lib/ |
| H A D | parse_iso_intervals.c | 887 timelib_time *current; local 890 current = s->end; 893 current = s->begin; 898 current->y = timelib_get_nr((char **) &ptr, 4); 899 current->m = timelib_get_nr((char **) &ptr, 2); 900 current->d = timelib_get_nr((char **) &ptr, 2); 901 current->h = timelib_get_nr((char **) &ptr, 2); 902 current->i = timelib_get_nr((char **) &ptr, 2); 903 current->s = timelib_get_nr((char **) &ptr, 2);
|
| /PHP_TRUNK/ext/date/ |
| H A D | php_date.h | 163 timelib_time *current; member in struct:_php_period_obj
|