Home
last modified time | relevance | path

Searched refs:p (Results 351 – 375 of 775) sorted by relevance

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

/PHP-7.1/ext/phar/tests/
H A Dbug69720.phpt9 $p = new Phar(__DIR__."/bug69720.phar",0);
11 echo $p->getMetadata();
12 foreach (new RecursiveIteratorIterator($p) as $file) {
H A Dbug69324.phpt10 $p = new Phar(dirname(__FILE__).'/bug69324.phar', 0);
11 $meta=$p->getMetadata();
H A Dbug71391.phpt9 $p = new PharData(__DIR__."/bug71391.test.tar");
10 $p->delMetaData();
/PHP-7.1/ext/fileinfo/libmagic/
H A Dis_tar.c98 const unsigned char *p; in is_tar() local
106 p = header->charptr; in is_tar()
108 sum += *p++; in is_tar()
/PHP-7.1/Zend/
H A Dzend_execute_API.c572 if (IS_CONSTANT_VISITED(p)) { in zval_update_constant_ex()
577 SEPARATE_ZVAL_NOREF(p); in zval_update_constant_ex()
578 MARK_CONSTANT_VISITED(p); in zval_update_constant_ex()
587 ZVAL_EMPTY_STRING(p); in zval_update_constant_ex()
591 RESET_CONSTANT_VISITED(p); in zval_update_constant_ex()
593 } else if ((colon = (char*)zend_memrchr(Z_STRVAL_P(p), ':', Z_STRLEN_P(p)))) { in zval_update_constant_ex()
595 RESET_CONSTANT_VISITED(p); in zval_update_constant_ex()
625 Z_TYPE_INFO_P(p) = Z_REFCOUNTED_P(p) ? in zval_update_constant_ex()
636 zval_opt_copy_ctor(p); in zval_update_constant_ex()
646 zval_ptr_dtor(p); in zval_update_constant_ex()
[all …]
/PHP-7.1/ext/reflection/tests/
H A DReflectionProperty_error.phpt7 public static $p;
16 new ReflectionProperty('C::p');
22 new ReflectionProperty('C', 'p', 'x');
28 $rp = new ReflectionProperty('C', 'p');
H A DReflectionObject_export_basic3.phpt6 private $p = 1;
13 $Obj->p = 'value';
/PHP-7.1/ext/filter/tests/
H A D011.phpt10 c=<p>string</p>&d=12345.7
40 string(29) "&#60;p&#62;string&#60;/p&#62;"
/PHP-7.1/ext/filter/
H A Dsanitizing_filters.c68 unsigned char *p; in php_filter_encode_url() local
91 p = (unsigned char *) ZSTR_VAL(str); in php_filter_encode_url()
97 *p++ = '%'; in php_filter_encode_url()
98 *p++ = hexchars[(unsigned char) *s >> 4]; in php_filter_encode_url()
99 *p++ = hexchars[(unsigned char) *s & 15]; in php_filter_encode_url()
101 *p++ = *s; in php_filter_encode_url()
105 *p = '\0'; in php_filter_encode_url()
106 ZSTR_LEN(str) = p - (unsigned char *)ZSTR_VAL(str); in php_filter_encode_url()
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_alloc.c75 #define REAL_PTR(p) (collect_memory_statistics && (p)? (((char *)(p)) - sizeof(size_t)) : (p)) argument
76 #define FAKE_PTR(p) (collect_memory_statistics && (p)? (((char *)(p)) + sizeof(size_t)) : (p)) argument
592 char * p = (char *) ptr; in _mysqlnd_pestrndup() local
594 while (*p && l--) { in _mysqlnd_pestrndup()
595 *dest++ = *p++; in _mysqlnd_pestrndup()
620 const char * p = ptr; in _mysqlnd_pestrdup() local
631 smart_str_appendc(&tmp_str, *p); in _mysqlnd_pestrdup()
632 } while (*p++); in _mysqlnd_pestrdup()
653 static void _mysqlnd_sprintf_free(char * p) in _mysqlnd_sprintf_free() argument
655 efree(p); in _mysqlnd_sprintf_free()
H A Dmysqlnd_protocol_frame_codec.c73 zend_uchar * p = (zend_uchar *) buffer; in MYSQLND_METHOD() local
97 zend_uchar * uncompressed_payload = p; /* should include the header */ in MYSQLND_METHOD()
145 STORE_HEADER_SIZE(safe_storage, p); in MYSQLND_METHOD()
146 int3store(p, to_be_sent); in MYSQLND_METHOD()
147 int1store(p + 3, pfc->data->packet_no); in MYSQLND_METHOD()
149 RESTORE_HEADER_SIZE(p, safe_storage); in MYSQLND_METHOD()
154 p += to_be_sent; in MYSQLND_METHOD()
295 zend_uchar * p = buffer; in MYSQLND_METHOD() local
305 p += to_read_from_buffer; in MYSQLND_METHOD()
345 DBG_RETURN(pfc->data->m.receive(pfc, vio, p, to_read, conn_stats, error_info)); in MYSQLND_METHOD()
[all …]
/PHP-7.1/ext/phar/tests/cache_list/files/
H A Dwrite7.phar.inc8 $p = new Phar(__FILE__);
10 $p->delete("test.txt");
H A Dwrite18.phar.inc8 $p = new Phar(__FILE__);
10 $p["test.txt"]->chmod(0444);
/PHP-7.1/ext/hash/
H A Dphp_hash_haval.h36 #define PHP_HASH_HAVAL_INIT_DECL(p,b) PHP_HASH_API void PHP_##p##HAVAL##b##Init(PHP_HAVAL_CTX *); \ argument
/PHP-7.1/tests/lang/
H A Dtype_hints_002.phpt9 function f(P $p = NULL) {
10 var_dump($p);
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_main.c933 if (p) {
934 if ((p == path || IS_SLASH(*(p-1))) &&
935 (*(p+2) == 0 || IS_SLASH(*(p+2)))
940 p = strstr(p+1, "..");
945 (*(p+2) == 0 || IS_SLASH(*(p+2)))
1089 while (*p != '\0' && *p != '/') {
1096 memmove(env_script_filename, p, strlen(p) + 1);
1102 *p =0;
1110 while (*p != '\0' && *p != '/') {
1117 memmove(env_script_filename, p, strlen(p) + 1);
[all …]
/PHP-7.1/ext/mbstring/
H A Dphp_mbregex.c371 const char *p; in _php_mb_regex_name2mbctype() local
379 for (p = mapping->names; *p != '\0'; p += (strlen(p) + 1)) { in _php_mb_regex_name2mbctype()
484 char *p = str; in _php_mb_regex_get_option_string() local
490 *(p++) = 'i'; in _php_mb_regex_get_option_string()
498 *(p++) = 'x'; in _php_mb_regex_get_option_string()
507 *(p++) = 'p'; in _php_mb_regex_get_option_string()
565 *(p++) = c; in _php_mb_regex_get_option_string()
822 char *p; in _php_mb_regex_ereg_replace_exec() local
956 p[0] == '\\' && p[1] >= '0' && p[1] <= '9') { in _php_mb_regex_ereg_replace_exec()
963 p += 2; in _php_mb_regex_ereg_replace_exec()
[all …]
/PHP-7.1/ext/mbstring/oniguruma/
H A Dreggnu.c48 UChar *p; in re_adjust_startpos() local
52 p = onigenc_get_right_adjust_char_head(reg->enc, (UChar* )string, s); in re_adjust_startpos()
55 p = ONIGENC_LEFT_ADJUST_CHAR_HEAD(reg->enc, (UChar* )string, s); in re_adjust_startpos()
57 return p - (UChar* )string; in re_adjust_startpos()
/PHP-7.1/ext/pcre/tests/
H A Dpcre_anchored.phpt5 if (@preg_match_all('/\p{N}/', '0123456789', $dummy) === false) {
6 die("skip no support for \p support PCRE library");
/PHP-7.1/Zend/tests/
H A Dbug72177.phpt29 $p = new Parnt();
30 $p->doSomething();
H A Dbug54367.phpt20 echo $a['p']('foo');
23 string(1) "p"
H A Dexception_013.phpt6 static private $p = 0;
16 var_dump(C::$p);
32 Exception: Cannot access private property C::$p in %sexception_013.php on line 13
/PHP-7.1/ext/intl/grapheme/
H A Dgrapheme_util.c341 char *p, *e; in grapheme_strrpos_ascii() local
344 p = haystack + offset; in grapheme_strrpos_ascii()
347 p = haystack; in grapheme_strrpos_ascii()
357 while (e >= p) { in grapheme_strrpos_ascii()
359 return (e - p + (offset > 0 ? offset : 0)); in grapheme_strrpos_ascii()
366 while (e >= p) { in grapheme_strrpos_ascii()
368 return (e - p + (offset > 0 ? offset : 0)); in grapheme_strrpos_ascii()
/PHP-7.1/ext/standard/tests/file/
H A Dfnmatch_basic.phpt19 var_dump( fnmatch("*.p*p", $file) );
20 var_dump( fnmatch("*.p*", $file) );
/PHP-7.1/ext/standard/
H A Dphp_var.h45 PHPAPI int php_var_unserialize(zval *rval, const unsigned char **p, const unsigned char *max, php_u…
46 PHPAPI int php_var_unserialize_ref(zval *rval, const unsigned char **p, const unsigned char *max, p…
47 PHPAPI int php_var_unserialize_intern(zval *rval, const unsigned char **p, const unsigned char *max…

Completed in 43 milliseconds

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