Searched defs:rbuf (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_3/ext/session/ |
| H A D | session.c | 407 unsigned char rbuf[2048]; local 410 if (php_win32_get_random_bytes(rbuf, (size_t) toread) == SUCCESS){ 414 PHP_MD5Update(&md5_context, rbuf, toread); 417 PHP_SHA1Update(&sha1_context, rbuf, toread); 421 PS(hash_ops)->hash_update(hash_context, rbuf, toread); 431 unsigned char rbuf[2048]; 436 n = read(fd, rbuf, MIN(to_read, sizeof(rbuf))); 441 PHP_MD5Update(&md5_context, rbuf, n); 444 PHP_SHA1Update(&sha1_context, rbuf, [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | string.c | 4281 PHPAPI size_t php_strip_tags(char *rbuf, int len, int *stateptr, char *allow, int allow_len) /* {{{ */ argument 4283 return php_strip_tags_ex(rbuf, len, stateptr, allow, allow_len, 0); 4307 PHPAPI size_t php_strip_tags_ex(char *rbuf, int len, int *stateptr, char *allow, int allow_len, zend_bool allow_tag_spaces) argument 4316 buf = estrndup(rbuf, len); 4320 rp = rbuf; 4558 if (rp < rbuf + len) { 4567 return (size_t)(rp - rbuf);
|
Completed in 10 milliseconds