Home
last modified time | relevance | path

Searched refs:dt (Results 1 – 7 of 7) sorted by relevance

/system/extras/tests/timetest/
Dtimetest.c80 struct timespec t, dt; in main() local
82 dt = ts_sub(t, t1); in main()
84 dtmin = ts_min(dtmin, dt); in main()
85 if(dt.tv_sec > 0 || dt.tv_nsec > 0) in main()
86 dtminp = ts_min(dtminp, dt); in main()
88 dtmax = ts_max(dtmax, dt); in main()
91 t.tv_sec, t.tv_nsec, dt.tv_sec, dt.tv_nsec, in main()
/system/tools/aidl/
Dpreprocess.cpp37 void DumpType(const AidlDefinedType& dt, const string& type) { in DumpType()
38 DumpComments(dt); in DumpType()
39 DumpAnnotations(dt); in DumpType()
41 if (dt.GetParentType()) { in DumpType()
42 out << type << " " << dt.GetName(); in DumpType()
44 out << type << " " << dt.GetCanonicalName(); in DumpType()
46 if (auto generic_type = dt.AsParameterizable(); generic_type && generic_type->IsGeneric()) { in DumpType()
50 void DumpMembers(const AidlDefinedType& dt) { in DumpMembers()
53 for (const auto& constdecl : dt.GetConstantDeclarations()) { in DumpMembers()
56 for (const auto& nested : dt.GetNestedTypes()) { in DumpMembers()
Daidl_dumpapi.cpp51 void DumpVisitor::DumpType(const AidlDefinedType& dt, const string& type) { in DumpType() argument
52 if (!dt.IsUserDefined()) { in DumpType()
55 DumpComments(dt); in DumpType()
56 DumpAnnotations(dt); in DumpType()
57 out << type << " " << dt.GetName(); in DumpType()
58 if (auto generic_type = dt.AsParameterizable(); generic_type && generic_type->IsGeneric()) { in DumpType()
62 if (dt.AsUnstructuredParcelable()) { in DumpType()
69 DumpMembers(dt); in DumpType()
74 void DumpVisitor::DumpMembers(const AidlDefinedType& dt) { in DumpMembers() argument
75 for (const auto& method : dt.GetMethods()) { in DumpMembers()
[all …]
Daidl_dumpapi.h29 void DumpType(const AidlDefinedType& dt, const string& type);
30 void DumpMembers(const AidlDefinedType& dt);
/system/nfc/src/rust/nci/
Dapi.rs299 let dt = DestTypes::try_from(dest_type).unwrap(); in nfc_conn_create() localVariable
300 match dt { in nfc_conn_create()
314 .send(ConnCreateCommandBuilder { gid: 0, pbf, dt, destparams }.build().into()) in nfc_conn_create()
/system/extras/boottime_tools/bootanalyze/
Dbugreport_anayze.py187 dt = datetime(2017, mm, dd, hh, min, secs, usecs)
188 return int((dt - EPOCH).total_seconds() * 1000)
/system/nfc/src/
Dnci_packets.pdl425 dt : DestTypes,