/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | TimeUtil.java | 74 return Timestamps.toString(timestamp); in toString() 91 return Timestamps.parse(value); in parseTimestamp() 130 return Timestamps.fromMillis(milliseconds); in createTimestampFromMillis() 154 return Timestamps.toMillis(timestamp); in toMillis() 176 return Timestamps.fromMicros(microseconds); in createTimestampFromMicros() 200 return Timestamps.toMicros(timestamp); in toMicros() 222 return Timestamps.fromNanos(nanoseconds); in createTimestampFromNanos() 242 return Timestamps.toNanos(timestamp); in toNanos() 262 return Timestamps.fromMillis(System.currentTimeMillis()); in getCurrentTime() 282 return Timestamps.between(from, to); in distance() [all …]
|
D | Durations.java | 39 import static com.google.protobuf.util.Timestamps.MICROS_PER_SECOND; 40 import static com.google.protobuf.util.Timestamps.MILLIS_PER_SECOND; 41 import static com.google.protobuf.util.Timestamps.NANOS_PER_MICROSECOND; 42 import static com.google.protobuf.util.Timestamps.NANOS_PER_MILLISECOND; 43 import static com.google.protobuf.util.Timestamps.NANOS_PER_SECOND; 229 result.append(Timestamps.formatNanos(nanos)); in toString() 259 int nanos = nanoValue.isEmpty() ? 0 : Timestamps.parseNanos(nanoValue); in parse()
|
D | Timestamps.java | 54 public final class Timestamps { class 101 private Timestamps() {} in Timestamps() method in Timestamps
|
D | JsonFormat.java | 933 generator.print("\"" + Timestamps.toString(value) + "\""); in printTimestamp() 1563 Timestamp value = Timestamps.parse(json.getAsString()); in mergeTimestamp()
|
/third_party/rust/crates/rustix/tests/fs/ |
D | utimensat.rs | 4 use rustix::fs::{cwd, openat, statat, utimensat, AtFlags, Mode, OFlags, Timespec, Timestamps}; in test_utimensat() 23 let times = Timestamps { in test_utimensat() 64 use rustix::fs::{cwd, openat, utimensat, AtFlags, Mode, OFlags, Timespec, Timestamps}; in test_utimensat_noent() 75 let times = Timestamps { in test_utimensat_noent() 94 use rustix::fs::{cwd, openat, utimensat, AtFlags, Mode, OFlags, Timespec, Timestamps}; in test_utimensat_notdir() 113 let times = Timestamps { in test_utimensat_notdir()
|
D | y2038.rs | 11 cwd, fstat, openat, statat, utimensat, AtFlags, Mode, OFlags, Timespec, Timestamps, in test_y2038_with_utimensat() 23 let timestamps = Timestamps { in test_y2038_with_utimensat() 110 cwd, fstat, futimens, openat, statat, AtFlags, Mode, OFlags, Timespec, Timestamps, in test_y2038_with_futimens() 122 let timestamps = Timestamps { in test_y2038_with_futimens()
|
D | futimens.rs | 4 use rustix::fs::{cwd, fstat, futimens, openat, Mode, OFlags, Timespec, Timestamps}; in test_futimens() 17 let times = Timestamps { in test_futimens()
|
/third_party/gstreamer/gstreamer/docs/random/wtay/ |
D | qos | 4 Timestamps are used in the pipeline to ensure timely delivery
|
/third_party/rust/crates/rustix/src/fs/ |
D | fd.rs | 57 pub struct Timestamps { struct 219 pub fn futimens<Fd: AsFd>(fd: Fd, times: &Timestamps) -> io::Result<()> { in futimens()
|
D | at.rs | 18 use crate::fs::{AtFlags, Mode, OFlags, Stat, Timestamps}; 298 times: &Timestamps, in utimensat() argument
|
D | mod.rs | 165 pub use fd::{fstat, fsync, ftruncate, futimens, is_file_read_write, seek, tell, Stat, Timestamps};
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
D | syscalls.rs | 118 use crate::fs::{Mode, OFlags, Stat, Timestamps}; 488 times: &Timestamps, in utimensat() argument 527 let _ = core::mem::transmute::<Timestamps, [c::timespec; 2]>(times.clone()); in utimensat() 563 let _ = core::mem::transmute::<Timestamps, [c::timespec; 2]>(times.clone()); in utimensat() 659 times: &Timestamps, in utimensat_old() argument 1052 pub(crate) fn futimens(fd: BorrowedFd<'_>, times: &Timestamps) -> io::Result<()> { in futimens() 1083 let _ = core::mem::transmute::<Timestamps, [c::timespec; 2]>(times.clone()); in futimens() 1108 let _ = core::mem::transmute::<Timestamps, [c::timespec; 2]>(times.clone()); in futimens() 1130 unsafe fn futimens_old(fd: BorrowedFd<'_>, times: &Timestamps) -> io::Result<()> { in futimens_old() 1707 fn times_to_attrlist(times: &Timestamps) -> (c::size_t, [c::timespec; 2], Attrlist) { in times_to_attrlist()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
D | syscalls.rs | 29 Timestamps, 1212 times: &Timestamps, in utimensat() argument 1222 times: &Timestamps, in _utimensat() argument 1226 let _ = unsafe { core::mem::transmute::<Timestamps, [__kernel_timespec; 2]>(times.clone()) }; in _utimensat() 1257 times: &Timestamps, in _utimensat_old() argument 1300 pub(crate) fn futimens(fd: BorrowedFd<'_>, times: &Timestamps) -> io::Result<()> { in futimens()
|
/third_party/EGL/extensions/ANDROID/ |
D | EGL_ANDROID_get_frame_timestamps.txt | 112 "3.13 Composition and Display Timestamps 160 EGL_BAD_SURFACE is generated. Timestamps for events that might still occur 161 will have the value EGL_TIMESTAMP_PENDING_ANDROID. Timestamps for events
|
/third_party/skia/third_party/externals/egl-registry/extensions/ANDROID/ |
D | EGL_ANDROID_get_frame_timestamps.txt | 112 "3.13 Composition and Display Timestamps 160 EGL_BAD_SURFACE is generated. Timestamps for events that might still occur 161 will have the value EGL_TIMESTAMP_PENDING_ANDROID. Timestamps for events
|
/third_party/libinput/doc/user/ |
D | timestamps.rst | 5 Timestamps title
|
/third_party/openssl/doc/man7/ |
D | ct.pod | 21 Signed Certificate Timestamps (SCTs), or to read a list of CT logs. There are
|
/third_party/openssl/doc/man3/ |
D | SCT_print.pod | 6 Prints Signed Certificate Timestamps in a human-readable way
|
D | SCT_validate.pod | 6 checks Signed Certificate Timestamps (SCTs) are valid
|
D | CT_POLICY_EVAL_CTX_new.pod | 34 Certificate Timestamps (SCTs) fulfil a Certificate Transparency (CT) policy.
|
D | SCT_new.pod | 78 Signed Certificate Timestamps (SCTs) are defined by RFC 6962, Section 3.2.
|
/third_party/gstreamer/gstplugins_bad/gst/camerabin2/ |
D | camerabin2-src.txt | 24 'imgsrc' is the pad where image capture buffers are pushed. Timestamps aren't
|
/third_party/protobuf/src/google/protobuf/ |
D | duration.proto | 52 // Example 1: Compute Duration from two Timestamps in pseudo code.
|
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
D | JsonFormatTest.java | 788 .setTimestampValue(Timestamps.parse("1970-01-01T00:00:00Z")) in testTimestamp() 1029 anyMessage = Any.pack(Timestamps.parse("1969-12-31T23:59:59Z")); in testAnyFields() 1103 testAny.putAnyMap("timestamp", Any.pack(Timestamps.parse("1969-12-31T23:59:59Z"))); in testAnyInMaps()
|
/third_party/rust/crates/nix/src/sys/socket/ |
D | mod.rs | 738 ScmTimestampsns(Timestamps), 841 pub struct Timestamps { 906 let timestamping = Timestamps { system, hw_trans, hw_raw }; 1871 let cmsg = cmsg_space!(crate::sys::socket::Timestamps);
|