Home
last modified time | relevance | path

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

12345678910>>...15

/external/wpa_supplicant_8/src/wps/
Dndef.c35 struct ndef_record *record) in ndef_parse_record() argument
41 record->type_length = *pos++; in ndef_parse_record()
45 record->payload_length = *pos++; in ndef_parse_record()
49 record->payload_length = ntohl(*(u32 *)pos); in ndef_parse_record()
56 record->id_length = *pos++; in ndef_parse_record()
58 record->id_length = 0; in ndef_parse_record()
60 record->type = record->type_length == 0 ? NULL : pos; in ndef_parse_record()
61 pos += record->type_length; in ndef_parse_record()
63 record->id = record->id_length == 0 ? NULL : pos; in ndef_parse_record()
64 pos += record->id_length; in ndef_parse_record()
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DTimelinePanel.js230 var record = this._markTimelineRecords[i];
231 var positions = this._calculator.computeBarGraphWindowPosition(record, clientWidth);
235 var divider = this._createEventDivider(record);
243 _createEventDivider: function(record) argument
251 eventDividerPadding.title = record.title;
253 if (record.type === recordTypes.MarkDOMContent)
255 else if (record.type === recordTypes.MarkLoad)
257 else if (record.type === recordTypes.MarkTimeline) {
259 eventDividerPadding.title = record.data.message;
306 _addRecordToTimeline: function(record) argument
[all …]
/external/webkit/Source/WebCore/inspector/
DInspectorTimelineAgent.cpp91 RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(i->startTime); in pushGCEventRecords() local
92 record->setObject("data", TimelineRecordFactory::createGCEventData(i->collectedBytes)); in pushGCEventRecords()
93 record->setNumber("endTime", i->endTime); in pushGCEventRecords()
94 addRecordToTimeline(record.release(), TimelineRecordType::GCEvent); in pushGCEventRecords()
226 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in didInstallTimer() local
227record->setObject("data", TimelineRecordFactory::createTimerInstallData(timerId, timeout, singleSh… in didInstallTimer()
228 addRecordToTimeline(record.release(), TimelineRecordType::TimerInstall); in didInstallTimer()
234 … RefPtr<InspectorObject> record = TimelineRecordFactory::createGenericRecord(WTF::currentTimeMS()); in didRemoveTimer() local
235 record->setObject("data", TimelineRecordFactory::createGenericTimerData(timerId)); in didRemoveTimer()
236 addRecordToTimeline(record.release(), TimelineRecordType::TimerRemove); in didRemoveTimer()
[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/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 …]
DMotionBlurComponent.java94 final BlurRecord record = mHistory[step]; in update()
95 if (record.texture != null) { in update()
97 stepImage.setTexture(record.texture); in update()
98 stepImage.setWidth(record.width); in update()
99 stepImage.setHeight(record.height); in update()
100 stepImage.setCrop(record.crop[0], record.crop[1], record.crop[2], -record.crop[3]); in update()
105 … renderer.scheduleForDraw(stepImage, record.position, mTargetPriority - (x + 1), true); in update()
/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/chrome/browser/sync/engine/
Dchange_reorder_buffer.cc137 ChangeRecord record; in GetAllChangesInTreeOrder() local
138 record.id = i->first; in GetAllChangesInTreeOrder()
139 record.action = ChangeRecord::ACTION_DELETE; in GetAllChangesInTreeOrder()
140 if (specifics_.find(record.id) != specifics_.end()) in GetAllChangesInTreeOrder()
141 record.specifics = specifics_[record.id]; in GetAllChangesInTreeOrder()
142 if (extra_data_.find(record.id) != extra_data_.end()) in GetAllChangesInTreeOrder()
143 record.extra = extra_data_[record.id]; in GetAllChangesInTreeOrder()
144 changelist->push_back(record); in GetAllChangesInTreeOrder()
170 ChangeRecord record; in GetAllChangesInTreeOrder() local
171 record.id = next; in GetAllChangesInTreeOrder()
[all …]
/external/chromium/chrome/browser/
Dcrash_upload_list_win.cc35 EVENTLOGRECORD* record = (EVENTLOGRECORD*)&buffer[record_offset]; in LoadCrashList() local
36 DCHECK(record_offset + record->Length <= bytes_read); in LoadCrashList()
37 if (IsPossibleCrashLogRecord(record)) in LoadCrashList()
38 ProcessPossibleCrashLogRecord(record); in LoadCrashList()
39 record_offset += record->Length; in LoadCrashList()
56 EVENTLOGRECORD* record) const { in IsPossibleCrashLogRecord()
57 LPWSTR provider_name = (LPWSTR)((uint8*)record + sizeof(EVENTLOGRECORD)); in IsPossibleCrashLogRecord()
59 record->EventType == EVENTLOG_INFORMATION_TYPE && in IsPossibleCrashLogRecord()
60 record->NumStrings >= 1; in IsPossibleCrashLogRecord()
63 void CrashUploadListWin::ProcessPossibleCrashLogRecord(EVENTLOGRECORD* record) { in ProcessPossibleCrashLogRecord() argument
[all …]
/external/qemu/hw/
Dbt-sdp.c82 static int sdp_uuid_match(struct sdp_service_record_s *record, in sdp_uuid_match() argument
97 lo = record->uuid; in sdp_uuid_match()
98 hi = record->uuids; in sdp_uuid_match()
208 static int sdp_attr_match(struct sdp_service_record_s *record, in sdp_attr_match() argument
235 for (i = 0; i < record->attributes; i ++) in sdp_attr_match()
236 if (record->attribute_list[i].attribute_id >= start && in sdp_attr_match()
237 record->attribute_list[i].attribute_id <= end) in sdp_attr_match()
238 record->attribute_list[i].match = 1; in sdp_attr_match()
249 struct sdp_service_record_s *record; in sdp_attr_get() local
261 record = &sdp->service_list[handle]; in sdp_attr_get()
[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/webkit/Tools/iExploder/iexploder-1.7.2/tools/
Dosx_last_crash.rb27 record = 0
39 record = 1
44 if record
46 record = record + 1
49 if record > ($StackCount + 2)
50 record = nil
/external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
Dosx_last_crash.rb12 record = 0
24 record = 1
29 if record
31 record = record + 1
34 if record > ($StackCount + 2)
35 record = nil
/external/chromium/chrome/browser/net/
Dload_timing_observer_unittest.cc145 LoadTimingObserver::URLRequestRecord* record = in TEST_F() local
147 ASSERT_TRUE(record == NULL); in TEST_F()
156 LoadTimingObserver::URLRequestRecord* record = in TEST_F() local
158 ASSERT_FALSE(record == NULL); in TEST_F()
162 record = observer.GetURLRequestRecord(0); in TEST_F()
163 ASSERT_TRUE(record == NULL); in TEST_F()
168 record = observer.GetURLRequestRecord(1); in TEST_F()
169 ASSERT_TRUE(record == NULL); in TEST_F()
242 LoadTimingObserver::URLRequestRecord* record = in TEST_F() local
244 ASSERT_EQ(1000000, record->base_ticks.ToInternalValue()); in TEST_F()
[all …]
Dload_timing_observer.cc46 LoadTimingObserver::URLRequestRecord* record) { in TimeTicksToOffset() argument
48 (time_ticks - record->base_ticks).InMillisecondsRoundedUp()); in TimeTicksToOffset()
114 LoadTimingObserver::URLRequestRecord* record = in PopulateTimingInfo() local
116 if (record) { in PopulateTimingInfo()
117 response->response_head.connection_id = record->socket_log_id; in PopulateTimingInfo()
118 response->response_head.connection_reused = record->socket_reused; in PopulateTimingInfo()
119 response->response_head.load_timing = record->timing; in PopulateTimingInfo()
151 URLRequestRecord& record = url_request_to_record_[source.id]; in OnAddURLRequestEntry() local
152 record.base_ticks = time; in OnAddURLRequestEntry()
153 record.timing.base_time = TimeTicksToTime(time); in OnAddURLRequestEntry()
[all …]
/external/icu4c/layout/
DPairPositioningSubtables.cpp133 const PairValueRecord *record = records; in findPairValueRecord() local
136 if (SWAPW(record->secondGlyph) == glyphID) { in findPairValueRecord()
137 return record; in findPairValueRecord()
140 record = (const PairValueRecord *) ((char *) record + recordSize); in findPairValueRecord()
147 const PairValueRecord *record = records; in findPairValueRecord()
148 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra); in findPairValueRecord()
151 record = trial; in findPairValueRecord()
156 trial = (const PairValueRecord *) ((char *) record + probe); in findPairValueRecord()
159 record = trial; in findPairValueRecord()
163 if (SWAPW(record->secondGlyph) == glyphID) { in findPairValueRecord()
[all …]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
DPlayReadyHeader.java68 for (PlayReadyRecord record : records) { in getData()
70 size += record.getValue().rewind().limit(); in getData()
76 for (PlayReadyRecord record : records) { in getData()
77 IsoTypeWriter.writeUInt16BE(byteBuffer, record.type); in getData()
78 IsoTypeWriter.writeUInt16BE(byteBuffer, record.getValue().limit()); in getData()
79 ByteBuffer tmp4debug = record.getValue(); in getData()
117 PlayReadyRecord record; in createFor() local
122 record = new RMHeader(); in createFor()
125 record = new DefaulPlayReadyRecord(0x02); in createFor()
128 record = new EmeddedLicenseStore(); in createFor()
[all …]
/external/valgrind/main/memcheck/tests/
Dleak-delta.stderr.exp2 10 bytes in 1 blocks are still reachable in loss record ... of ...
9 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
14 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
20 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
27 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
33 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ...
38 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
44 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ...
49 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
55 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
[all …]
Dleak-cases-full.stderr.exp5 16 bytes in 1 blocks are possibly lost in loss record ... of ...
11 16 bytes in 1 blocks are possibly lost in loss record ... of ...
17 16 bytes in 1 blocks are possibly lost in loss record ... of ...
23 16 bytes in 1 blocks are possibly lost in loss record ... of ...
29 16 bytes in 1 blocks are possibly lost in loss record ... of ...
35 16 bytes in 1 blocks are possibly lost in loss record ... of ...
41 16 bytes in 1 blocks are definitely lost in loss record ... of ...
47 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
53 32 (16 direct, 16 indirect) bytes in 1 blocks are definitely lost in loss record ... of ...
/external/valgrind/main/gdbserver_tests/
Dmcleak.stderrB.exp3 10 bytes in 1 blocks are still reachable in loss record ... of ...
8 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
13 21 (+21) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
18 65 (+65) bytes in 2 (+2) blocks are still reachable in loss record ... of ...
23 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
28 0 (-10) bytes in 0 (-1) blocks are still reachable in loss record ... of ...
33 10 (+10) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
38 0 (-10) bytes in 0 (-1) blocks are definitely lost in loss record ... of ...
43 10 (+10) bytes in 1 (+1) blocks are still reachable in loss record ... of ...
48 32 (+32) bytes in 1 (+1) blocks are definitely lost in loss record ... of ...
[all …]
/external/webkit/Source/JavaScriptCore/bytecode/
DSamplingTool.cpp200 ScriptSampleRecord* record = m_scopeSampleMap->get(codeBlock->ownerExecutable()); in doRun() local
201 ASSERT(record); in doRun()
202 record->sample(codeBlock, sample.vPC()); in doRun()
333 ScriptSampleRecord* record = codeBlockSamples[i]; in dump() local
334 CodeBlock* codeBlock = record->m_codeBlock; in dump()
336 double blockPercent = (record->m_sampleCount * 100.0) / m_sampleCount; in dump()
340 …/ %lld (%.3f%%)\n", i + 1, record->m_executable->sourceURL().utf8().data(), codeBlock->lineNumberF… in dump()
346 for (unsigned op = 0; op < record->m_size; ++op) { in dump()
347 int count = record->m_samples[op]; in dump()
372record->m_sampleCount - record->m_opcodeSampleCount, record->m_sampleCount, (static_cast<double>(r… in dump()
/external/jmonkeyengine/engine/src/core/com/jme3/util/
DJmeFormatter.java61 public String format(LogRecord record) { in format() argument
64 calendar.setTime(record.getMillis()); in format()
71 clazz = Class.forName(record.getSourceClassName()).getSimpleName(); in format()
75 sb.append(record.getLevel().getLocalizedName()).append(" "); in format()
78 sb.append(formatMessage(record)).append(lineSeperator); in format()
80 if (record.getThrown() != null) { in format()
84 record.getThrown().printStackTrace(pw); in format()
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
Dqueueengine_unittest.py60 def record(self, method_name): member in LoggingDelegate
64 self.record("queue_log_path")
68 self.record("work_item_log_path")
72 self.record("begin_work_queue")
75 self.record("should_continue_work_queue")
82 self.record("next_work_item")
86 self.record("should_proceed_with_work_item")
92 self.record("process_work_item")
97 self.record("handle_unexpected_error")
101 self.record("stop_work_queue")
[all …]
/external/srec/audio/AudioIn/UNIX/src/
Daudioinwrapper.cpp59 static AudioRecord* record;
98 record = new android::AudioRecord( in AudioOpen()
105 if (!record) return -1; in AudioOpen()
107 return record->start() == NO_ERROR ? 0 : -1; in AudioOpen()
116 record->stop(); in AudioClose()
117 delete record; in AudioClose()
134 n = record->read(buffer, nreq); in AudioRead()
/external/chromium/chrome/browser/sync/
Dprofile_sync_service_preference_unittest.cc159 SyncManager::ChangeRecord* record = new SyncManager::ChangeRecord(); in MakeChangeRecord() local
160 record->action = SyncManager::ChangeRecord::ACTION_UPDATE; in MakeChangeRecord()
161 record->id = node_id; in MakeChangeRecord()
162 return record; in MakeChangeRecord()
370 scoped_ptr<SyncManager::ChangeRecord> record(new SyncManager::ChangeRecord); in TEST_F() local
371 record->action = SyncManager::ChangeRecord::ACTION_UPDATE; in TEST_F()
372 record->id = node_id; in TEST_F()
375 change_processor_->ApplyChangesFromSyncModel(&trans, record.get(), 1); in TEST_F()
390 scoped_ptr<SyncManager::ChangeRecord> record(new SyncManager::ChangeRecord); in TEST_F() local
391 record->action = SyncManager::ChangeRecord::ACTION_ADD; in TEST_F()
[all …]

12345678910>>...15