/PHP-5.4/ext/intl/msgformat/ |
H A D | msgformat_attr.c | 65 int value_len = 0; in PHP_FUNCTION() local 72 &object, MessageFormatter_ce_ptr, &value, &value_len ) == FAILURE ) in PHP_FUNCTION() 82 intl_convert_utf8_to_utf16(&spattern, &spattern_len, value, value_len, &INTL_DATA_ERROR_CODE(mfo)); in PHP_FUNCTION() 103 mfo->mf_data.orig_format = estrndup(value, value_len); in PHP_FUNCTION() 104 mfo->mf_data.orig_format_len = value_len; in PHP_FUNCTION()
|
/PHP-5.4/ext/standard/ |
H A D | head.c | 76 PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, time_t expires, char… in php_setcookie() argument 98 encoded_value = php_url_encode(value, value_len, &encoded_value_len); in php_setcookie() 102 len += value_len; in php_setcookie() 113 if (value && value_len == 0) { in php_setcookie() 178 int name_len, value_len = 0, path_len = 0, domain_len = 0; in PHP_FUNCTION() local 181 &name_len, &value, &value_len, &expires, &path, in PHP_FUNCTION() 186 …if (php_setcookie(name, name_len, value, value_len, expires, path, path_len, domain, domain_len, s… in PHP_FUNCTION() 201 int name_len, value_len = 0, path_len = 0, domain_len = 0; in PHP_FUNCTION() local 204 &name_len, &value, &value_len, &expires, &path, in PHP_FUNCTION() 209 …if (php_setcookie(name, name_len, value, value_len, expires, path, path_len, domain, domain_len, s… in PHP_FUNCTION()
|
H A D | head.h | 34 PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, time_t expires, char…
|
H A D | url_scanner_ex.h | 31 PHPAPI int php_url_scanner_add_var(char *name, int name_len, char *value, int value_len, int urlenc…
|
/PHP-5.4/ext/dom/ |
H A D | cdatasection.c | 57 int value_len; in PHP_METHOD() local 61 …() TSRMLS_CC, getThis(), "Os", &id, dom_cdatasection_class_entry, &value, &value_len) == FAILURE) { in PHP_METHOD() 67 nodep = xmlNewCDataBlock(NULL, (xmlChar *) value, value_len); in PHP_METHOD()
|
H A D | comment.c | 57 int value_len; in PHP_METHOD() local 61 …ARGS() TSRMLS_CC, getThis(), "O|s", &id, dom_comment_class_entry, &value, &value_len) == FAILURE) { in PHP_METHOD()
|
H A D | processinginstruction.c | 58 int name_len, value_len, name_valid; in PHP_METHOD() local 62 …s", &id, dom_processinginstruction_class_entry, &name, &name_len, &value, &value_len) == FAILURE) { in PHP_METHOD()
|
H A D | text.c | 72 int value_len; in PHP_METHOD() local 76 …UM_ARGS() TSRMLS_CC, getThis(), "O|s", &id, dom_text_class_entry, &value, &value_len) == FAILURE) { in PHP_METHOD()
|
H A D | attr.c | 64 int name_len, value_len, name_valid; in PHP_METHOD() local 68 …, getThis(), "Os|s", &id, dom_attr_class_entry, &name, &name_len, &value, &value_len) == FAILURE) { in PHP_METHOD()
|
H A D | element.c | 163 int name_len, value_len = 0, name_valid; in PHP_METHOD() local 168 …s(), "Os|s!s", &id, dom_element_class_entry, &name, &name_len, &value, &value_len, &uri, &uri_len)… in PHP_METHOD() 218 if (value_len > 0) { in PHP_METHOD() 219 xmlNodeSetContentLen(nodep, (xmlChar *) value, value_len); in PHP_METHOD() 377 int ret, name_len, value_len, name_valid; in PHP_FUNCTION() local 381 …getThis(), "Oss", &id, dom_element_class_entry, &name, &name_len, &value, &value_len) == FAILURE) { in PHP_FUNCTION() 747 int uri_len = 0, name_len = 0, value_len = 0; in PHP_FUNCTION() local 753 …, &id, dom_element_class_entry, &uri, &uri_len, &name, &name_len, &value, &value_len) == FAILURE) { in PHP_FUNCTION()
|
H A D | document.c | 908 int ret, name_len, value_len; in PHP_FUNCTION() local 911 …tThis(), "Os|s", &id, dom_document_class_entry, &name, &name_len, &value, &value_len) == FAILURE) { in PHP_FUNCTION() 967 int ret, value_len; in PHP_FUNCTION() local 971 …ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_document_class_entry, &value, &value_len) == FAILURE) { in PHP_FUNCTION() 995 int ret, value_len; in PHP_FUNCTION() local 999 …ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_document_class_entry, &value, &value_len) == FAILURE) { in PHP_FUNCTION() 1023 int ret, value_len; in PHP_FUNCTION() local 1027 …ARGS() TSRMLS_CC, getThis(), "Os", &id, dom_document_class_entry, &value, &value_len) == FAILURE) { in PHP_FUNCTION() 1033 node = xmlNewCDataBlock(docp, (xmlChar *) value, value_len); in PHP_FUNCTION() 1051 int ret, value_len, name_len = 0; in PHP_FUNCTION() local [all …]
|
/PHP-5.4/sapi/fpm/fpm/ |
H A D | fpm_env.c | 47 int value_len = strlen(value); in setenv() local 48 char *var = alloca(name_len + 1 + value_len + 1); in setenv() 54 memcpy(var + name_len + 1, value, value_len); in setenv() 56 var[name_len + 1 + value_len] = '\0'; in setenv()
|
H A D | fpm_php.c | 87 int value_len = strlen(value); in fpm_php_apply_defines_ex() local 95 …if (fpm_php_zend_ini_alter_master(name, name_len+1, value, value_len, mode, PHP_INI_STAGE_ACTIVATE… in fpm_php_apply_defines_ex()
|
H A D | fastcgi.h | 133 void fcgi_set_mgmt_var(const char * name, size_t name_len, const char * value, size_t value_len);
|
/PHP-5.4/ext/intl/formatter/ |
H A D | formatter_attr.c | 302 int value_len = 0; in PHP_FUNCTION() local 309 &object, NumberFormatter_ce_ptr, &symbol, &value, &value_len ) == FAILURE ) in PHP_FUNCTION() 326 intl_convert_utf8_to_utf16(&svalue, &slength, value, value_len, &INTL_DATA_ERROR_CODE(nfo)); in PHP_FUNCTION() 390 int value_len = 0; in PHP_FUNCTION() local 397 &object, NumberFormatter_ce_ptr, &value, &value_len ) == FAILURE ) in PHP_FUNCTION() 408 intl_convert_utf8_to_utf16(&svalue, &slength, value, value_len, &INTL_DATA_ERROR_CODE(nfo)); in PHP_FUNCTION()
|
/PHP-5.4/win32/ |
H A D | registry.c | 72 DWORD name_len, type, value_len; in LoadDirectory() local 77 value_len = max_value+1; in LoadDirectory() 78 if (RegEnumValue(key, i, name, &name_len, NULL, &type, value, &value_len) == ERROR_SUCCESS) { in LoadDirectory() 92 Z_STRVAL_P(data) = zend_strndup(value, value_len-1); in LoadDirectory() 93 Z_STRLEN_P(data) = value_len-1; in LoadDirectory()
|
/PHP-5.4/sapi/apache2filter/ |
H A D | apache_config.c | 52 size_t value_len; member 69 e.value_len = strlen(value); in real_value_hnd() 175 …if (zend_alter_ini_entry(str, str_len, data->value, data->value_len, data->status, data->htaccess?… in apply_config()
|
/PHP-5.4/ext/dba/ |
H A D | dba_tcadb.c | 133 int value_len; in DBA_EXISTS_FUNC() local 135 value = tcadbget(dba->tcadb, key, keylen, &value_len); in DBA_EXISTS_FUNC()
|
/PHP-5.4/ext/intl/dateformat/ |
H A D | dateformat_attr.c | 255 int value_len = 0; in PHP_FUNCTION() local 265 &object, IntlDateFormatter_ce_ptr, &value, &value_len ) == FAILURE ) in PHP_FUNCTION() 275 intl_convert_utf8_to_utf16(&svalue, &slength, value, value_len, &INTL_DATA_ERROR_CODE(dfo)); in PHP_FUNCTION()
|
/PHP-5.4/sapi/apache2handler/ |
H A D | apache_config.c | 52 size_t value_len; member 69 e.value_len = strlen(value); in real_value_hnd() 197 …if (zend_alter_ini_entry(str, str_len, data->value, data->value_len, data->status, data->htaccess?… in apply_config()
|
/PHP-5.4/ext/oci8/ |
H A D | oci8_collection.c | 709 …ction_element_set(php_oci_collection *collection, long index, char *value, int value_len TSRMLS_DC) in php_oci_collection_element_set() 711 if (value_len == 0) { in php_oci_collection_element_set() 717 return php_oci_collection_element_set_date(collection, index, value, value_len TSRMLS_CC); in php_oci_collection_element_set() 721 return php_oci_collection_element_set_string(collection, index, value, value_len TSRMLS_CC); in php_oci_collection_element_set() 735 return php_oci_collection_element_set_number(collection, index, value, value_len TSRMLS_CC); in php_oci_collection_element_set()
|
/PHP-5.4/main/ |
H A D | rfc1867.c | 849 unsigned int value_len; local 850 char *value = multipart_buffer_read_body(mbuff, &value_len TSRMLS_CC); 855 value_len = 0; 861 …_encoding_converter(&new_value, &new_value_len, (unsigned char *)value, value_len, internal_encodi… 864 value_len = new_value_len; 868 …(max_input_vars) && sapi_module.input_filter(PARSE_POST, param, &value, value_len, &new_val_len TS… 897 event_formdata.length = value_len;
|
/PHP-5.4/sapi/cgi/ |
H A D | fastcgi.h | 141 void fcgi_set_mgmt_var(const char * name, size_t name_len, const char * value, size_t value_len);
|
/PHP-5.4/ext/pdo_firebird/ |
H A D | firebird_statement.c | 499 unsigned long value_len; in firebird_stmt_param_hook() local 593 value_len = 0; in firebird_stmt_param_hook() 596 if (firebird_stmt_get_col(stmt, param->paramno, &value, &value_len, &caller_frees TSRMLS_CC)) { in firebird_stmt_param_hook() 600 ZVAL_STRINGL(param->parameter, value, value_len, 1); in firebird_stmt_param_hook()
|
/PHP-5.4/ext/pdo/ |
H A D | pdo_stmt.c | 550 unsigned long value_len = 0; in fetch_value() local 559 value_len = 0; in fetch_value() 561 stmt->methods->get_col(stmt, colno, &value, &value_len, &caller_frees TSRMLS_CC); in fetch_value() 565 if (value && value_len == sizeof(zval)) { in fetch_value() 579 if (value && value_len == sizeof(long)) { in fetch_value() 587 if (value && value_len == sizeof(zend_bool)) { in fetch_value() 597 } else if (value_len == 0) { in fetch_value() 617 stm = php_stream_memory_open(TEMP_STREAM_TAKE_BUFFER, value, value_len); in fetch_value() 624 stm = php_stream_memory_open(TEMP_STREAM_READONLY, value, value_len); in fetch_value() 632 ZVAL_STRINGL(dest, value, value_len, !caller_frees); in fetch_value() [all …]
|