| /PHP_5_5/ext/phar/ |
| H A D | shortarc.php | 121 $read = 8192; variable 123 $read = $L[1] - strlen($m); variable 125 $last = (binary)fread($fp, $read); 130 die('ERROR: manifest length read was "' .
|
| H A D | tar.c | 161 size_t save = php_stream_tell(fp), read; local 166 read = php_stream_read(fp, metadata, entry->uncompressed_filesize); 167 if (read != entry->uncompressed_filesize) { 199 size_t pos = 0, read, totalsize; local 212 read = php_stream_read(fp, buf, sizeof(buf)); 214 if (read != sizeof(buf)) { 271 read = php_stream_read(fp, buf, size); 272 if (read != size) { 274 spprintf(error, 4096, "phar error: tar-based phar \"%s\" signature cannot be read", fname); 311 read [all...] |
| H A D | zip.c | 48 int read; local 63 read = php_stream_read(fp, (char *) &(h.unix3.crc32), sizeof(h.unix3) - sizeof(h.header)); 64 len -= read + 4; 66 if (sizeof(h.unix3) - sizeof(h.header) != read) { 92 zip_dirent.c -- read directory entry (local or central), clean dirent 196 spprintf(error, 4096, "phar error: unable to read in data to search for end of central directory in zip-based phar \"%s\"", fname); 224 /* read in archive comment, if any */ 291 /* read in central directory */ 356 PHAR_ZIP_FAIL("unable to read central directory entry, truncated"); 392 PHAR_ZIP_FAIL("unable to read i 406 size_t read; local [all...] |
| /PHP_5_5/ext/xmlreader/examples/ |
| H A D | xmlreader_file.php | 4 while ($reader->read()) {
|
| H A D | xmlreader_relaxNG.php | 11 while ($reader->read()) {
|
| H A D | xmlreader_string.php | 15 while ($reader->read()) {
|
| H A D | xmlreader_validatedtd.php | 8 while($xml->read()) {
|
| /PHP_5_5/ext/zip/examples/ |
| H A D | odt.php | 7 while ($reader->read()) {
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_unix.c | 288 close(fpm_globals.send_config_pipe[0]); /* close the read side of the pipe */ 313 ret = read(fpm_globals.send_config_pipe[0], &readval, sizeof(readval)); 315 zlog(ZLOG_SYSERROR, "failed to read from pipe"); 320 zlog(ZLOG_ERROR, "no data have been read from pipe");
|
| H A D | fpm_events.c | 64 res = read(fd, &c, 1); 69 zlog(ZLOG_SYSERROR, "unable to read from the signal pipe");
|
| H A D | fpm_stdio.c | 112 res = read(fd, buf + in_buf, max_buf_size - 1 - in_buf); 120 zlog(ZLOG_SYSERROR, "unable to read what child say");
|
| /PHP_5_5/scripts/dev/ |
| H A D | find_tested.php | 181 while(($file = $thisdir->read()) !== false) {
|
| /PHP_5_5/TSRM/ |
| H A D | tsrm_win32.c | 294 /* Do a full access check because access() will only check read-only attribute */ 460 int fno, type_len = strlen(type), read, mode; local 507 read = (type[0] == 'r') ? TRUE : FALSE; 510 if (read) { 556 if (read) {
|
| /PHP_5_5/Zend/ |
| H A D | zend_stream.c | 258 size_t read, remain = 4*1024; local 262 while ((read = zend_stream_read(file_handle, *buf + size, remain TSRMLS_CC)) > 0) { 263 size += read; 264 remain -= read;
|
| /PHP_5_5/ext/dba/ |
| H A D | dba_cdb.c | 217 # define cdb_file_read(fildes, buf, size) read(fildes, buf, size) 324 /* this is read-only */
|
| /PHP_5_5/ext/interbase/ |
| H A D | php_ibase_udf.c | 149 ISC_USHORT read; local 151 for (code[remaining] = '\0'; remaining > 0; remaining -= read) 152 b->blob_get_segment(b->blob_handle, &code[i++<<16],min(0x10000,remaining), &read);
|
| /PHP_5_5/ext/session/ |
| H A D | mod_user.c | 135 retval = ps_call_handler(PSF(read), 1, args TSRMLS_CC);
|
| H A D | mod_user_class.c | 70 /* {{{ proto bool SessionHandler::read(string id) 71 Wraps the old read handler */ 72 PHP_METHOD(SessionHandler, read)
|
| H A D | php_session.h | 282 extern PHP_METHOD(SessionHandler, read);
|
| H A D | mod_files.c | 367 n = read(data->fd, *val, sbuf.st_size); 372 php_error_docref(NULL TSRMLS_CC, E_WARNING, "read failed: %s (%d)", strerror(errno), errno); 374 php_error_docref(NULL TSRMLS_CC, E_WARNING, "read returned less bytes than requested");
|
| /PHP_5_5/ext/standard/ |
| H A D | dir.c | 107 PHP_NAMED_FE(read, php_if_readdir, arginfo_dir) 258 Directory class with properties, handle and class and methods read, rewind and close */
|
| H A D | password.c | 141 n = read(fd, buffer + read_bytes, raw_length - read_bytes);
|
| /PHP_5_5/ext/zlib/ |
| H A D | zlib_fopen_wrapper.c | 36 int read; local 38 read = gzread(self->gz_file, buf, count); 44 return (read < 0) ? 0 : read; 115 /* sanity check the stream: it can be either read-only or write-only */
|
| /PHP_5_5/ext/curl/ |
| H A D | interface.c | 226 if (ch->handlers->read && ch->handlers->read->stream) { 227 stream = (php_stream *) zend_fetch_resource(&ch->handlers->read->stream TSRMLS_CC, -1, NULL, NULL, 2, php_file_le_stream(), php_file_le_pstream()); 232 zval_ptr_dtor(&ch->handlers->read->stream); 233 ch->handlers->read->fd = 0; 234 ch->handlers->read->fp = 0; 235 ch->handlers->read->stream = NULL; 1491 php_curl_read *t = ch->handlers->read; 1778 (*ch)->handlers->read = ecalloc(1, sizeof(php_curl_read)); 1790 (*ch)->handlers->read [all...] |
| H A D | php_curl.h | 147 php_curl_read *read; member in struct:__anon4
|