HomeSort by relevance Sort by last modified time
    Searched refs:Timestamp (Results 1 - 25 of 30) sorted by null

1 2

  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TimestampTest.java 25 import java.sql.Timestamp;
32 @TestTargetClass(Timestamp.class)
34 * JUnit Testcase for the java.sql.Timestamp class
40 static class MockTimestamp extends Timestamp{
137 method = "Timestamp",
141 Timestamp theTimestamp = new Timestamp(TIME_TEST1);
143 // The Timestamp should have been created
146 Timestamp mockTimestamp = new MockTimestamp(TIME_TEST1);
156 method = "Timestamp",
    [all...]
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 30 import java.security.Timestamp;
37 @TestTargetClass(Timestamp.class)
39 * Tests for <code>Timestamp</code> class fields and methods
58 method = "Timestamp",
63 new Timestamp(null, cpath);
69 new Timestamp(now, null);
75 Timestamp timestamp = new Timestamp(now, cpath); local
76 assertEquals("not expected value", now, timestamp.getTimestamp())
    [all...]
CodeSignerTest.java 31 import java.security.Timestamp;
56 private Timestamp ts = new Timestamp(now, cpath);
65 args = {java.security.cert.CertPath.class, java.security.Timestamp.class}
77 * timestamp can be null
81 notes = "Null parameter timestamp checking",
83 args = {java.security.cert.CertPath.class, java.security.Timestamp.class}
101 args = {java.security.cert.CertPath.class, java.security.Timestamp.class}
CodeSource2Test.java 28 import java.security.Timestamp;
87 Timestamp ts = new Timestamp(now, cpath);
  /dalvik/libcore/security/src/main/java/java/security/
Timestamp.java 27 * {@code Timestamp} represents a signed time stamp. {@code Timestamp} is
30 public final class Timestamp implements Serializable {
34 private Date timestamp; field in class:Timestamp
42 * Constructs a new instance of {@code Timestamp} with the specified {@code
43 * timestamp} and the given certificate path.
45 * @param timestamp
50 * if {@code timestamp} is {@code null} or if {@code
53 public Timestamp(Date timestamp, CertPath signerCertPath)
    [all...]
CodeSigner.java 34 private Timestamp timestamp; field in class:CodeSigner
44 * @param timestamp
50 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) {
55 this.timestamp = timestamp;
80 return timestamp == null ? that.timestamp == null : timestamp
    [all...]
  /dalvik/libcore/sql/src/main/java/java/sql/
Timestamp.java 28 * A Java representation of the SQL {@code TIMESTAMP} type. It provides the
29 * capability of representing the SQL {@code TIMESTAMP} nanosecond value, in
32 * The {@code Timestamp} class consists of a regular date/time value, where only
36 * The addition of the nanosecond value field to the {@code Timestamp} object
38 * it extends. Users should be aware that {@code Timestamp} objects are not
46 public class Timestamp extends Date {
50 // The nanoseconds time value of the Timestamp
57 * Returns a {@code Timestamp} corresponding to the time specified by the
61 * @deprecated Use the constructor {@link #Timestamp(long)}.
75 * which defines the nanosecond value of the timestamp specifie
    [all...]
SQLInput.java 177 * java.sql.Timestamp}.
179 * @return the attribute as a {@code java.sql.Timestamp}. {@code null} if
183 * @see Timestamp
185 public Timestamp readTimestamp() throws SQLException;
CallableStatement.java 682 * Returns the indexed parameter's {@code TIMESTAMP} value as a {@code
683 * java.sql.Timestamp}.
688 * @return the parameter's value as a {@code java.sql.Timestamp}. A
693 * @see Timestamp
695 public Timestamp getTimestamp(int parameterIndex) throws SQLException;
698 * Returns the indexed parameter's {@code TIMESTAMP} value as a {@code
699 * java.sql.Timestamp}. The JDBC driver uses the supplied {@code Calendar}
706 * used for creating the returned {@code Timestamp}
707 * @return the parameter's value as a {@code java.sql.Timestamp}. A
712 * @see Timestamp
    [all...]
ResultSet.java     [all...]
PreparedStatement.java 615 * Sets the value of a specified parameter to a supplied java.sql.Timestamp
622 * the java.sql.Timestamp value to which the parameter at {@code
627 public void setTimestamp(int parameterIndex, Timestamp theTimestamp)
632 * java.sql.Timestamp} value, using the supplied {@code Calendar}.
635 * TIMESTAMP} value, which allows it to use a custom timezone - otherwise
642 * the {@code java.sql.Timestamp} value to which the parameter at
646 * TIMESTAMP} value
649 * @see Timestamp
652 public void setTimestamp(int parameterIndex, Timestamp theTimestamp,
SQLOutput.java 166 * Write a {@code java.sql.Timestamp} value into the output stream.
169 * the {@code Timestamp} value to write.
172 * @see Timestamp
174 public void writeTimestamp(Timestamp theTimestamp) throws SQLException;
  /dalvik/libcore/sql/src/test/java/tests/sql/
ResultSetGetterTests.java 38 import java.sql.Timestamp;
144 java.sql.Timestamp.class, // Types.TIMESTAMP,
176 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
    [all...]
SQLOutputTest.java 38 import java.sql.Timestamp;
202 * {@link java.sql.SQLOutput#writeTimestamp(java.sql.Timestamp)}.
208 args = {Timestamp.class}
CallableStatementTest.java 32 import java.sql.Timestamp;
1019 * Test method for {@link java.sql.CallableStatement#setTimestamp(java.lang.String, java.sql.Timestamp)}.
1025 args = {String.class, Timestamp.class}
1032 * Test method for {@link java.sql.CallableStatement#setTimestamp(java.lang.String, java.sql.Timestamp, java.util.Calendar)}.
1038 args = {String.class, Timestamp.class, Calendar.class}
PreparedStatementTest.java 45 import java.sql.Timestamp;
71 + " dateVal DATE, " + " timeVal TIME, " + " TS TIMESTAMP, "
    [all...]
ResultSetNotSupportedTests.java     [all...]
  /dalvik/libcore/sql/src/main/java/javax/sql/
RowSet.java 28 import java.sql.Timestamp;
806 * to a supplied {@code java.sql.Timestamp}, converting it to an SQL {@code
807 * TIMESTAMP} value using the system default {@code Calendar}.
    [all...]
  /dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 34 import java.sql.Timestamp;
224 public void setTimestamp(int parameterIndex, Timestamp theTimestamp,
228 public void setTimestamp(int parameterIndex, Timestamp theTimestamp)
502 public Timestamp getTimestamp(int columnIndex, Calendar cal)
507 public Timestamp getTimestamp(int columnIndex) throws SQLException {
511 public Timestamp getTimestamp(String columnName, Calendar cal)
516 public Timestamp getTimestamp(String columnName) throws SQLException {
751 public void updateTimestamp(int columnIndex, Timestamp x)
755 public void updateTimestamp(String columnName, Timestamp x)
  /dalvik/libcore/sql/src/main/java/SQLite/JDBC2y/
JDBCPreparedStatement.java 256 public void setTimestamp(int parameterIndex, java.sql.Timestamp x)
448 public void setTimestamp(int parameterIndex, java.sql.Timestamp x,
553 public void setTimestamp(String parameterName, java.sql.Timestamp val)
604 public void setTimestamp(String parameterName, java.sql.Timestamp val,
659 public java.sql.Timestamp getTimestamp(String parameterName)
738 public java.sql.Timestamp getTimestamp(String parameterName, Calendar cal)
743 public java.sql.Timestamp getTimestamp(int parameterIndex, Calendar cal)
JDBCResultSet.java 233 public java.sql.Timestamp getTimestamp(int columnIndex)
238 private java.sql.Timestamp internalGetTimestamp(int columnIndex,
247 return java.sql.Timestamp.valueOf(lastg);
254 public java.sql.Timestamp getTimestamp(String columnName)
260 public java.sql.Timestamp getTimestamp(int columnIndex,
266 public java.sql.Timestamp getTimestamp(String columnName,
739 public void updateTimestamp(int colIndex, java.sql.Timestamp t)
823 public void updateTimestamp(String colIndex, java.sql.Timestamp t)
  /dalvik/libcore/sql/src/test/java/tests/javax/sql/
RowSetTest.java 19 import java.sql.Timestamp;
579 args = {int.class, java.sql.Timestamp.class}
589 args = {int.class, java.sql.Timestamp.class, java.util.Calendar.class}
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ralink.h 309 UCHAR Timestamp[8];
driver_ndis.c 184 UCHAR Timestamp[8];
832 r->tsf = WPA_GET_LE64(fixed->Timestamp);
    [all...]
  /external/wpa_supplicant/
driver_ndis.c 178 UCHAR Timestamp[8];
    [all...]

Completed in 1612 milliseconds

1 2