Home
last modified time | relevance | path

Searched refs:whence (Results 51 – 68 of 68) sorted by relevance

123

/PHP-8.2/ext/oci8/
H A Doci8_interface.c456 zend_long offset, whence = PHP_OCI_SEEK_SET; in PHP_FUNCTION() local
459 …_ARGS(), getThis(), "Ol|l", &z_descriptor, oci_lob_class_entry_ptr, &offset, &whence) == FAILURE) { in PHP_FUNCTION()
474 switch(whence) { in PHP_FUNCTION()
H A Doci8_arginfo.h75 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, whence, IS_LONG, 0, "OCI_SEEK_SET")
474 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, whence, IS_LONG, 0, "OCI_SEEK_SET")
/PHP-8.2/ext/phar/
H A Dstream.c403 static int phar_stream_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffse… in phar_stream_seek() argument
416 switch (whence) { in phar_stream_seek()
H A Dphar_internal.h564 int phar_seek_efp(phar_entry_info *entry, zend_off_t offset, int whence, zend_off_t position, int f…
H A Dphar.c866 zend_off_t whence; in phar_parse_pharfile() local
882 whence = signature_len + 4; in phar_parse_pharfile()
883 whence = -whence; in phar_parse_pharfile()
885 if (-1 == php_stream_seek(fp, whence, SEEK_CUR) in phar_parse_pharfile()
H A Dutil.c116 int phar_seek_efp(phar_entry_info *entry, zend_off_t offset, int whence, zend_off_t position, int f… in phar_seek_efp() argument
139 switch (whence) { in phar_seek_efp()
/PHP-8.2/ext/pgsql/
H A Dpgsql.c2731 zend_long result, offset = 0, whence = SEEK_CUR; in PHP_FUNCTION() local
2734 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Ol|l", &pgsql_id, pgsql_lob_ce, &offset, &whence) == F… in PHP_FUNCTION()
2737 if (whence != SEEK_SET && whence != SEEK_CUR && whence != SEEK_END) { in PHP_FUNCTION()
2747 result = lo_lseek64((PGconn *)pgsql->conn, pgsql->lofd, offset, (int)whence); in PHP_FUNCTION()
2749 result = lo_lseek((PGconn *)pgsql->conn, pgsql->lofd, (int)offset, (int)whence); in PHP_FUNCTION()
2752 result = lo_lseek((PGconn *)pgsql->conn, pgsql->lofd, offset, whence); in PHP_FUNCTION()
H A Dpgsql.stub.php756 function pg_lo_seek(PgSql\Lob $lob, int $offset, int $whence = SEEK_CUR): bool {} argument
H A Dpgsql_arginfo.h273 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, whence, IS_LONG, 0, "SEEK_CUR")
/PHP-8.2/ext/standard/
H A Dfile.c1108 zend_long offset, whence = SEEK_SET; in PHP_FUNCTION() local
1115 Z_PARAM_LONG(whence) in PHP_FUNCTION()
1120 RETURN_LONG(php_stream_seek(stream, offset, (int) whence)); in PHP_FUNCTION()
H A Dbasic_functions.stub.php2011 function fseek($stream, int $offset, int $whence = SEEK_SET): int {}
H A Dbasic_functions_arginfo.h1269 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, whence, IS_LONG, 0, "SEEK_SET")
/PHP-8.2/docs/
H A Dstreams.md34 PHPAPI int php_stream_seek(php_stream * stream, off_t offset, int whence);
151 as the `php_stream_seek` can emulate forward seeking when the whence parameter
/PHP-8.2/ext/spl/
H A Dspl_directory_arginfo.h217 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, whence, IS_LONG, 0, "SEEK_SET")
H A Dspl_directory.c2534 zend_long pos, whence = SEEK_SET; in PHP_METHOD() local
2536 if (zend_parse_parameters(ZEND_NUM_ARGS(), "l|l", &pos, &whence) == FAILURE) { in PHP_METHOD()
2543 RETURN_LONG(php_stream_seek(intern->u.file.stream, pos, (int)whence)); in PHP_METHOD()
/PHP-8.2/ext/pdo_oci/
H A Doci_statement.c701 static int oci_blob_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) in oci_blob_seek() argument
/PHP-8.2/ext/sqlite3/
H A Dsqlite3.c1146 static int php_sqlite3_stream_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *n… in php_sqlite3_stream_seek() argument
1150 switch(whence) { in php_sqlite3_stream_seek()
/PHP-8.2/build/
H A Dphp.m41449 int seeker(void *cookie, off64_t *position, int whence)

Completed in 129 milliseconds

123