Home
last modified time | relevance | path

Searched refs:Z_LVAL_PP (Results 1 – 25 of 84) sorted by last modified time

1234

/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c149 r = (request_rec *)Z_LVAL_PP(addr); in get_apache_request()
/PHP-5.5/main/streams/
H A Duserspace.c898 ssb->sb.st_##name2 = Z_LVAL_PP(elem); \ in statbuf_from_array()
/PHP-5.5/ext/zip/
H A Dphp_zip.c360 opt = Z_LVAL_PP(option); in php_zip_parse_options()
/PHP-5.5/ext/xml/
H A Dxml.c1630 parser->case_folding = Z_LVAL_PP(val); in PHP_FUNCTION()
1634 parser->toffset = Z_LVAL_PP(val); in PHP_FUNCTION()
1638 parser->skipwhite = Z_LVAL_PP(val); in PHP_FUNCTION()
/PHP-5.5/ext/sysvmsg/
H A Dsysvmsg.c175 stat.msg_perm.uid = Z_LVAL_PP(item); in PHP_FUNCTION()
179 stat.msg_perm.gid = Z_LVAL_PP(item); in PHP_FUNCTION()
183 stat.msg_perm.mode = Z_LVAL_PP(item); in PHP_FUNCTION()
187 stat.msg_qbytes = Z_LVAL_PP(item); in PHP_FUNCTION()
/PHP-5.5/ext/standard/
H A Dtype.c75 const char *type_name = zend_rsrc_list_get_rsrc_type(Z_LVAL_PP(arg) TSRMLS_CC); in PHP_FUNCTION()
236 const char *type_name = zend_rsrc_list_get_rsrc_type(Z_LVAL_PP(arg) TSRMLS_CC); in php_is_type()
H A Dvar.c101 php_printf("%sbool(%s)\n", COMMON, Z_LVAL_PP(struc) ? "true" : "false"); in php_var_dump()
107 php_printf("%sint(%ld)\n", COMMON, Z_LVAL_PP(struc)); in php_var_dump()
159 const char *type_name = zend_rsrc_list_get_rsrc_type(Z_LVAL_PP(struc) TSRMLS_CC); in php_var_dump()
160 …php_printf("%sresource(%ld) of type (%s)\n", COMMON, Z_LVAL_PP(struc), type_name ? type_name : "Un… in php_var_dump()
256 …php_printf("%sbool(%s) refcount(%u)\n", COMMON, Z_LVAL_PP(struc)?"true":"false", Z_REFCOUNT_PP(str… in php_debug_zval_dump()
262 php_printf("%slong(%ld) refcount(%u)\n", COMMON, Z_LVAL_PP(struc), Z_REFCOUNT_PP(struc)); in php_debug_zval_dump()
305 const char *type_name = zend_rsrc_list_get_rsrc_type(Z_LVAL_PP(struc) TSRMLS_CC); in php_debug_zval_dump()
306 …php_printf("%sresource(%ld) of type (%s) refcount(%u)\n", COMMON, Z_LVAL_PP(struc), type_name ? ty… in php_debug_zval_dump()
426 if (Z_LVAL_PP(struc)) { in php_var_export_ex()
436 smart_str_append_long(buf, Z_LVAL_PP(struc)); in php_var_export_ex()
H A Dstring.c1168 str_len = slprintf(stmp, sizeof(stmp), "%ld", Z_LVAL_PP(tmp)); in php_implode()
1174 if (Z_LVAL_PP(tmp) == 1) { in php_implode()
2355 l = Z_LVAL_PP(len);
2383 f = Z_LVAL_PP(from);
2484 f = Z_LVAL_PP(tmp_from);
2500 f = Z_LVAL_PP(from);
2519 l = Z_LVAL_PP(tmp_len);
2526 l = Z_LVAL_PP(len);
4392 cat = Z_LVAL_PP(pcategory);
H A Dstreamsfuncs.c824 if (Z_LVAL_PP(sec) < 0) { in PHP_FUNCTION()
834 tv.tv_sec = Z_LVAL_PP(sec) + (usec / 1000000); in PHP_FUNCTION()
837 tv.tv_sec = Z_LVAL_PP(sec); in PHP_FUNCTION()
H A Dproc_open.c508 Z_LVAL_PP(item)) { in PHP_FUNCTION()
514 Z_LVAL_PP(item)) { in PHP_FUNCTION()
H A Dscanf.c1205 Z_LVAL_PP(return_value) = nconversions; in php_sscanf_internal()
1218 Z_LVAL_PP(return_value) = SCAN_ERROR_EOF; /* EOF marker */ in scan_set_error_return()
H A Dpack.c93 v = (char *) &Z_LVAL_PP(val); in php_pack()
H A Dpassword.c254 new_cost = Z_LVAL_PP(option_buffer); in PHP_FUNCTION()
334 cost = Z_LVAL_PP(option_buffer); in PHP_FUNCTION()
H A Dmath.c289 if (Z_LVAL_PP(value) == LONG_MIN) { in PHP_FUNCTION()
292 RETURN_LONG(Z_LVAL_PP(value) < 0 ? -Z_LVAL_PP(value) : Z_LVAL_PP(value)); in PHP_FUNCTION()
364 RETURN_DOUBLE((double) Z_LVAL_PP(value)); in PHP_FUNCTION()
369 return_val = (Z_TYPE_PP(value) == IS_LONG) ? (double)Z_LVAL_PP(value) : Z_DVAL_PP(value); in PHP_FUNCTION()
H A Dhttp.c181 ekey_len = spprintf(&ekey, 0, "%ld", Z_LVAL_PP(zdata)); in php_url_encode_hash_ex()
H A Dhttp_fopen_wrapper.c344 redirect_max = Z_LVAL_PP(tmpzval); in php_stream_url_wrap_http_ex()
742 follow_location = Z_LVAL_PP(tmpzval); in php_stream_url_wrap_http_ex()
765 decode = Z_LVAL_PP(tmpzval); in php_stream_url_wrap_http_ex()
H A Dftp_fopen_wrapper.c499 allow_overwrite = Z_LVAL_PP(tmpzval); in php_stream_url_wrap_ftp()
531 Z_LVAL_PP(tmpzval) > 0) { in php_stream_url_wrap_ftp()
532 php_stream_printf(stream TSRMLS_CC, "REST %ld\r\n", Z_LVAL_PP(tmpzval)); in php_stream_url_wrap_ftp()
535 …pper_log_error(wrapper, options TSRMLS_CC, "Unable to resume from offset %ld", Z_LVAL_PP(tmpzval)); in php_stream_url_wrap_ftp()
H A Dfile.c2017 len = Z_LVAL_PP(len_zv); in PHP_FUNCTION()
H A Darray.c1563 zend_hash_index_update(Z_ARRVAL_P(return_value), Z_LVAL_PP(entry), &val, sizeof(zval *), NULL); in PHP_FUNCTION()
2154 length = Z_LVAL_PP(z_length); in PHP_FUNCTION()
2518 Z_LVAL_PP(tmp)++; in PHP_FUNCTION()
2527 Z_LVAL_PP(tmp)++; in PHP_FUNCTION()
2603 (zend_hash_index_find(ht, Z_LVAL_PP(zcolumn), (void**)&zcolval) == FAILURE)) { in PHP_FUNCTION()
2613 zend_hash_index_find(ht, Z_LVAL_PP(zkey), (void**)&zkeyval); in PHP_FUNCTION()
2620 add_index_zval(return_value, Z_LVAL_PP(zkeyval), *zcolval); in PHP_FUNCTION()
3869 switch (Z_LVAL_PP(args[i]) & ~PHP_SORT_FLAG_CASE) { in PHP_FUNCTION()
3875 sort_order = Z_LVAL_PP(args[i]) == PHP_SORT_DESC ? -1 : 1; in PHP_FUNCTION()
3893 sort_type = Z_LVAL_PP(args[i]); in PHP_FUNCTION()
[all …]
H A Dassert.c190 val = Z_LVAL_PP(assertion); in PHP_FUNCTION()
/PHP-5.5/ext/sockets/
H A Dsockets.c2009 lv.l_onoff = (unsigned short)Z_LVAL_PP(l_onoff);
2010 lv.l_linger = (unsigned short)Z_LVAL_PP(l_linger);
2037 tv.tv_sec = Z_LVAL_PP(sec);
2038 tv.tv_usec = Z_LVAL_PP(usec);
2042 timeout = Z_LVAL_PP(sec) * 1000 + Z_LVAL_PP(usec) / 1000;
2064 ov = Z_LVAL_PP(arg4);
H A Dmulticast.c289 if (Z_LVAL_PP(arg4) < 0L || Z_LVAL_PP(arg4) > 255L) { in php_do_setsockopt_ip_mcast()
295 ipv4_mcast_ttl_lback = (unsigned char) Z_LVAL_PP(arg4); in php_do_setsockopt_ip_mcast()
353 if (Z_LVAL_PP(arg4) < -1L || Z_LVAL_PP(arg4) > 255L) { in php_do_setsockopt_ipv6_mcast()
359 ov = (int) Z_LVAL_PP(arg4); in php_do_setsockopt_ipv6_mcast()
/PHP-5.5/ext/soap/
H A Dsoap.c1142 (Z_LVAL_PP(tmp) == SOAP_1_1 || Z_LVAL_PP(tmp) == SOAP_1_2)) { in PHP_METHOD()
1143 version = Z_LVAL_PP(tmp); in PHP_METHOD()
1195 cache_wsdl = Z_LVAL_PP(tmp); in PHP_METHOD()
2366 (Z_LVAL_PP(tmp) == SOAP_RPC || Z_LVAL_PP(tmp) == SOAP_DOCUMENT)) {
2372 (Z_LVAL_PP(tmp) == SOAP_LITERAL || Z_LVAL_PP(tmp) == SOAP_ENCODED)) {
2392 (Z_LVAL_PP(tmp) == SOAP_1_1 && Z_LVAL_PP(tmp) == SOAP_1_2)) {
2438 Z_LVAL_PP(tmp) == 1) {
2444 Z_LVAL_PP(tmp) == 0) {
2493 if (Z_LVAL_PP(tmp) > 0) {
2504 cache_wsdl = Z_LVAL_PP(tmp);
[all …]
H A Dphp_http.c181 port = Z_LVAL_PP(proxy_port); in http_connect()
188 Z_TYPE_PP(tmp) == IS_LONG && Z_LVAL_PP(tmp) > 0) { in http_connect()
189 tv.tv_sec = Z_LVAL_PP(tmp); in http_connect()
202 switch (Z_LVAL_PP(tmp)) { in http_connect()
284 switch (Z_LVAL_PP(tmp)) { in http_connect()
374 int level = Z_LVAL_PP(tmp) & 0x0f; in make_http_soap_request()
375 int kind = Z_LVAL_PP(tmp) & SOAP_COMPRESSION_DEFLATE; in make_http_soap_request()
422 use_proxy = Z_LVAL_PP(tmp); in make_http_soap_request()
441 redirect_max = Z_LVAL_PP(tmp); in make_http_soap_request()
579 Z_LVAL_PP(tmp) == 0)) { in make_http_soap_request()
[all …]
H A Dphp_encoding.c3654 cur_type = Z_LVAL_PP(ztype); in get_array_type()

Completed in 154 milliseconds

1234