Home
last modified time | relevance | path

Searched refs:val (Results 176 – 200 of 411) sorted by relevance

12345678910>>...17

/PHP-5.5/ext/openssl/
H A Dopenssl.c594 subitem = val; in add_assoc_name_entry()
1268 if (!(Z_TYPE_PP(val) == IS_STRING || Z_TYPE_PP(val) == IS_OBJECT)) { in php_openssl_x509_from_zval()
1292 in = BIO_new_mem_buf(Z_STRVAL_PP(val), Z_STRLEN_PP(val)); in php_openssl_x509_from_zval()
2392 in = BIO_new_mem_buf(Z_STRVAL_PP(val), Z_STRLEN_PP(val)); in php_openssl_csr_from_zval()
2888 in = BIO_new_mem_buf(Z_STRVAL_PP(val), Z_STRLEN_PP(val)); in php_openssl_evp_from_zval()
2906 in = BIO_new_mem_buf(Z_STRVAL_PP(val), Z_STRLEN_PP(val)); in php_openssl_evp_from_zval()
4210 unsigned long val; in PHP_FUNCTION() local
4217 if (val) { in PHP_FUNCTION()
4540 zval **val; in verify_callback() local
4575 zval **val = NULL; in php_openssl_apply_verification_policy() local
[all …]
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c942 zval val; in do_fetch() local
950 INIT_PZVAL(&val); in do_fetch()
962 zval_dtor(&val); in do_fetch()
1044 zval *val; in do_fetch() local
1045 MAKE_STD_ZVAL(val); in do_fetch()
1073 Z_ADDREF_P(val); in do_fetch()
1122 val TSRMLS_CC); in do_fetch()
1123 zval_ptr_dtor(&val); in do_fetch()
1130 val TSRMLS_CC); in do_fetch()
2680 zval *val; in row_get_properties() local
[all …]
/PHP-5.5/ext/pdo/tests/
H A Dpdo_008.phpt17 $db->exec('CREATE TABLE test(id CHAR(1) NOT NULL PRIMARY KEY, val VARCHAR(10))');
22 $stmt = $db->prepare('SELECT val, id from test');
H A Dpdo_006.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))');
22 $stmt = $db->prepare('SELECT val, id from test');
/PHP-5.5/ext/standard/tests/array/
H A Darray_uintersect_basic.phpt11 function cr($val) {
12 $this->priv_member = $val;
H A Darray_udiff_assoc_basic.phpt11 function cr($val) {
12 $this->priv_member = $val;
H A Darray_uintersect_uassoc_basic.phpt11 function cr($val) {
12 $this->priv_member = $val;
H A Darray_udiff_uassoc_basic.phpt11 function cr($val) {
12 $this->priv_member = $val;
/PHP-5.5/ext/spl/tests/
H A Darray_003.phpt31 foreach($test as $key => $val)
33 echo "$key => $val\n";
H A Darray_007.phpt35 foreach($test as $key => $val)
37 echo "$key => $val\n";
/PHP-5.5/ext/session/
H A Dmod_files.c375 *val = STR_EMPTY_ALLOC(); in PS_READ_FUNC()
379 *val = emalloc(sbuf.st_size); in PS_READ_FUNC()
382 n = pread(data->fd, *val, sbuf.st_size, 0); in PS_READ_FUNC()
385 n = read(data->fd, *val, sbuf.st_size); in PS_READ_FUNC()
394 efree(*val); in PS_READ_FUNC()
418 n = pwrite(data->fd, val, vallen, 0); in PS_WRITE_FUNC()
421 n = write(data->fd, val, vallen); in PS_WRITE_FUNC()
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c278 p = string->val; in mbfl_buffer_converter_feed2()
496 p = string->val; in mbfl_encoding_detector_feed()
610 p = string->val; in mbfl_convert_encoding()
659 p = string->val; in mbfl_identify_encoding()
742 p = string->val; in mbfl_identify_encoding2()
833 p = string->val; in mbfl_strlen()
855 p = string->val; in mbfl_strlen()
961 p = string->val; in mbfl_oddlen()
1213 p = needle->val; in mbfl_substr_count()
1912 p = string->val; in mbfl_strimwidth()
[all …]
/PHP-5.5/ext/xmlwriter/tests/
H A D008.phpt15 xmlwriter_text($xw, "val");
34 <!ENTITY ent "val">
/PHP-5.5/ext/session/tests/
H A D024.phpt33 function write($key, $val)
35 print "WRITE: $key, $val\n";
36 $GLOBALS["hnd"]->data = $val;
H A D004.phpt32 function write($key, $val)
34 print "WRITE: $key, $val\n";
35 $GLOBALS["hnd"]->data = $val;
/PHP-5.5/ext/fileinfo/libmagic/
H A Dapprentice.c714 val = 0; in apprentice_magic_strength()
722 val = 0; in apprentice_magic_strength()
726 val += MULT; in apprentice_magic_strength()
736 val -= MULT; in apprentice_magic_strength()
745 val = 1; in apprentice_magic_strength()
771 val++; in apprentice_magic_strength()
772 return val; in apprentice_magic_strength()
2336 int val; in getstr() local
2443 val = (val << 3) | (c - '0'); in getstr()
2446 val = (val << 3) | (c-'0'); in getstr()
[all …]
/PHP-5.5/ext/bcmath/libbcmath/src/
H A Drecmul.c116 _bc_shift_addsub (bc_num accum, bc_num val, int shift, int sub) in _bc_shift_addsub() argument
121 count = val->n_len; in _bc_shift_addsub()
122 if (val->n_value[0] == 0) in _bc_shift_addsub()
129 valp = (signed char *)(val->n_value + val->n_len - 1); in _bc_shift_addsub()
H A Doutput.c61 bc_out_long (val, size, space, out_char) in bc_out_long() argument
62 long val; in bc_out_long()
74 snprintf(digits, sizeof(digits), "%ld", val);
/PHP-5.5/ext/soap/tests/
H A Dclassmap004.phpt17 function __set($name, $val) {
18 $this->a[$name] = $val;
/PHP-5.5/ext/posix/
H A Dposix.c383 long val; \
384 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &val) == FAILURE) RETURN_FALSE; \
385 if (func_name(val) < 0) { \
581 long val; in PHP_FUNCTION() local
582 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &val) == FAILURE) { in PHP_FUNCTION()
586 if ((val = getpgid(val)) < 0) { in PHP_FUNCTION()
590 RETURN_LONG(val); in PHP_FUNCTION()
600 long val; in PHP_FUNCTION() local
601 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &val) == FAILURE) { in PHP_FUNCTION()
605 if ((val = getsid(val)) < 0) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxmlrpc_introspection.c324 name = attr_iter->val; in xml_element_to_method_description()
327 type = attr_iter->val; in xml_element_to_method_description()
330 basetype = attr_iter->val; in xml_element_to_method_description()
333 desc = attr_iter->val; in xml_element_to_method_description()
336 if(attr_iter->val && !strcmp(attr_iter->val, "yes")) { in xml_element_to_method_description()
341 def = attr_iter->val; in xml_element_to_method_description()
H A Dxml_to_soap.c68 static xml_element_attr* new_attr(const char* key, const char* val) { in new_attr() argument
72 attr->val = val ? strdup(val) : NULL; in new_attr()
272 type = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker()
276 arrayType = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker()
280 b_must_understand = strchr(attr_iter->val, '1') ? 1 : 0; in xml_element_to_SOAP_REQUEST_worker()
284 actor = attr_iter->val; in xml_element_to_SOAP_REQUEST_worker()
/PHP-5.5/sapi/fpm/fpm/
H A Dfastcgi.c546 char *val; in fcgi_read_request() local
555 val = estrdup("RESPONDER"); in fcgi_read_request()
556 zend_hash_update(req->env, "FCGI_ROLE", sizeof("FCGI_ROLE"), &val, sizeof(char*), NULL); in fcgi_read_request()
559 val = estrdup("AUTHORIZER"); in fcgi_read_request()
563 val = estrdup("FILTER"); in fcgi_read_request()
1085 char **val; local
1089 if (zend_hash_find(req->env, (char*)var, var_len+1, (void**)&val) == SUCCESS) {
1090 return *val;
1095 char* fcgi_putenv(fcgi_request *req, char* var, int var_len, char* val) argument
1098 if (val == NULL) {
[all …]
/PHP-5.5/ext/standard/
H A Dphp_filestat.h64 #define MAKE_LONG_ZVAL_INCREF(name, val)\ argument
66 ZVAL_LONG(name, val); \
/PHP-5.5/sapi/roxen/
H A Droxen.c519 zvalue->value.str.val = estrndup(buf, zvalue->value.str.len); \
532 struct svalue *ind, *val; in php_roxen_hash_environment() local
543 val = low_mapping_lookup(headers->u.mapping, ind); in php_roxen_hash_environment()
545 val && val->type == PIKE_T_STRING) { in php_roxen_hash_environment()
552 zvalue->value.str.len = val->u.string->len; in php_roxen_hash_environment()
553 zvalue->value.str.val = estrndup(val->u.string->str, zvalue->value.str.len); in php_roxen_hash_environment()

Completed in 106 milliseconds

12345678910>>...17