Lines Matching refs:p

251 	unsigned char *p, *q;  in bin_to_readable()  local
256 p = (unsigned char *) in; in bin_to_readable()
265 if (p < q) { in bin_to_readable()
266 w |= *p++ << have; in bin_to_readable()
443 const char *p; in php_session_valid_key() local
447 for (p = key; (c = *p); p++) { in php_session_valid_key()
459 len = p - key; in php_session_valid_key()
646 char *p; in PHP_INI_MH() local
653 if ((p = strchr(new_value, ';'))) { in PHP_INI_MH()
655 p++; in PHP_INI_MH()
656 if ((p2 = strchr(p, ';'))) { in PHP_INI_MH()
657 p = p2 + 1; in PHP_INI_MH()
660 p = new_value; in PHP_INI_MH()
663 if (PG(open_basedir) && *p && php_check_open_basedir(p TSRMLS_CC)) { in PHP_INI_MH()
767 smart_str *p; in ZEND_INI_MH() local
776 p = (smart_str *) (base+(size_t) mh_arg1); in ZEND_INI_MH()
778 smart_str_sets(p, new_value); in ZEND_INI_MH()
919 const char *p;
929 for (p = val; p < endptr; ) {
931 namelen = ((unsigned char)(*p)) & (~PS_BIN_UNDEF);
933 if (namelen < 0 || namelen > PS_BIN_MAX || (p + namelen) >= endptr) {
938 has_value = *p & PS_BIN_UNDEF ? 0 : 1;
940 name = estrndup(p + 1, namelen);
942 p += namelen + 1;
953 …if (php_var_unserialize(&current, (const unsigned char **) &p, (const unsigned char *) endptr, &va…
1011 const char *p, *q;
1021 p = val;
1023 while (p < endptr) {
1025 q = p;
1029 if (p[0] == PS_UNDEF_MARKER) {
1030 p++;
1036 namelen = q - p;
1037 name = estrndup(p, namelen);
1062 p = q;
1492 char *p, *value;
1573 (p = strstr(Z_STRVAL_PP(data), PS(session_name))) &&
1574 p[lensess] == '='
1578 p += lensess + 1;
1579 if ((q = strpbrk(p, "/?\\"))) {
1580 PS(id) = estrndup(p, q - p);