Home
last modified time | relevance | path

Searched refs:p (Results 451 – 475 of 726) sorted by relevance

1...<<11121314151617181920>>...30

/PHP-5.5/ext/iconv/
H A Diconv.c359 if (p) { in php_iconv_output_handler()
1296 const unsigned char *p; in _php_iconv_mime_encode() local
1360 for (p = (unsigned char *)buf; p < (unsigned char *)out_p; p++) { in _php_iconv_mime_encode()
1373 for (p = (unsigned char *)buf; p < (unsigned char *)out_p; p++) { in _php_iconv_mime_encode()
2341 char *p, *limit; in PHP_FUNCTION() local
2354 for (p = decoded_header.c; p < limit; p++) { in PHP_FUNCTION()
2355 if (*p == ':') { in PHP_FUNCTION()
2356 *p = '\0'; in PHP_FUNCTION()
2360 while (++p < limit) { in PHP_FUNCTION()
2361 if (*p != ' ' && *p != '\t') { in PHP_FUNCTION()
[all …]
/PHP-5.5/sapi/apache2handler/
H A Dphp_functions.c351 char *p; in PHP_FUNCTION() local
357 if ((p = strchr(s, '.'))) { in PHP_FUNCTION()
358 add_next_index_stringl(return_value, s, (p - s), 1); in PHP_FUNCTION()
372 char *p; in PHP_MINFO_FUNCTION() local
384 if ((p = strchr(s, '.'))) { in PHP_MINFO_FUNCTION()
385 smart_str_appendl(&tmp1, s, (p - s)); in PHP_MINFO_FUNCTION()
/PHP-5.5/ext/standard/
H A Dproc_open.c83 char *p; in _php_array_to_envp() local
145 p = env.envp = (char *) pecalloc(sizeenv + 4, 1, is_persistent); in _php_array_to_envp()
173 memcpy(p, string_key, string_length); in _php_array_to_envp()
174 strncat(p, "=", 1); in _php_array_to_envp()
175 strncat(p, data, el_len); in _php_array_to_envp()
178 *ep = p; in _php_array_to_envp()
181 p += l; in _php_array_to_envp()
184 memcpy(p,data,el_len); in _php_array_to_envp()
186 *ep = p; in _php_array_to_envp()
189 p += el_len + 1; in _php_array_to_envp()
[all …]
H A Durl_scanner_ex.re106 #define YYCURSOR p
112 register const char *p, *q;
116 q = (p = url->c) + url->len;
122 "#" { bash = p - 1; goto done; }
217 char *e, *p = zend_memnstr(ctx->val.c, "://", sizeof("://") - 1, ctx->val.c + ctx->val.len);
218 if (p) {
219 e = memchr(p, '/', (ctx->val.c + ctx->val.len) - p);
223 if ((e - p) && strncasecmp(p, ctx->lookup_data, (e - p))) {
H A Dfile.c760 p = e; in PHP_FUNCTION()
772 p++; in PHP_FUNCTION()
775 s = p; in PHP_FUNCTION()
776 } while ((p = memchr(p, eol_marker, (e-p)))); in PHP_FUNCTION()
784 s = ++p; in PHP_FUNCTION()
788 s = ++p; in PHP_FUNCTION()
789 } while ((p = memchr(p, eol_marker, (e-p)))); in PHP_FUNCTION()
794 p = e; in PHP_FUNCTION()
814 char *p; in PHP_FUNCTION() local
827 p[63] = '\0'; in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/hash/
H A Dhash_md.c659 const unsigned char *p = buf, *e = buf + len; in PHP_MD2Update() local
664 memcpy(context->buffer + context->in_buffer, p, len); in PHP_MD2Update()
669 memcpy(context->buffer + context->in_buffer, p, 16 - context->in_buffer); in PHP_MD2Update()
671 p += 16 - context->in_buffer; in PHP_MD2Update()
676 while ((p + 16) <= e) { in PHP_MD2Update()
677 MD2_Transform(context, p); in PHP_MD2Update()
678 p += 16; in PHP_MD2Update()
682 if (p < e) { in PHP_MD2Update()
683 memcpy(context->buffer, p, e - p); in PHP_MD2Update()
684 context->in_buffer = e - p; in PHP_MD2Update()
H A Dphp_hash.h85 #define PHP_HASH_HAVAL_OPS(p,b) extern const php_hash_ops php_hash_##p##haval##b##_ops; argument
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c439 unsigned char *p; in mbfl_convert_filter_devcat() local
441 p = src->buffer; in mbfl_convert_filter_devcat()
444 if ((*filter->filter_function)(*p++, filter) < 0) { in mbfl_convert_filter_devcat()
453 int mbfl_convert_filter_strcat(mbfl_convert_filter *filter, const unsigned char *p) in mbfl_convert_filter_strcat() argument
457 while ((c = *p++) != '\0') { in mbfl_convert_filter_strcat()
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dprivate.pem8 KHyJlwGoR28KZgrSpo74yWhQ+b1lzxQ+rk2wToFD/p+WNe/nf78YUl/cq0LngCKH
/PHP-5.5/ext/mbstring/tests/
H A Dmb_output_handler_shift_jis.phpt12 var_dump("�e�X�g�p���{�ꕶ����B���̃��W���[����PHP�Ƀ}���`�o�C�g�֐�������܂��B");
/PHP-5.5/ext/phar/tests/files/
H A Dprivate.pem8 KHyJlwGoR28KZgrSpo74yWhQ+b1lzxQ+rk2wToFD/p+WNe/nf78YUl/cq0LngCKH
/PHP-5.5/ext/mysqli/
H A Dmysqli_libmysql.h42 #define mysqli_change_user_silent(c, u, p, d, p_len) mysql_change_user((c), (u), (p), (d)) argument
H A Dmysqli.c403 mysqli_prop_handler p; in mysqli_add_property() local
405 p.name = (char*) pname; in mysqli_add_property()
406 p.name_len = pname_len; in mysqli_add_property()
407 p.read_func = (r_func) ? r_func : mysqli_read_na; in mysqli_add_property()
408 p.write_func = (w_func) ? w_func : mysqli_write_na; in mysqli_add_property()
416 mysqli_prop_handler p; in mysqli_object_has_property() local
924 mysqlnd_end_psession((MYSQLND *) p); in php_mysqli_persistent_helper_for_every()
1300 Bucket *p; in php_mysqli_fetch_into_hash() local
1304 p = params_ht->pListHead; in php_mysqli_fetch_into_hash()
1305 while (p != NULL) { in php_mysqli_fetch_into_hash()
[all …]
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_multi_stmt_nextrowset.phpt32 $db->exec('DROP PROCEDURE IF EXISTS p');
33 …$db->exec('CREATE PROCEDURE p() BEGIN SELECT id FROM test ORDER BY id ASC LIMIT 3; SELECT id, labe…
34 $stmt = $db->query('CALL p()');
75 @$db->exec('DROP PROCEDURE IF EXISTS p');
/PHP-5.5/ext/json/tests/
H A Dpass001.phpt51 \" s p a c e d \" :[1,2 , 3
134 " s p a c e d " :[1,2 , 3
239 [" s p a c e d "]=>
377 [" s p a c e d "]=>
432 …ttp:\/\/www.JSON.org\/","comment":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5…
434 …ttp:\/\/www.JSON.org\/","comment":"\/\/ \/* <!-- --","# -- --> *\/":" "," s p a c e d ":[1,2,3,4,5…
519 [" s p a c e d "]=>
657 [" s p a c e d "]=>
/PHP-5.5/sapi/thttpd/
H A Dthttpd.c175 char buf[1024], *p; in sapi_thttpd_send_headers() local
184 p = smart_str_print_long(buf+sizeof(buf)-1, in sapi_thttpd_send_headers()
186 ADD_VEC(p, strlen(p)); in sapi_thttpd_send_headers()
275 char *p; in sapi_thttpd_register_variables() local
290 p = httpd_ntoa(&TG(hc)->client_addr); in sapi_thttpd_register_variables()
292 ADD_STRING_EX("REMOTE_ADDR", p); in sapi_thttpd_register_variables()
293 ADD_STRING_EX("REMOTE_HOST", p); in sapi_thttpd_register_variables()
/PHP-5.5/ext/ereg/regex/
H A Dengine.c635 register unsigned char *p = start; local
646 SP("start", st, *p);
651 c = (p == m->endp) ? OUT : *p;
653 coldp = p;
699 p++;
705 return(p+1);
736 SP("sstart", st, *p);
742 c = (p == m->endp) ? OUT : *p;
779 matchp = p;
780 if (EQ(st, empty) || p == stop)
[all …]
/PHP-5.5/tests/lang/
H A Dtype_hints_003.phpt8 function f(P $p = 42) {
/PHP-5.5/tests/classes/
H A Dautoload_015.phpt14 new ReflectionProperty('UndefC', 'p');
H A Dautoload_016.phpt16 $rc->getProperty("UndefC::p");
/PHP-5.5/ext/phar/tests/
H A Dbug71498.phpt8 $p = new PharData(__DIR__."/bug71498.zip");
/PHP-5.5/ext/wddx/tests/
H A D005.phpt16 if (($p = strpos($save_path, ';')) !== false) {
17 $save_path = substr($save_path, ++$p);
H A D004.phpt16 if (($p = strpos($save_path, ';')) !== false) {
17 $save_path = substr($save_path, ++$p);
/PHP-5.5/ext/mysql/tests/
H A Dmysql_unbuffered_query.phpt41 if (mysql_unbuffered_query('DROP PROCEDURE IF EXISTS p', $link)) {
43 …if (mysql_unbuffered_query('CREATE PROCEDURE p(OUT ver_param VARCHAR(25)) BEGIN SELECT VERSION() I…
44 $res = mysql_unbuffered_query('CALL p(@version)', $link);
104 @mysql_query('DROP PROCEDURE IF EXISTS p', $link);
H A Dmysql_query.phpt51 if (mysql_query('DROP PROCEDURE IF EXISTS p', $link)) {
53 …if (mysql_query('CREATE PROCEDURE p(OUT ver_param VARCHAR(25)) BEGIN SELECT VERSION() INTO ver_par…
54 $res = mysql_query('CALL p(@version)', $link);
110 @mysql_query('DROP PROCEDURE IF EXISTS p', $link);

Completed in 59 milliseconds

1...<<11121314151617181920>>...30