Uses of Class
com.caucho.quercus.env.LongValue

Packages that use LongValue
com.caucho.quercus.env   
com.caucho.quercus.expr   
com.caucho.quercus.lib   
com.caucho.quercus.lib.curl   
com.caucho.quercus.lib.db   
com.caucho.quercus.lib.file   
com.caucho.quercus.lib.i18n   
com.caucho.quercus.lib.regexp   
com.caucho.quercus.lib.xml   
com.caucho.quercus.module   
 

Uses of LongValue in com.caucho.quercus.env
 

Subclasses of LongValue in com.caucho.quercus.env
 class LongCacheValue
          Represents a PHP long value.
 

Fields in com.caucho.quercus.env declared as LongValue
static LongValue LongValue.MINUS_ONE
           
static LongValue LongValue.ONE
           
static LongValue LongValue.ZERO
           
 

Methods in com.caucho.quercus.env that return LongValue
static LongValue LongValue.create(long value)
           
static LongValue LongValue.create(java.lang.Number value)
           
 LongValue ConstStringValue.toLongValue()
          Converts to a long vaule
 LongValue LongValue.toLongValue()
          Converts to a long value
 LongValue Value.toLongValue()
          Converts to a long vaule
 LongValue Var.toLongValue()
          Converts to a long.
 

Methods in com.caucho.quercus.env with parameters of type LongValue
protected  void ConstStringValue.setLongValue(LongValue value)
           
 

Constructors in com.caucho.quercus.env with parameters of type LongValue
CompiledConstStringValue(char ch, LongValue longValue, DoubleValue doubleValue, ValueType valueType, int hashCode)
           
CompiledConstStringValue(char ch, LongValue longValue, DoubleValue doubleValue, ValueType valueType, Value key, int hashCode)
           
CompiledConstStringValue(java.lang.String s, LongValue longValue, DoubleValue doubleValue, ValueType valueType, int hashCode)
           
CompiledConstStringValue(java.lang.String s, LongValue longValue, DoubleValue doubleValue, ValueType valueType, Value key, int hashCode)
           
LongCacheValue(long value, LongValue next)
           
 

Uses of LongValue in com.caucho.quercus.expr
 

Fields in com.caucho.quercus.expr declared as LongValue
protected  LongValue LiteralLongExpr._objValue
           
 

Uses of LongValue in com.caucho.quercus.lib
 

Methods in com.caucho.quercus.lib that return LongValue
static LongValue OptionsModule.get_magic_quotes_gpc(Env env)
          Gets the magic quotes value.
 

Uses of LongValue in com.caucho.quercus.lib.curl
 

Methods in com.caucho.quercus.lib.curl that return LongValue
static LongValue CurlModule.curl_multi_add_handle(Env env, Value curls, Value curl)
          XXX: not documented by PHP
static LongValue CurlModule.curl_multi_close(Env env, Value curls)
          XXX: not documented by PHP
static LongValue CurlModule.curl_multi_exec(Env env, Value curls, Value stillRunning)
          XXX: not documented by PHP
static LongValue CurlModule.curl_multi_remove_handle(Env env, Value curls, Value curl)
          XXX: not documented by PHP
static LongValue CurlModule.curl_multi_select(Env env, Value curls, Value timeout)
          XXX: not documented by PHP
 

Uses of LongValue in com.caucho.quercus.lib.db
 

Methods in com.caucho.quercus.lib.db that return LongValue
 LongValue OracleOciLob.erase(Env env, long offset, long length)
          Erases a specified portion of the internal LOB data
 LongValue OracleOciCollection.max(Env env)
          Returns the maximum number of elements in the collection If the returned value is 0, then the number of elements is not limited.
static LongValue OracleModule.oci_field_precision(Env env, OracleStatement stmt, int field)
          Tell the precision of a field
static LongValue OracleModule.oci_field_scale(Env env, OracleStatement stmt, int field)
          Tell the scale of the field
static LongValue OracleModule.oci_num_rows(Env env, OracleStatement stmt)
          Returns number of rows affected during statement execution Note: This function does not return number of rows selected! For SELECT statements this function will return the number of rows, that were fetched to the buffer with oci_fetchxxxx() functions.
static LongValue PostgresModule.pg_field_is_null(Env env, PostgresResult result, Value row, Value fieldNameOrNumber)
          Test if a field is SQL NULL
static LongValue PostgresModule.pg_field_size(Env env, PostgresResult result, int fieldNumber)
          Returns the internal storage size of the named field
static LongValue PostgresModule.pg_field_type_oid(Env env, PostgresResult result, int fieldNumber)
          Returns the type ID (OID) for the corresponding field number
static LongValue PostgresModule.pg_fieldisnull(Env env, PostgresResult result, Value row, Value fieldNameOrNumber)
          pg_field_is_null() alias.
static LongValue PostgresModule.pg_fieldsize(Env env, PostgresResult result, int fieldNumber)
          pg_field_size() alias.
static LongValue PostgresModule.pg_lo_create(Env env, Postgres conn)
          Create a large object
static LongValue PostgresModule.pg_lo_import(Env env, Postgres conn, Path path)
          Import a large object from file
