Home
last modified time | relevance | path

Searched refs:p (Results 326 – 350 of 775) sorted by relevance

1...<<11121314151617181920>>...31

/PHP-7.1/sapi/cli/
H A Dphp_http_parser.c263 const char *p = data, *pe; in php_http_parser_execute() local
305 for (p=data, pe=data+len; p != pe; p++) { in php_http_parser_execute()
306 ch = *p; in php_http_parser_execute()
1345 return (p - data); in php_http_parser_execute()
1378 assert(pe >= p); in php_http_parser_execute()
1383 p += to_read - 1; in php_http_parser_execute()
1394 to_read = pe - p; in php_http_parser_execute()
1397 p += to_read - 1; in php_http_parser_execute()
1464 assert(pe >= p); in php_http_parser_execute()
1470 p += to_read - 1; in php_http_parser_execute()
[all …]
/PHP-7.1/ext/session/tests/
H A Dbug36459.phpt23 <p>See source html code</p>
36 <p>See source html code</p>
/PHP-7.1/sapi/phpdbg/tests/
H A Dprint_001.phpt6 p foo
7 p class \Foo\bar
8 p
9 p e
/PHP-7.1/ext/standard/tests/strings/
H A Dstrip_tags_basic1.phpt26 "<html><b>hello</b><p>world</p></html>",
27 '<html><b>hello</b><p>world</p></html>',
/PHP-7.1/tests/classes/
H A Dstatic_properties_undeclared_inc.phpt6 C::$p++;
9 Fatal error: Uncaught Error: Access to undeclared static property: C::$p in %s:3
H A Dstatic_properties_undeclared_assign.phpt6 C::$p = 1;
9 Fatal error: Uncaught Error: Access to undeclared static property: C::$p in %s:3
H A Dstatic_properties_undeclared_assignInc.phpt6 C::$p += 1;
9 Fatal error: Uncaught Error: Access to undeclared static property: C::$p in %s:3
H A Dstatic_properties_undeclared_read.phpt6 echo C::$p;
9 Fatal error: Uncaught Error: Access to undeclared static property: C::$p in %s:3
H A Dstatic_properties_undeclared_assignRef.phpt7 C::$p =& $a;
10 Fatal error: Uncaught Error: Access to undeclared static property: C::$p in %s:4
/PHP-7.1/ext/date/tests/
H A Dbug65371.phpt8 function p($str)
17 p('あ');
/PHP-7.1/Zend/
H A Dzend_hash.h634 void *p; in zend_hash_update_mem() local
643 void *p; in zend_hash_str_update_mem() local
711 void *p; in zend_hash_index_update_mem() local
969 p->key = key; in _zend_hash_append()
970 p->h = ZSTR_H(key); in _zend_hash_append()
976 return &p->val; in _zend_hash_append()
991 p->key = key; in _zend_hash_append_ptr()
992 p->h = ZSTR_H(key); in _zend_hash_append_ptr()
998 return &p->val; in _zend_hash_append_ptr()
1013 p->key = key; in _zend_hash_append_ind()
[all …]
/PHP-7.1/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_variable_columncount.phpt54 $db->exec('DROP PROCEDURE IF EXISTS p');
55 …$db->exec('CREATE PROCEDURE p(IN cols INT) BEGIN IF cols < 2 THEN SELECT cols AS "one"; ELSE SELEC…
59 $stmt = $db->prepare('CALL p(?)');
75 $stmt = $db->prepare('CALL p(?)');
85 $db->exec('DROP PROCEDURE IF EXISTS p');
86 …$db->exec('CREATE PROCEDURE p() BEGIN DECLARE cols INT; SELECT @numcols INTO cols; IF cols < 2 THE…
91 $stmt = $db->prepare('CALL p()');
107 $stmt = $db->prepare('CALL p()');
H A Dbug_39858.phpt31 $db->exec("DROP PROCEDURE IF EXISTS p");
33 CREATE PROCEDURE p()
42 $stmt = $db->prepare("CALL p()");
48 $stmt = $db->prepare("CALL p()");
71 $db->exec("DROP PROCEDURE IF EXISTS p");
/PHP-7.1/ext/phar/tests/cache_list/files/
H A Dwrite7.phar2 $p = new Phar(__FILE__);
4 $p->delete("test.txt");
H A Dwrite18.phar2 $p = new Phar(__FILE__);
4 $p["test.txt"]->chmod(0444);
/PHP-7.1/ext/spl/tests/
H A Ddit_006.phpt34 $p = 0;
36 $p = 1;
41 var_dump($n !== $m, $m === $o, $p === 0);
/PHP-7.1/ext/standard/tests/file/windows_mb_path/
H A Dtest_cp932_3.phpt25 $item = "�e�X�g�}���`�o�C�g�E�p�X77"; // cp932 string
39 string(%d) "%s\�e�X�g�}���`�o�C�g�E�p�X77"
42 �e�X�g�}���`�o�C�g�E�p�X77
/PHP-7.1/ext/mbstring/oniguruma/enc/
H A Dunicode.c10822 UChar *p; in onigenc_unicode_property_name_to_ctype() local
10825 p = name; in onigenc_unicode_property_name_to_ctype()
10827 while (p < end) { in onigenc_unicode_property_name_to_ctype()
10836 p += enclen(enc, p); in onigenc_unicode_property_name_to_ctype()
10922 p = &CaseFold[i]; in init_case_fold_table()
10923 st_add_direct(FoldTable, (st_data_t )p->from, (st_data_t )&(p->to)); in init_case_fold_table()
11027 *fold++ = *p++;
11325 p += len;
11326 if (p < end) {
11349 p += clen;
[all …]
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_stmt_execute_stored_proc.phpt20 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
23 …if (mysqli_real_query($link, 'CREATE PROCEDURE p(OUT ver_param VARCHAR(25)) BEGIN SELECT VERSION()…
25 if (!$stmt = mysqli_prepare($link, 'CALL p(@version)'))
64 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
67 …if (mysqli_real_query($link, 'CREATE PROCEDURE p(OUT ver_param VARCHAR(25)) BEGIN SELECT VERSION()…
69 if (!$stmt = mysqli_prepare($link, 'CALL p(@version)'))
101 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
107 if (!$stmt = mysqli_prepare($link, "CALL p('myversion', @version)"))
139 if (!mysqli_query($link, 'DROP PROCEDURE IF EXISTS p'))
145 if (!$stmt = mysqli_prepare($link, 'CALL p(?, @version)'))
[all …]
/PHP-7.1/sapi/cli/tests/
H A Dphp_cli_server_013.phpt91 </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/</code> was not found o…
100 …d><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/style.css</code> was n…
109 …ad><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/foo/bar</code> was no…
/PHP-7.1/ext/interbase/
H A Dibase_blobs.c157 char bl_inf[sizeof(zend_long)*8], *p; in _php_ibase_blob_info() local
169 for (p = bl_inf; *p != isc_info_end && p < bl_inf + sizeof(bl_inf);) { in _php_ibase_blob_info()
171 int item = *p++; in _php_ibase_blob_info()
173 item_len = (short) isc_vax_integer(p, 2); in _php_ibase_blob_info()
174 p += 2; in _php_ibase_blob_info()
177 bl_info->num_segments = isc_vax_integer(p, item_len); in _php_ibase_blob_info()
180 bl_info->max_segment = isc_vax_integer(p, item_len); in _php_ibase_blob_info()
183 bl_info->total_length = isc_vax_integer(p, item_len); in _php_ibase_blob_info()
186 bl_info->bl_stream = isc_vax_integer(p, item_len); in _php_ibase_blob_info()
195 p += item_len; in _php_ibase_blob_info()
/PHP-7.1/
H A D.gdbinit66 printf "[%p] ", $ex
120 printf "object[%p]", $zvalue
284 printf "[%p] ", $zvalue
306 printf "[%p] {\n", $arg0
337 if $p->val.u1.v.type > 0
343 if $p->key
344 printf "%s => ", $p->key->val
346 printf "%d => ", $p->h
349 printf "%p\n", (zval *)&$p->val
352 set $zval = (zval *)&$p->val
[all …]
/PHP-7.1/ext/sysvmsg/
H A Dsysvmsg.c372 const unsigned char *p = (const unsigned char *) messagebuffer->mtext; in PHP_FUNCTION() local
375 if (!php_var_unserialize(&tmp, &p, p + result, &var_hash)) { in PHP_FUNCTION()
430 char *p; in PHP_FUNCTION() local
433 p = Z_STRVAL_P(message); in PHP_FUNCTION()
438 message_len = spprintf(&p, 0, ZEND_LONG_FMT, Z_LVAL_P(message)); in PHP_FUNCTION()
441 message_len = spprintf(&p, 0, "0"); in PHP_FUNCTION()
444 message_len = spprintf(&p, 0, "1"); in PHP_FUNCTION()
447 message_len = spprintf(&p, 0, "%F", Z_DVAL_P(message)); in PHP_FUNCTION()
455 memcpy(messagebuffer->mtext, p, message_len + 1); in PHP_FUNCTION()
458 efree(p); in PHP_FUNCTION()
/PHP-7.1/ext/standard/
H A Dfilters.c1895 if (*p >= '0' && *p <= '9') { in php_dechunk()
1897 } else if (*p >= 'A' && *p <= 'F') { in php_dechunk()
1899 } else if (*p >= 'a' && *p <= 'f') { in php_dechunk()
1909 p++; in php_dechunk()
1918 while (p < end && *p != '\r' && *p != '\n') { in php_dechunk()
1919 p++; in php_dechunk()
1926 p++; in php_dechunk()
1934 p++; in php_dechunk()
1961 memmove(out, p, end - p); in php_dechunk()
1970 p++; in php_dechunk()
[all …]
/PHP-7.1/sapi/phpdbg/
H A Dphpdbg_prompt.c841 while (*p == ' ') p++; in PHPDBG_COMMAND()
848 do p++; while (*p == ' '); in PHPDBG_COMMAND()
850 if (*p == '\'' || *p == '"') { in PHPDBG_COMMAND()
853 while (*p && *p != sep) { in PHPDBG_COMMAND()
854 if (*p == '\\' && (p[1] == sep || p[1] == '\\')) { in PHPDBG_COMMAND()
861 do p++; while (*p == ' '); in PHPDBG_COMMAND()
883 if (*p == '\'' || *p == '"') { in PHPDBG_COMMAND()
886 if (*p == '\\' && (p[1] == '<' || p[1] == '\'' || p[1] == '"')) { in PHPDBG_COMMAND()
889 while (*p && *p != sep) { in PHPDBG_COMMAND()
890 if (*p == '\\' && (p[1] == sep || p[1] == '\\' || (p[1] == '#' && sep == ' '))) { in PHPDBG_COMMAND()
[all …]

Completed in 184 milliseconds

1...<<11121314151617181920>>...31