| /PHP_5_4/ext/spl/ |
| H A D | spl.php | 694 * @param $newval new value to store at offset $index 696 function offsetSet($index, $newval) {/**/} 806 * @param $newval new value to store at offset $index 808 function offsetSet($index, $newval) {/**/}
|
| H A D | spl_iterators.c | 2777 /* {{{ proto void CachingIterator::offsetSet(mixed index, mixed newval) 2983 ZEND_ARG_INFO(0, newval)
|
| H A D | spl_fixedarray.c | 823 /* {{{ proto void SplFixedArray::offsetSet(mixed $index, mixed $newval) U 824 Sets the value at the specified $index to $newval. */ 1072 ZEND_ARG_INFO(0, newval)
|
| H A D | spl_array.c | 407 zval *newval; local 410 MAKE_STD_ZVAL(newval); 411 *newval = **ret; 412 zval_copy_ctor(newval); 413 Z_SET_REFCOUNT_P(newval, 1); 417 *ret = newval; 709 /* {{{ proto void ArrayObject::offsetSet(mixed $index, mixed $newval) 710 proto void ArrayIterator::offsetSet(mixed $index, mixed $newval) 711 Sets the value at the specified $index to $newval. */ 742 /* {{{ proto void ArrayObject::append(mixed $newval) [all...] |
| H A D | spl_dllist.c | 813 /* {{{ proto void SplDoublyLinkedList::offsetSet(mixed $index, mixed $newval) U 814 Sets the value at the specified $index to $newval. */ 1292 ZEND_ARG_INFO(0, newval)
|
| /PHP_5_4/ext/dom/ |
| H A D | attr.c | 170 int dom_attr_value_write(dom_object *obj, zval *newval TSRMLS_DC) 186 if (newval->type != IS_STRING) { 187 if(Z_REFCOUNT_P(newval) > 1) { 188 value_copy = *newval; 190 newval = &value_copy; 192 convert_to_string(newval); 195 xmlNodeSetContentLen((xmlNodePtr) attrp, Z_STRVAL_P(newval), Z_STRLEN_P(newval) + 1); 197 if (newval == &value_copy) { 198 zval_dtor(newval); [all...] |
| H A D | characterdata.c | 103 int dom_characterdata_data_write(dom_object *obj, zval *newval TSRMLS_DC) 115 if (newval->type != IS_STRING) { 116 if(Z_REFCOUNT_P(newval) > 1) { 117 value_copy = *newval; 119 newval = &value_copy; 121 convert_to_string(newval); 124 xmlNodeSetContentLen(nodep, Z_STRVAL_P(newval), Z_STRLEN_P(newval) + 1); 126 if (newval == &value_copy) { 127 zval_dtor(newval); [all...] |
| H A D | document.c | 351 int dom_document_encoding_write(dom_object *obj, zval *newval TSRMLS_DC) 364 if (newval->type != IS_STRING) { 365 if(Z_REFCOUNT_P(newval) > 1) { 366 value_copy = *newval; 368 newval = &value_copy; 370 convert_to_string(newval); 373 handler = xmlFindCharEncodingHandler(Z_STRVAL_P(newval)); 380 docp->encoding = xmlStrdup((const xmlChar *) Z_STRVAL_P(newval)); 385 if (newval == &value_copy) { 386 zval_dtor(newval); [all...] |
| H A D | dom_properties.h | 28 int dom_attr_value_write(dom_object *obj, zval *newval TSRMLS_DC); 34 int dom_characterdata_data_write(dom_object *obj, zval *newval TSRMLS_DC); 42 int dom_document_actual_encoding_write(dom_object *obj, zval *newval TSRMLS_DC); 44 int dom_document_encoding_write(dom_object *obj, zval *newval TSRMLS_DC); 46 int dom_document_standalone_write(dom_object *obj, zval *newval TSRMLS_DC); 48 int dom_document_version_write(dom_object *obj, zval *newval TSRMLS_DC); 50 int dom_document_strict_error_checking_write(dom_object *obj, zval *newval TSRMLS_DC); 52 int dom_document_document_uri_write(dom_object *obj, zval *newval TSRMLS_DC); 55 int dom_document_format_output_write(dom_object *obj, zval *newval TSRMLS_DC); 57 int dom_document_validate_on_parse_write(dom_object *obj, zval *newval TSRMLS_D [all...] |
| H A D | entity.c | 141 int dom_entity_actual_encoding_write(dom_object *obj, zval *newval TSRMLS_DC) 160 int dom_entity_encoding_write(dom_object *obj, zval *newval TSRMLS_DC) 179 int dom_entity_version_write(dom_object *obj, zval *newval TSRMLS_DC)
|
| H A D | node.c | 332 int dom_node_node_value_write(dom_object *obj, zval *newval TSRMLS_DC) 355 if (newval->type != IS_STRING) { 356 if(Z_REFCOUNT_P(newval) > 1) { 357 value_copy = *newval; 359 newval = &value_copy; 361 convert_to_string(newval); 363 xmlNodeSetContentLen(nodep, Z_STRVAL_P(newval), Z_STRLEN_P(newval) + 1); 364 if (newval == &value_copy) { 365 zval_dtor(newval); [all...] |
| H A D | php_dom.c | 103 typedef int (*dom_write_t)(dom_object *obj, zval *newval TSRMLS_DC); 288 static int dom_write_na(dom_object *obj, zval *newval TSRMLS_DC)
|
| H A D | processinginstruction.c | 147 int dom_processinginstruction_data_write(dom_object *obj, zval *newval TSRMLS_DC) 159 if (newval->type != IS_STRING) { 160 if(Z_REFCOUNT_P(newval) > 1) { 161 value_copy = *newval; 163 newval = &value_copy; 165 convert_to_string(newval); 168 xmlNodeSetContentLen(nodep, Z_STRVAL_P(newval), Z_STRLEN_P(newval) + 1); 170 if (newval == &value_copy) { 171 zval_dtor(newval); [all...] |
| /PHP_5_4/ext/ldap/ |
| H A D | ldap.c | 1654 /* {{{ proto bool ldap_set_option(resource link, int option, mixed newval) 1658 zval *link, **newval; local 1663 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zlZ", &link, &option, &newval) != SUCCESS) { 1687 convert_to_long_ex(newval); 1688 val = Z_LVAL_PP(newval); 1698 convert_to_long_ex(newval); 1699 timeout.tv_sec = Z_LVAL_PP(newval); 1710 convert_to_long_ex(newval); 1711 timeout = 1000 * Z_LVAL_PP(newval); /* Convert to milliseconds */ 1733 convert_to_string_ex(newval); [all...] |
| /PHP_5_4/ext/snmp/ |
| H A D | php_snmp.h | 103 typedef int (*php_snmp_write_t)(php_snmp_object *snmp_object, zval *newval TSRMLS_DC);
|
| H A D | snmp.c | 2193 static int php_snmp_write_info(php_snmp_object *snmp_object, zval *newval TSRMLS_DC) 2201 static int php_snmp_write_max_oids(php_snmp_object *snmp_object, zval *newval TSRMLS_DC) 2206 if (Z_TYPE_P(newval) == IS_NULL) { 2211 if (Z_TYPE_P(newval) != IS_LONG) { 2212 ztmp = *newval; 2215 newval = &ztmp; 2218 if (Z_LVAL_P(newval) > 0) { 2219 snmp_object->max_oids = Z_LVAL_P(newval); 2221 php_error_docref(NULL TSRMLS_CC, E_WARNING, "max_oids should be positive integer or NULL, got %ld", Z_LVAL_P(newval)); 2224 if (newval [all...] |
| /PHP_5_4/ext/xmlreader/ |
| H A D | php_xmlreader.c | 45 typedef int (*xmlreader_write_t)(xmlreader_object *obj, zval *newval TSRMLS_DC);
|
| /PHP_5_4/ext/mysqli/ |
| H A D | mysqli.c | 80 typedef int (*mysqli_write_t)(mysqli_object *obj, zval *newval TSRMLS_DC); 302 static int mysqli_write_na(mysqli_object *obj, zval *newval TSRMLS_DC)
|
| /PHP_5_4/ext/standard/ |
| H A D | streamsfuncs.c | 486 zval *newval; local 496 MAKE_STD_ZVAL(newval); 497 MAKE_COPY_ZVAL(&stream->wrapperdata, newval); 499 add_assoc_zval(return_value, "wrapper_data", newval); 512 MAKE_STD_ZVAL(newval); 513 array_init(newval); 516 add_next_index_string(newval, (char *)filter->fops->label, 1); 519 add_assoc_zval(return_value, "filters", newval);
|