static LongValue PostgresModule.pg_lo_read_all(Env env, java.lang.Object largeObject)
          Reads an entire large object and send straight to browser
static LongValue PostgresModule.pg_lo_write(Env env, java.lang.Object largeObject, java.lang.String data, int len)
          Write to a large object
static LongValue PostgresModule.pg_locreate(Env env, Postgres conn)
          pg_lo_create() alias
static LongValue PostgresModule.pg_loimport(Env env, Postgres conn, Path path)
          pg_lo_import() alias.
static LongValue PostgresModule.pg_loreadall(Env env, java.lang.Object largeObject)
          pg_lo_read_all() alias.
static LongValue PostgresModule.pg_lowrite(Env env, java.lang.Object largeObject, java.lang.String data, int len)
          pg_lo_write() alias.
static LongValue PostgresModule.pg_num_rows(Env env, PostgresResult result)
          Returns the number of rows in a result
static LongValue PostgresModule.pg_numrows(Env env, PostgresResult result)
          pg_num_rows() alias.
 LongValue OracleOciCollection.size(Env env)
          Returns size of the collection
 LongValue OracleOciLob.size(Env env)
          Returns size of large object
 LongValue OracleOciLob.tell(Env env)
          Returns current position of internal pointer of large object
 LongValue OracleOciLob.write(Env env, java.lang.String data, long length)
          Writes data to the large object
 

Methods in com.caucho.quercus.lib.db with parameters of type LongValue
static ArrayValue PostgresModule.pg_fetch_all_columns(Env env, PostgresResult result, LongValue column)
          Fetches all rows in a particular result column as an array
 

Uses of LongValue in com.caucho.quercus.lib.file
 

Methods in com.caucho.quercus.lib.file with parameters of type LongValue
 BinaryStream PhpProtocolWrapper.fopen(Env env, StringValue pathV, StringValue mode, LongValue options)
           
 BinaryStream ProtocolWrapper.fopen(Env env, StringValue path, StringValue mode, LongValue options)
           
 BinaryStream ZlibProtocolWrapper.fopen(Env env, StringValue path, StringValue mode, LongValue options)
           
 boolean PhpProtocolWrapper.mkdir(Env env, StringValue path, LongValue mode, LongValue options)
           
 boolean ProtocolWrapper.mkdir(Env env, StringValue path, LongValue mode, LongValue options)
           
 boolean ZlibProtocolWrapper.mkdir(Env env, StringValue path, LongValue mode, LongValue options)
           
 boolean WrappedDirectory.open(Env env, StringValue path, LongValue flags)
           
 Value PhpProtocolWrapper.opendir(Env env, StringValue path, LongValue flags)
           
 Value ProtocolWrapper.opendir(Env env, StringValue path, LongValue flags)
           
 Value ZlibProtocolWrapper.opendir(Env env, StringValue path, LongValue flags)
           
 boolean PhpProtocolWrapper.rmdir(Env env, StringValue path, LongValue options)
           
 boolean ProtocolWrapper.rmdir(Env env, StringValue path, LongValue options)
           
 boolean ZlibProtocolWrapper.rmdir(Env env, StringValue path, LongValue options)
           
 boolean ProtocolWrapper.stream_metadata(Env env, StringValue path, LongValue options, Value arg)
           
 Value PhpProtocolWrapper.url_stat(Env env, StringValue path, LongValue flags)
           
 Value ProtocolWrapper.url_stat(Env env, StringValue path, LongValue flags)
           
 Value ZlibProtocolWrapper.url_stat(Env env, StringValue path, LongValue flags)
           
 

Constructors in com.caucho.quercus.lib.file with parameters of type LongValue
WrappedStream(Env env, QuercusClass qClass, StringValue path, StringValue mode, LongValue options)
           
 

Uses of LongValue in com.caucho.quercus.lib.i18n
 

Methods in com.caucho.quercus.lib.i18n that return LongValue
static LongValue MbstringModule.mb_ereg_search_getpos(Env env)
          Gets current position of ereg state object.
static LongValue MbstringModule.mb_strlen(Env env, StringValue str, java.lang.String encoding)
          Multibyte version of strlen.
static LongValue MbstringModule.mb_strwidth(Env env, StringValue str, java.lang.String encoding)
          Returns the width of this multibyte string.
static LongValue MbstringModule.mb_substr_count(Env env, StringValue haystack, StringValue needle, java.lang.String encoding)
           
 

Uses of LongValue in com.caucho.quercus.lib.regexp
 

Methods in com.caucho.quercus.lib.regexp that return LongValue
static LongValue RegexpModule.pregMatchAllPatternOrder(Env env, RegexpState regexpState, StringValue subject, ArrayValue matches, int flags, int offset)
          Returns the index of the first match.
 

Uses of LongValue in com.caucho.quercus.lib.xml
 

Methods in com.caucho.quercus.lib.xml that return LongValue
 LongValue XmlReader.getNextType()
           
 

Uses of LongValue in com.caucho.quercus.module
 

Methods in com.caucho.quercus.module that return LongValue
 LongValue IniDefinition.getAsLongValue(Env env)
           
 LongValue IniDefinition.getAsLongValue(QuercusContext quercus)