Home
last modified time | relevance | path

Searched refs:record (Results 1 – 25 of 868) sorted by relevance

12345678910>>...35

/external/wpa_supplicant_8/src/wps/
Dndef.c36 struct ndef_record *record) in ndef_parse_record() argument
42 record->type_length = *pos++; in ndef_parse_record()
46 record->payload_length = *pos++; in ndef_parse_record()
55 record->payload_length = len; in ndef_parse_record()
62 record->id_length = *pos++; in ndef_parse_record()
64 record->id_length = 0; in ndef_parse_record()
66 record->type = record->type_length == 0 ? NULL : pos; in ndef_parse_record()
67 pos += record->type_length; in ndef_parse_record()
69 record->id = record->id_length == 0 ? NULL : pos; in ndef_parse_record()
70 pos += record->id_length; in ndef_parse_record()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkAllocationCallbackUtil.cpp132 AllocationCallbackRecord record; in allocation() local
134 record.type = TYPE_ALLOCATION; in allocation()
135 record.data.allocation.size = size; in allocation()
136 record.data.allocation.alignment = alignment; in allocation()
137 record.data.allocation.scope = scope; in allocation()
138 record.data.allocation.returnedPtr = returnedPtr; in allocation()
140 return record; in allocation()
145 AllocationCallbackRecord record; in reallocation() local
147 record.type = TYPE_REALLOCATION; in reallocation()
148 record.data.reallocation.original = original; in reallocation()
[all …]
/external/skia/tests/
DRecordTest.cpp30 void apply(const SkRecord& record) { in apply() argument
31 for (int i = 0; i < record.count(); i++) { in apply()
32 record.visit<void>(i, *this); in apply()
48 void apply(SkRecord* record) { in apply()
49 for (int i = 0; i < record->count(); i++) { in apply()
50 record->mutate<void>(i, *this); in apply()
55 #define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__} argument
59 SkRecord record; in DEF_TEST() local
64 APPEND(record, SkRecords::DrawRect, paint, rect); in DEF_TEST()
68 summer.apply(record); in DEF_TEST()
[all …]
DRecordOptsTest.cpp23 SkRecord record; in DEF_TEST() local
24 SkRecorder recorder(&record, W, H); in DEF_TEST()
30 record.replace<SkRecords::NoOp>(1); // NoOps should be allowed. in DEF_TEST()
32 SkRecordNoopSaveRestores(&record); in DEF_TEST()
34 REPORTER_ASSERT(r, 2 == count_instances_of_type<SkRecords::DrawRect>(record)); in DEF_TEST()
38 SkRecord record; in DEF_TEST() local
39 SkRecorder recorder(&record, W, H); in DEF_TEST()
45 SkRecordNoopSaveRestores(&record); in DEF_TEST()
47 assert_type<SkRecords::NoOp>(r, record, i); in DEF_TEST()
52 SkRecord record; in DEF_TEST() local
[all …]
DRecordPatternTest.cpp24 SkRecord record; in DEF_TEST() local
25 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
27 SkRecorder recorder(&record, 1920, 1200); in DEF_TEST()
31 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
34 REPORTER_ASSERT(r, !pattern.match(&record, 0)); in DEF_TEST()
37 REPORTER_ASSERT(r, pattern.match(&record, 0)); in DEF_TEST()
46 SkRecord record; in DEF_TEST() local
47 SkRecorder recorder(&record, 1920, 1200); in DEF_TEST()
59 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3); in DEF_TEST()
61 REPORTER_ASSERT(r, !pattern.match(&record, i)); in DEF_TEST()
[all …]
DRecordDrawTest.cpp34 SkRecord record; in DEF_TEST() local
35 SkRecorder recorder(&record, W, H); in DEF_TEST()
37 REPORTER_ASSERT(r, 0 == record.count()); in DEF_TEST()
39 REPORTER_ASSERT(r, 0 == record.count()); // the save was not recorded (yet) in DEF_TEST()
41 REPORTER_ASSERT(r, 1 == record.count()); in DEF_TEST()
43 REPORTER_ASSERT(r, 3 == record.count()); // now we see the save in DEF_TEST()
45 REPORTER_ASSERT(r, 4 == record.count()); in DEF_TEST()
47 assert_type<SkRecords::DrawPaint>(r, record, 0); in DEF_TEST()
48 assert_type<SkRecords::Save> (r, record, 1); in DEF_TEST()
49 assert_type<SkRecords::Concat> (r, record, 2); in DEF_TEST()
[all …]
DRecorderTest.cpp32 void apply(const SkRecord& record) { in apply() argument
33 for (int i = 0; i < record.count(); i++) { in apply()
34 record.visit<void>(i, *this); in apply()
43 SkRecord record; in DEF_TEST() local
44 SkRecorder recorder(&record, 1920, 1080); in DEF_TEST()
49 tally.apply(record); in DEF_TEST()
65 SkRecord record; in DEF_TEST() local
66 SkRecorder recorder(&record, 1920, 1080); in DEF_TEST()
82 SkRecord record; in DEF_TEST() local
83 SkRecorder recorder(&record, 100, 100); in DEF_TEST()
[all …]
/external/skia/src/core/
DSkRecordOpts.cpp25 static bool apply(Pass* pass, SkRecord* record) { in apply() argument
30 while (match.search(record, &begin, &end)) { in apply()
31 changed |= pass->onMatch(record, &match, begin, end); in apply()
38 static void multiple_set_matrices(SkRecord* record) { in multiple_set_matrices() argument
45 bool onMatch(SkRecord* record, Match* pattern, int begin, int end) { in multiple_set_matrices()
46 record->replace<NoOp>(begin); // first SetMatrix in multiple_set_matrices()
50 while (apply(&pass, record)); in multiple_set_matrices()
56 static void apply_matrix_to_draw_params(SkRecord* record) {
63 bool onMatch(SkRecord* record, Pattern* pattern, int begin, int end) {
64 record->replace<NoOp>(begin); // first SetMatrix
[all …]
DSkRecordPattern.h122 SK_ALWAYS_INLINE int match(SkRecord* record, int i) {
123 i = this->matchFirst(&fFirst, record, i);
124 return i > 0 ? fRest.match(record, i) : 0;
129 SK_ALWAYS_INLINE bool search(SkRecord* record, int* begin, int* end) {
130 for (*begin = *end; *begin < record->count(); ++(*begin)) {
131 *end = this->match(record, *begin);
148 int matchFirst(T* first, SkRecord* record, int i) {
149 if (i < record->count()) {
150 if (record->mutate<bool>(i, *first)) {
159 int matchFirst(Greedy<T>* first, SkRecord* record, int i) {
[all …]
/external/avahi/avahi-core/
Dresponse-sched.c60 AvahiRecord *record; member
77 static AvahiResponseJob* job_new(AvahiResponseScheduler *s, AvahiRecord *record, AvahiResponseJobSt… in job_new() argument
81 assert(record); in job_new()
89 rj->record = avahi_record_ref(record); in job_new()
118 avahi_record_unref(rj->record); in job_free()
206 if (!avahi_dns_packet_append_record(p, rj->record, rj->flush_cache, 0)) in packet_add_response_job()
211 …avahi_server_enumerate_aux_records(s->interface->monitor->server, s->interface, rj->record, enumer… in packet_add_response_job()
246 size = avahi_record_get_estimate_size(rj->record) + AVAHI_DNS_PACKET_HEADER_SIZE; in send_response_packet()
276 static AvahiResponseJob* find_scheduled_job(AvahiResponseScheduler *s, AvahiRecord *record) { in find_scheduled_job() argument
280 assert(record); in find_scheduled_job()
[all …]
Dprobe-sched.c47 AvahiRecord *record; member
60 static AvahiProbeJob* job_new(AvahiProbeScheduler *s, AvahiRecord *record, int done) { in job_new() argument
64 assert(record); in job_new()
72 pj->record = avahi_record_ref(record); in job_new()
95 avahi_record_unref(pj->record); in job_free()
178 avahi_key_get_estimate_size(pj->record->key) + in packet_add_probe_query()
179 avahi_record_get_estimate_size(pj->record); in packet_add_probe_query()
186 if (!(k = avahi_key_new(pj->record->key->name, pj->record->key->clazz, AVAHI_DNS_TYPE_ANY))) in packet_add_probe_query()
201 … if (k->clazz != pj->record->key->clazz || !avahi_domain_equal(k->name, pj->record->key->name)) in packet_add_probe_query()
205 if (avahi_record_get_estimate_size(pj->record) > avahi_dns_packet_space(p)) in packet_add_probe_query()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
DDataRecord.java60 DataRecord record = new DataRecord(); in read() local
61 record.pl = in.namedIndex("pl", EPluralization.names); in read()
62 record.pluralNames = in.stringTable("pluralName"); in read()
63 record.genders = in.namedIndexArray("gender", EGender.names); in read()
64 record.singularNames = in.stringArray("singularName"); in read()
65 record.halfNames = in.stringArray("halfName"); in read()
66 record.numberNames = in.stringArray("numberName"); in read()
67 record.mediumNames = in.stringArray("mediumName"); in read()
68 record.shortNames = in.stringArray("shortName"); in read()
69 record.measures = in.stringArray("measure"); in read()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
DDataRecord.java58 DataRecord record = new DataRecord(); in read() local
59 record.pl = in.namedIndex("pl", EPluralization.names); in read()
60 record.pluralNames = in.stringTable("pluralName"); in read()
61 record.genders = in.namedIndexArray("gender", EGender.names); in read()
62 record.singularNames = in.stringArray("singularName"); in read()
63 record.halfNames = in.stringArray("halfName"); in read()
64 record.numberNames = in.stringArray("numberName"); in read()
65 record.mediumNames = in.stringArray("mediumName"); in read()
66 record.shortNames = in.stringArray("shortName"); in read()
67 record.measures = in.stringArray("measure"); in read()
[all …]
/external/e2fsprogs/e2fsck/
Drevoke.c124 struct jbd_revoke_record_s *record; in insert_revoke_hash() local
129 record = kmem_cache_alloc(revoke_record_cache, GFP_NOFS); in insert_revoke_hash()
130 if (!record) in insert_revoke_hash()
133 record->sequence = seq; in insert_revoke_hash()
134 record->blocknr = blocknr; in insert_revoke_hash()
136 list_add(&record->hash, hash_list); in insert_revoke_hash()
158 struct jbd_revoke_record_s *record; in find_revoke_record() local
162 record = (struct jbd_revoke_record_s *) hash_list->next; in find_revoke_record()
163 while (&(record->hash) != hash_list) { in find_revoke_record()
164 if (record->blocknr == blocknr) in find_revoke_record()
[all …]
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/
DSLF4JBridgeHandler.java197 protected Logger getSLF4JLogger(LogRecord record) { in getSLF4JLogger() argument
198 String name = record.getLoggerName(); in getSLF4JLogger()
205 protected void callLocationAwareLogger(LocationAwareLogger lal, LogRecord record) { in callLocationAwareLogger() argument
206 int julLevelValue = record.getLevel().intValue(); in callLocationAwareLogger()
220 String i18nMessage = getMessageI18N(record); in callLocationAwareLogger()
221 lal.log(null, FQCN, slf4jLevel, i18nMessage, null, record.getThrown()); in callLocationAwareLogger()
224 protected void callPlainSLF4JLogger(Logger slf4jLogger, LogRecord record) { in callPlainSLF4JLogger() argument
225 String i18nMessage = getMessageI18N(record); in callPlainSLF4JLogger()
226 int julLevelValue = record.getLevel().intValue(); in callPlainSLF4JLogger()
228 slf4jLogger.trace(i18nMessage, record.getThrown()); in callPlainSLF4JLogger()
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DGameObjectCollisionSystem.java87 CollisionVolumeRecord record = mRecordPool.allocate(); in registerForCollisions() local
88 if (record != null && object != null && boundingVolume != null in registerForCollisions()
90 record.object = object; in registerForCollisions()
91 record.boundingVolume = boundingVolume; in registerForCollisions()
92 record.attackVolumes = attackVolumes; in registerForCollisions()
93 record.vulnerabilityVolumes = vulnerabilityVolumes; in registerForCollisions()
94 record.reactionComponent = reactionComponent; in registerForCollisions()
95 mObjects.add(record); in registerForCollisions()
106 final CollisionVolumeRecord record = mObjects.get(x); in update() local
107 final Vector2 position = record.object.getPosition(); in update()
[all …]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
Dtrace-event-listener.rb23 def record( event_message, *interpolation_arguments ) method in ANTLR3.Debug.TraceEventListener
29 record "(%s): number=%s", __method__, alt_number
33 record "(%s): rule=%s", __method__, rule_name
37 record "(%s): rule=%s", __method__, rule_name
41 record "(%s): decision=%s", __method__, decision_number
45 record "(%s): decision=%s", __method__, decision_number
49 record '(%s): line=%s position=%s', __method__, line, position
53 record '(%s) unique_id=%s text=%p type=%s[%s]', __method__, @adaptor.unique_id( tree ),
58 record '(%s): k=%s unique_id=%s text=%p type=%s[%s]', __method__, i, @adaptor.unique_id( tree ),
63 record '(%s): unique_id=%s', __method__, @adaptor.unique_id( tree )
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/route53/
Dtest_zone.py49 record = self.zone.get_a(self.base_domain)
50 self.assertEquals(record.name, u'%s.' % self.base_domain)
51 self.assertEquals(record.resource_records, [u'102.11.23.1'])
52 self.assertEquals(record.ttl, u'80')
54 record = self.zone.get_a(self.base_domain)
55 self.assertEquals(record.name, u'%s.' % self.base_domain)
56 self.assertEquals(record.resource_records, [u'186.143.32.2'])
57 self.assertEquals(record.ttl, u'800')
65 record = self.zone.get_cname('www.%s' % self.base_domain)
66 self.assertEquals(record.name, u'www.%s.' % self.base_domain)
[all …]
/external/jmdns/src/javax/jmdns/impl/
DDNSOutgoing.java161 … MessageOutputStream record = new MessageOutputStream(512, _out, _offset + this.size() + 2); in writeRecord() local
162 rec.write(record); in writeRecord()
163 byte[] byteArray = record.toByteArray(); in writeRecord()
243 MessageOutputStream record = new MessageOutputStream(512, this); in addQuestion() local
244 record.writeQuestion(rec); in addQuestion()
245 byte[] byteArray = record.toByteArray(); in addQuestion()
277 MessageOutputStream record = new MessageOutputStream(512, this); in addAnswer() local
278 record.writeRecord(rec, now); in addAnswer()
279 byte[] byteArray = record.toByteArray(); in addAnswer()
297 MessageOutputStream record = new MessageOutputStream(512, this); in addAuthorativeAnswer() local
[all …]
/external/ltrace/testsuite/ltrace.minor/
DMakefile.am18 EXTRA_DIST = attach-process.exp count-record.c count-record.exp \
22 time-record.c time-record-T.exp time-record-tt.exp \
23 time-record-ttt.exp trace-clone.c trace-clone.exp \
28 count-record demangle print-instruction-pointer time-record-T \
29 time-record-tt time-record-ttt trace-clone trace-exec \
/external/lldb/source/Expression/
DIRExecutionUnit.cpp571 for (AllocationRecord &record : m_records) in GetRemoteAddressForLocal()
573 if (local_address >= record.m_host_address && in GetRemoteAddressForLocal()
574 local_address < record.m_host_address + record.m_size) in GetRemoteAddressForLocal()
576 if (record.m_process_address == LLDB_INVALID_ADDRESS) in GetRemoteAddressForLocal()
579 lldb::addr_t ret = record.m_process_address + (local_address - record.m_host_address); in GetRemoteAddressForLocal()
585 (uint64_t)record.m_host_address, in GetRemoteAddressForLocal()
586 (uint64_t)record.m_host_address + (uint64_t)record.m_size, in GetRemoteAddressForLocal()
588 record.m_process_address, in GetRemoteAddressForLocal()
589 record.m_process_address + record.m_size); in GetRemoteAddressForLocal()
602 for (AllocationRecord &record : m_records) in GetRemoteRangeForLocal()
[all …]
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/
Dtimeline_interaction_record_unittest.py69 record = tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
73 self.assertEquals(0, record.GetOverlappedThreadTimeForSlice(s1))
77 self.assertEquals(0, record.GetOverlappedThreadTimeForSlice(s2))
81 self.assertEquals(20, record.GetOverlappedThreadTimeForSlice(s3))
85 self.assertEquals(10, record.GetOverlappedThreadTimeForSlice(s4))
89 self.assertEquals(10, record.GetOverlappedThreadTimeForSlice(s5))
101 record = tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
107 self.assertEquals(expected_repr, repr(record))
123 record = tir_module.TimelineInteractionRecord.FromAsyncEvent(s)
127 self.assertEquals(0, record.GetOverlappedThreadTimeForSlice(s1))
[all …]
/external/valgrind/gdbserver_tests/
Dmcleak.stderrB.exp3 10 bytes in 1 blocks are still reachable in loss record ... of ...
7 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
11 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
15 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
19 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
23 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ...
27 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
31 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ...
35 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
39 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
[all …]
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DScriptRunModuleWriter.java30 for (int record = 0; record < recordCount; record += 1) { in writeScriptRuns()
31 int script = scriptData.getRecord(record).scriptCode(); in writeScriptRuns()
34 output.print(Utility.hex(scriptData.getRecord(record).startChar(), 6)); in writeScriptRuns()
36 output.print(Utility.hex(scriptData.getRecord(record).endChar(), 6)); in writeScriptRuns()
40 output.print((record == recordCount - 1) ? " " : ","); in writeScriptRuns()
65 for (int record = 0; record < recordCount; record += 1) { in writeScriptRuns()
66 …scriptRangeOffsets[scriptData.getRecord(record).scriptCode() - minScript].addElement(new Integer(r… in writeScriptRuns()
/external/autotest/client/site_tests/touch_MouseScroll/
DREADME6 up_slow - Scroll the mouse wheel up slowly to record multiple scrolls.
7 up_fast - Scroll the mouse wheel up fast to record multiple scrolls.
8 up_1 - Scroll the mouse wheel up (one gear up) to record single scroll.
9 down_slow - Scroll the mouse wheel down slowly to record scrolls.
10 down_fast - Scroll the mouse wheel down fast to record multiple scrolls.
11 down_1 - Scroll the mouse wheel down (one gear down) to record single scroll.
13 To record horizontal scrolls, please emulate a mouse which has this feature and
16 right_slow - Scroll the mouse ball right slowly to record multiple scrolls.
17 right_fast - Scroll the mouse ball right fast to record multiple scrolls.
18 right_1 - Scroll the mouse ball right (one gear right) to record single scroll.
[all …]

12345678910>>...35