Home
last modified time | relevance | path

Searched full:records (Results 1 – 25 of 9379) sorted by relevance

12345678910>>...376

/aosp_15_r20/external/python/mobly/tests/mobly/
Drecords_test.py23 from mobly import records
53 """This test class tests the implementation of classes in mobly.records."""
87 d[records.TestResultEnums.RECORD_NAME] = self.tn
88 d[records.TestResultEnums.RECORD_RESULT] = result
89 d[records.TestResultEnums.RECORD_DETAILS] = details
90 d[records.TestResultEnums.RECORD_TERMINATION_SIGNAL_TYPE] = (
93 d[records.TestResultEnums.RECORD_EXTRAS] = extras
94 d[records.TestResultEnums.RECORD_BEGIN_TIME] = record.begin_time
95 d[records.TestResultEnums.RECORD_END_TIME] = record.end_time
96 d[records.TestResultEnums.RECORD_SIGNATURE] = (
[all …]
/aosp_15_r20/external/pytorch/test/dynamo/
H A Dtest_logging.py61 def fn(self, records): argument
64 self.assertEqual(len(records), num_records)
71 def fn(self, records): argument
74 self.assertGreaterEqual(len(records), num_records_lower)
75 self.assertLessEqual(len(records), num_records_higher)
91 def test_schedule(self, records): argument
94 self.assertGreater(len(records), 0)
95 self.assertLess(len(records), 5)
99 def test_fusion(self, records): argument
102 self.assertGreater(len(records), 0)
[all …]
/aosp_15_r20/tools/test/connectivity/acts/framework/tests/
Dacts_records_test.py19 from mobly.records import ControllerInfoRecord
21 from acts import records
26 """This test class tests the implementation of classes in acts.records.
47 d[records.TestResultEnums.RECORD_NAME] = self.tn
48 d[records.TestResultEnums.RECORD_RESULT] = result
49 d[records.TestResultEnums.RECORD_DETAILS] = details
50 d[records.TestResultEnums.RECORD_EXTRAS] = extras
51 d[records.TestResultEnums.RECORD_BEGIN_TIME] = record.begin_time
52 d[records.TestResultEnums.RECORD_END_TIME] = record.end_time
53 d[records.TestResultEnums.
[all …]
/aosp_15_r20/frameworks/base/core/java/com/android/internal/os/anr/
H A DAnrLatencyTracker.java44 * Store different latencies from the ANR flow and trace functions, it records latency breakdown
138 /** Records the start of AnrHelper#appNotResponding. */
145 /** Records the end of AnrHelper#appNotResponding. */
151 * Records the number of processes we are currently early-dumping, this number includes the
159 /** Records the placing of the AnrHelper.AnrRecord instance on the processing queue. */
170 /** Records the start of ProcessErrorStateRecord#appNotResponding. */
179 /** Records the end of ProcessErrorStateRecord#appNotResponding, the tracker is closed here. */
185 /** Records the start of StackTracesDumpHelper#dumpStackTraces. */
192 /** Records the end of StackTracesDumpHelper#dumpStackTraces. */
197 /** Records the start of ActivityManagerService#updateCpuStatsNow. */
[all …]
/aosp_15_r20/frameworks/base/services/tests/vibrator/src/com/android/server/vibrator/
H A DGroupedAggregatedLogRecordsTest.java54 TestGroupedAggregatedLogRecords records = new TestGroupedAggregatedLogRecords( in record_noAggregation_keepsIndividualRecords() local
58 assertThat(records.add(createRecord(GROUP_1, KEY_1, createTime++))).isNull(); in record_noAggregation_keepsIndividualRecords()
61 dumpRecords(records); in record_noAggregation_keepsIndividualRecords()
62 assertGroupHeadersWrittenOnce(records, GROUP_1); in record_noAggregation_keepsIndividualRecords()
69 TestGroupedAggregatedLogRecords records = new TestGroupedAggregatedLogRecords( in record_sizeLimit_dropsOldestEntriesForNewOnes() local
73 assertThat(records.add(firstRecord)).isNull(); in record_sizeLimit_dropsOldestEntriesForNewOnes()
74 assertThat(records.add(createRecord(GROUP_1, KEY_1, createTime++))).isNull(); in record_sizeLimit_dropsOldestEntriesForNewOnes()
78 records.add(createRecord(GROUP_1, KEY_1, createTime++)); in record_sizeLimit_dropsOldestEntriesForNewOnes()
82 dumpRecords(records); in record_sizeLimit_dropsOldestEntriesForNewOnes()
83 assertGroupHeadersWrittenOnce(records, GROUP_1); in record_sizeLimit_dropsOldestEntriesForNewOnes()
[all …]
/aosp_15_r20/packages/modules/HealthFitness/tests/cts/route/src/android/healthconnect/cts/route/
DExerciseRouteWriteTest.java77 List<ExerciseSessionRecord> records = readAllExerciseSessionRecordsPrivileged(); in insertRecords_withRoute_routeGetsInserted() local
78 assertThat(records).hasSize(1); in insertRecords_withRoute_routeGetsInserted()
79 assertThat(records.get(0).hasRoute()).isTrue(); in insertRecords_withRoute_routeGetsInserted()
80 assertThat(records.get(0).getRoute()).isEqualTo(sessionWithRoute.getRoute()); in insertRecords_withRoute_routeGetsInserted()
93 List<ExerciseSessionRecord> records = readAllExerciseSessionRecordsPrivileged(); in insertRecords_withClientId_withoutRoute_routeGetsDeleted() local
94 assertThat(records).hasSize(1); in insertRecords_withClientId_withoutRoute_routeGetsDeleted()
95 assertThat(records.get(0).hasRoute()).isFalse(); in insertRecords_withClientId_withoutRoute_routeGetsDeleted()
96 assertThat(records.get(0).getRoute()).isNull(); in insertRecords_withClientId_withoutRoute_routeGetsDeleted()
109 List<ExerciseSessionRecord> records = readAllExerciseSessionRecordsPrivileged(); in insertRecords_withClientId_withUpdatedRoute_routeGetsUpdated() local
110 assertThat(records).hasSize(1); in insertRecords_withClientId_withUpdatedRoute_routeGetsUpdated()
[all …]
DExerciseRouteNoReadWritePermissionTest.java105 List<ExerciseSessionRecord> records = readAllExerciseSessionRecordsPrivileged(); in insertRecords_withSameClientId_withoutRoute_routeDoesNotGetDeleted() local
106 assertThat(records).hasSize(1); in insertRecords_withSameClientId_withoutRoute_routeDoesNotGetDeleted()
107 assertThat(records.get(0).hasRoute()).isTrue(); in insertRecords_withSameClientId_withoutRoute_routeDoesNotGetDeleted()
108 assertThat(records.get(0).getRoute()).isEqualTo(sessionWithRoute.getRoute()); in insertRecords_withSameClientId_withoutRoute_routeDoesNotGetDeleted()
132 List<ExerciseSessionRecord> records = readAllExerciseSessionRecordsPrivileged(); in insertRecords_withSameClientId_updatedRoute_throws_routeDoesNotGetUpdated() local
133 assertThat(records).hasSize(1); in insertRecords_withSameClientId_updatedRoute_throws_routeDoesNotGetUpdated()
134 assertThat(records.get(0).hasRoute()).isTrue(); in insertRecords_withSameClientId_updatedRoute_throws_routeDoesNotGetUpdated()
135 assertThat(records.get(0).getRoute()).isEqualTo(sessionWithRoute.getRoute()); in insertRecords_withSameClientId_updatedRoute_throws_routeDoesNotGetUpdated()
157 List<ExerciseSessionRecord> records = readAllExerciseSessionRecordsPrivileged(); in insertRecords_withSameClientId_addedRoute_throws_routeDoesNotGetAdded() local
158 assertThat(records).hasSize(1); in insertRecords_withSameClientId_addedRoute_throws_routeDoesNotGetAdded()
[all …]
DExerciseRouteReadTest.java75 List<ExerciseSessionRecord> records = in readRecords_usingFilters_cannotAccessOtherAppRoute() local
80 assertThat(records).hasSize(1); in readRecords_usingFilters_cannotAccessOtherAppRoute()
81 assertThat(records.get(0).hasRoute()).isTrue(); in readRecords_usingFilters_cannotAccessOtherAppRoute()
82 assertThat(records.get(0).getRoute()).isNull(); in readRecords_usingFilters_cannotAccessOtherAppRoute()
90 List<ExerciseSessionRecord> records = in readRecords_usingFilters_canAccessOwnRoute() local
95 assertThat(records).hasSize(1); in readRecords_usingFilters_canAccessOwnRoute()
96 assertThat(records.get(0).hasRoute()).isTrue(); in readRecords_usingFilters_canAccessOwnRoute()
97 assertThat(records.get(0).getRoute()).isEqualTo(sessionWithRoute.getRoute()); in readRecords_usingFilters_canAccessOwnRoute()
107 List<ExerciseSessionRecord> records = in readRecords_usingFilters_mixedOwnAndOtherAppSession() local
113 records.stream() in readRecords_usingFilters_mixedOwnAndOtherAppSession()
[all …]
DReadExerciseRoutesPermissionTest.java72 List<ExerciseSessionRecord> records = in readRecords_usingFilters_canAccessOtherAppRoute() local
77 assertThat(records).hasSize(1); in readRecords_usingFilters_canAccessOtherAppRoute()
78 assertThat(records.get(0).hasRoute()).isTrue(); in readRecords_usingFilters_canAccessOtherAppRoute()
79 assertThat(records.get(0).getRoute()).isEqualTo(sessionWithRoute.getRoute()); in readRecords_usingFilters_canAccessOtherAppRoute()
87 List<ExerciseSessionRecord> records = in readRecords_usingFilters_canAccessOwnRoute() local
92 assertThat(records).hasSize(1); in readRecords_usingFilters_canAccessOwnRoute()
93 assertThat(records.get(0).hasRoute()).isTrue(); in readRecords_usingFilters_canAccessOwnRoute()
94 assertThat(records.get(0).getRoute()).isEqualTo(sessionWithRoute.getRoute()); in readRecords_usingFilters_canAccessOwnRoute()
104 List<ExerciseSessionRecord> records = in readRecords_usingFilters_mixedOwnAndOtherAppSession() local
110 records.stream() in readRecords_usingFilters_mixedOwnAndOtherAppSession()
[all …]
DExerciseRouteBackgroundReadTest.java102 List<ExerciseSessionRecord> records = in readRecords_usingFilters_cannotAccessOtherAppRoute() local
107 assertThat(records).hasSize(1); in readRecords_usingFilters_cannotAccessOtherAppRoute()
108 assertThat(records.get(0).hasRoute()).isTrue(); in readRecords_usingFilters_cannotAccessOtherAppRoute()
109 assertThat(records.get(0).getRoute()).isNull(); in readRecords_usingFilters_cannotAccessOtherAppRoute()
117 List<ExerciseSessionRecord> records = in readRecords_usingFilters_canAccessOwnRoute() local
122 assertThat(records).hasSize(1); in readRecords_usingFilters_canAccessOwnRoute()
123 assertThat(records.get(0).hasRoute()).isTrue(); in readRecords_usingFilters_canAccessOwnRoute()
124 assertThat(records.get(0).getRoute()).isEqualTo(sessionWithRoute.getRoute()); in readRecords_usingFilters_canAccessOwnRoute()
135 List<ExerciseSessionRecord> records = in readRecords_usingFilters_mixedOwnAndOtherAppSession() local
141 records.stream() in readRecords_usingFilters_mixedOwnAndOtherAppSession()
[all …]
/aosp_15_r20/tools/test/mobly_extensions/tools/results_uploader/src/
Dmobly_result_converter.py45 from mobly import records
128 node_type: records.TestParentType
219 or entry.get(records.TestResultEnums.RECORD_SIGNATURE, None) is None
223 test_class = entry[records.TestResultEnums.RECORD_CLASS]
226 entry[records.TestResultEnums.RECORD_SIGNATURE]
330 parent_type_map: Mapping[str, records.TestParentType],
352 if parent_type_map[signature] == records.TestParentType.REPEAT:
399 if records.TestResultEnums.RECORD_SIGNATURE not in entry:
401 current_signature = entry[records.TestResultEnums.RECORD_SIGNATURE]
403 records.TestResultEnums.RECORD_NAME
[all …]
/aosp_15_r20/external/clang/utils/TableGen/
H A DTableGenBackends.h35 void EmitClangAttrParserStringSwitches(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
38 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
39 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
40 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS);
41 void EmitClangAttrHasAttrImpl(RecordKeeper &Records, raw_ostream &OS);
42 void EmitClangAttrSpellingListIndex(RecordKeeper &Records, raw_ostream &OS);
43 void EmitClangAttrASTVisitor(RecordKeeper &Records, raw_ostream &OS);
44 void EmitClangAttrTemplateInstantiate(RecordKeeper &Records, raw_ostream &OS);
[all …]
H A DTableGen.cpp144 bool ClangTableGenMain(raw_ostream &OS, RecordKeeper &Records) { in ClangTableGenMain() argument
147 EmitClangAttrClass(Records, OS); in ClangTableGenMain()
150 EmitClangAttrParserStringSwitches(Records, OS); in ClangTableGenMain()
153 EmitClangAttrImpl(Records, OS); in ClangTableGenMain()
156 EmitClangAttrList(Records, OS); in ClangTableGenMain()
159 EmitClangAttrPCHRead(Records, OS); in ClangTableGenMain()
162 EmitClangAttrPCHWrite(Records, OS); in ClangTableGenMain()
165 EmitClangAttrHasAttrImpl(Records, OS); in ClangTableGenMain()
168 EmitClangAttrSpellingListIndex(Records, OS); in ClangTableGenMain()
171 EmitClangAttrASTVisitor(Records, OS); in ClangTableGenMain()
[all …]
/aosp_15_r20/external/tcpdump/tests/
H A Dsflow_multiple_counter_30_pdus.out3 expanded counter sample (4), length 172, seqnum 87096, type 0, idx 55, records 2
15 expanded counter sample (4), length 172, seqnum 87096, type 0, idx 56, records 2
27 expanded counter sample (4), length 172, seqnum 87099, type 0, idx 57, records 2
39 expanded counter sample (4), length 172, seqnum 87096, type 0, idx 60, records 2
51 expanded counter sample (4), length 172, seqnum 87016, type 0, idx 61, records 2
63 expanded counter sample (4), length 172, seqnum 87096, type 0, idx 62, records 2
75 expanded counter sample (4), length 172, seqnum 87096, type 0, idx 63, records 2
89 expanded counter sample (4), length 172, seqnum 2007195, type 0, idx 1, records 2
101 expanded counter sample (4), length 172, seqnum 2006745, type 0, idx 2, records 2
113 expanded counter sample (4), length 172, seqnum 2007118, type 0, idx 3, records 2
[all …]
H A Dsflow-print-v6.out2 counter sample (2), length 168, seqnum 28, type 0, idx 23001, records 2
15 counter sample (2), length 168, seqnum 27, type 0, idx 20001, records 2
27 counter sample (2), length 168, seqnum 28, type 0, idx 3001, records 2
40 counter sample (2), length 168, seqnum 27, type 0, idx 21001, records 2
52 counter sample (2), length 168, seqnum 28, type 0, idx 18001, records 2
64 counter sample (2), length 168, seqnum 28, type 0, idx 10001, records 2
76 counter sample (2), length 168, seqnum 28, type 0, idx 1001, records 2
89 counter sample (2), length 168, seqnum 27, type 0, idx 19001, records 2
101 counter sample (2), length 168, seqnum 28, type 0, idx 8001, records 2
113 counter sample (2), length 168, seqnum 28, type 0, idx 4001, records 2
[all …]
/aosp_15_r20/packages/modules/Connectivity/service-t/src/com/android/server/connectivity/mdns/
DMdnsResponse.java40 private final List<MdnsRecord> records; field in MdnsResponse
55 records = new LinkedList<>(); in MdnsResponse()
65 records = new ArrayList<>(base.records); in MdnsResponse()
78 * Compare records for equality, including their TTL.
81 * records when the TTL changes (especially for goodbye announcements).
95 records.remove(existedRecord); in addOrReplaceRecord()
98 records.add(record); in addOrReplaceRecord()
106 final int existing = records.indexOf(record); in hasIdenticalRecord()
107 return existing >= 0 && recordsAreSame(record, records.get(existing)); in hasIdenticalRecord()
119 "Pointer records for different service names cannot be added"); in addPointerRecord()
[all …]
DMdnsRecordRepository.java68 * A repository of records advertised through {@link MdnsInterfaceAdvertiser}.
78 // TTL for records with a host name as the resource record's name (e.g., A, AAAA, HINFO) or a
82 // TTL for other records
100 // Map of service unique ID -> records for service
250 // When custom TTL is specified, all records of the service will use the custom TTL. in ServiceRegistration()
253 // where all records in a single SRP are required the same TTL. in ServiceRegistration()
274 // Service PTR records in ServiceRegistration()
463 * @param ttl the TTL duration for all records of {@code serviceInfo} or {@code null}
561 // As per RFC6763 6.1, empty TXT records are not allowed, but records containing a in attrsToTextEntries()
584 // Send exit (TTL 0) for the PTR records, if at least one was sent (in particular don't send in exitService()
[all …]
/aosp_15_r20/external/ltp/testcases/realtime/lib/
H A Dlibstats.c75 data->records = calloc(size, sizeof(stats_record_t)); in stats_container_init()
76 if (!data->records) in stats_container_init()
90 data->records[myindex] = rec; in stats_container_append()
97 realloc(data->records, size * sizeof(stats_record_t)); in stats_container_resize()
100 data->records = newrecords; in stats_container_resize()
102 memset(data->records + data->size, 0, size - data->size); in stats_container_resize()
109 free(data->records); in stats_container_free()
116 qsort(data->records, data->index + 1, sizeof(stats_record_t), in stats_sort()
133 sum += data->records[i].y; in stats_stddev()
140 delta = (data->records[i].y - avg); in stats_stddev()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/io_ops/
H A Ddecode_csv_op_test.py45 "records": ["1", "2", '"3"'],
55 "records": ["1,4", "2,5", "3,6"],
65 "records": ["1", "2", "3"],
80 "records": ["1", "2", '"3"'],
90 args = {"records": '1,""', "record_defaults": [[3], [4]]}
97 args = {"records": [["1", "2"], ['""', "4"]], "record_defaults": [[5]]}
104 "records": [["1", "2"], ['""', '"']],
114 "records": ["1.0", "-1.79e+308", '"1.79e+308"'],
124 "records": ["1", "2", '"2147483648"'],
134 "records": ['"1.0"', '"ab , c"', '"a\nbc"', '"ab""c"', " abc "],
[all …]
/aosp_15_r20/frameworks/base/nfc/java/android/nfc/
H A DNdefMessage.java34 * NDEF defines messages and records. An NDEF Record contains
37 * one or more NDEF Records.
71 * This parser can handle chunked records, and converts them
74 * records, basic validation of the tnf, type, id, and payload fields
107 * Construct an NDEF Message from one or more NDEF Records.
110 * @param records additional records (optional)
112 public NdefMessage(NdefRecord record, NdefRecord ... records) { in NdefMessage() argument
116 for (NdefRecord r : records) { in NdefMessage()
122 mRecords = new NdefRecord[1 + records.length]; in NdefMessage()
124 System.arraycopy(records, 0, mRecords, 1, records.length); in NdefMessage()
[all …]
/aosp_15_r20/packages/modules/HealthFitness/tests/cts/src/android/healthconnect/cts/
DHealthConnectManagerTest.java226 // read inserted records and verify that the data is same as inserted. in testUpdateRecords_validInput_dataBaseUpdatedSuccessfully()
229 // Generate a second set of records that will be used to perform the update operation. in testUpdateRecords_validInput_dataBaseUpdatedSuccessfully()
232 // Modify the Uid of the updateRecords to the uuid that was present in the insert records. in testUpdateRecords_validInput_dataBaseUpdatedSuccessfully()
275 * records. These records will have UUIDs that are not present in the table. Since this record
287 // read inserted records and verify that the data is same as inserted. in testUpdateRecords_invalidInputRecords_noChangeInDataBase()
289 // Generate a second set of records that will be used to perform the update operation. in testUpdateRecords_invalidInputRecords_noChangeInDataBase()
292 // Modify the Uid of the updateRecords to the UUID that was present in the insert records, in testUpdateRecords_invalidInputRecords_noChangeInDataBase()
293 // leaving out alternate records so that they have a new UUID which is not present in the in testUpdateRecords_invalidInputRecords_noChangeInDataBase()
354 // read inserted records and verify that the data is same as inserted. in testUpdateRecords_recordWithInvalidPackageName_noChangeInDataBase()
356 // Generate a second set of records that will be used to perform the update operation. in testUpdateRecords_recordWithInvalidPackageName_noChangeInDataBase()
[all …]
/aosp_15_r20/external/llvm/utils/TableGen/
H A DTableGen.cpp53 cl::values(clEnumValN(PrintRecords, "print-records",
54 "Print all records to stdout (default)"),
101 bool LLVMTableGenMain(raw_ostream &OS, RecordKeeper &Records) { in LLVMTableGenMain() argument
104 OS << Records; // No argument, dump all contents in LLVMTableGenMain()
107 EmitCodeEmitter(Records, OS); in LLVMTableGenMain()
110 EmitRegisterInfo(Records, OS); in LLVMTableGenMain()
113 EmitInstrInfo(Records, OS); in LLVMTableGenMain()
116 EmitCallingConv(Records, OS); in LLVMTableGenMain()
119 EmitAsmWriter(Records, OS); in LLVMTableGenMain()
122 EmitAsmMatcher(Records, OS); in LLVMTableGenMain()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/framework/
H A Dmetrics.h31 // Records that a tf.data.Dataset executed by the program used autotuning.
68 // Records the number of bytes fetched from tf.data.Dataset iterator.
71 // Records the number of times tf.data experiment is applied to input pipelines.
74 // Records the time (in microseconds) spent in a single invocation of
78 // Records the histogram of ratios of tf.data autotune algorithm used RAM over
82 // Records the histogram of ratios of tf.data autotune algorithm max buffer
86 // Records the number of times each tf.data fingerprint is used
93 // Records the time (in microseconds) during which `IteratorResource` was busy
97 // Records the time (in microseconds) between `IteratorResource` receiving the
101 // Records the time histogram (in microseconds) between `IteratorResource`
[all …]
/aosp_15_r20/external/pytorch/torch/testing/_internal/
H A Dlogging_utils.py70 # 2. patches the emit method of each setup handler to gather records
72 # 3. passes a ref to the gathered records to each test case for checking
75 # that the logs are setup correctly and capturing the correct records.
82 records = []
85 with self._handler_watcher(records):
86 fn(self, records)
88 with log_settings(kwargs_to_settings(**kwargs)), self._handler_watcher(records):
89 fn(self, records)
93 records.clear()
94 with log_api(**kwargs), self._handler_watcher(records):
[all …]
/aosp_15_r20/packages/modules/HealthFitness/tests/cts/src/android/healthconnect/cts/datatypes/
DExerciseSessionRecordTest.java346 List<Record> records = in testReadById_insertAndReadById_recordsAreEqual() local
351 request.addId(records.get(0).getMetadata().getId()); in testReadById_insertAndReadById_recordsAreEqual()
352 request.addId(records.get(1).getMetadata().getId()); in testReadById_insertAndReadById_recordsAreEqual()
354 assertRecordsAreEqual(records, TestUtils.readRecords(request.build())); in testReadById_insertAndReadById_recordsAreEqual()
359 List<Record> records = TestUtils.insertRecords(List.of(buildExerciseSession())); in testReadById_insertAndReadByIdOne_recordsAreEqual() local
363 request.addId(records.get(0).getMetadata().getId()); in testReadById_insertAndReadByIdOne_recordsAreEqual()
366 ExerciseSessionRecord insertedRecord = (ExerciseSessionRecord) records.get(0); in testReadById_insertAndReadByIdOne_recordsAreEqual()
377 List<Record> records = in testReadByClientId_insertAndReadByClientId_recordsAreEqual() local
382 request.addClientRecordId(records.get(0).getMetadata().getClientRecordId()); in testReadByClientId_insertAndReadByClientId_recordsAreEqual()
383 request.addClientRecordId(records.get(1).getMetadata().getClientRecordId()); in testReadByClientId_insertAndReadByClientId_recordsAreEqual()
[all …]

12345678910>>...376