Searched refs:record (Results 1 - 25 of 508) sorted by relevance

1234567891011>>

/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/bin/
H A Devent_analyzing_sample-record5 # the tracepoints, so no special record requirements, just record what
8 perf record $@
H A Dfailed-syscalls-by-pid-record2 perf record -e raw_syscalls:sys_exit $@
H A Dnet_dropmonitor-record2 perf record -e skb:kfree_skb $@
H A Dsctop-record2 perf record -e raw_syscalls:sys_enter $@
H A Dsyscall-counts-by-pid-record2 perf record -e raw_syscalls:sys_enter $@
H A Dsyscall-counts-record2 perf record -e raw_syscalls:sys_enter $@
H A Dfutex-contention-record2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
/external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/perl/bin/
H A Dfailed-syscalls-record2 perf record -e raw_syscalls:sys_exit $@
H A Drw-by-file-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
H A Dwakeup-latency-record2 perf record -e sched:sched_switch -e sched:sched_wakeup $@
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dndef.c36 struct ndef_record *record)
42 record->type_length = *pos++;
46 record->payload_length = *pos++;
50 record->payload_length = ntohl(*(u32 *)pos);
57 record->id_length = *pos++;
59 record->id_length = 0;
61 record->type = record->type_length == 0 ? NULL : pos;
62 pos += record->type_length;
64 record
35 ndef_parse_record(const u8 *data, u32 size, struct ndef_record *record) argument
80 struct ndef_record record; local
105 struct wpabuf *record; local
149 wifi_filter(struct ndef_record *record) argument
175 p2p_filter(struct ndef_record *record) argument
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dndef.c36 struct ndef_record *record)
42 record->type_length = *pos++;
46 record->payload_length = *pos++;
50 record->payload_length = ntohl(*(u32 *)pos);
57 record->id_length = *pos++;
59 record->id_length = 0;
61 record->type = record->type_length == 0 ? NULL : pos;
62 pos += record->type_length;
64 record
35 ndef_parse_record(const u8 *data, u32 size, struct ndef_record *record) argument
80 struct ndef_record record; local
105 struct wpabuf *record; local
149 wifi_filter(struct ndef_record *record) argument
175 p2p_filter(struct ndef_record *record) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dndef.c36 struct ndef_record *record)
42 record->type_length = *pos++;
46 record->payload_length = *pos++;
50 record->payload_length = ntohl(*(u32 *)pos);
57 record->id_length = *pos++;
59 record->id_length = 0;
61 record->type = record->type_length == 0 ? NULL : pos;
62 pos += record->type_length;
64 record
35 ndef_parse_record(const u8 *data, u32 size, struct ndef_record *record) argument
80 struct ndef_record record; local
105 struct wpabuf *record; local
149 wifi_filter(struct ndef_record *record) argument
175 p2p_filter(struct ndef_record *record) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DRecordTest.cpp29 void apply(const SkRecord& record) { argument
30 for (unsigned i = 0; i < record.count(); i++) {
31 record.visit<void>(i, *this);
47 void apply(SkRecord* record) { argument
48 for (unsigned i = 0; i < record->count(); i++) {
49 record->mutate<void>(i, *this);
54 #define APPEND(record, type, ...) SkNEW_PLACEMENT_ARGS(record.append<type>(), type, (__VA_ARGS__))
58 SkRecord record; local
63 APPEND(record, SkRecord
87 SkRecord record; local
[all...]
H A DRecordOptsTest.cpp20 SkRecord record; local
21 SkRecorder recorder(&record, W, H);
30 record.replace<SkRecords::NoOp>(2); // NoOps should be allowed.
32 SkRecordNoopSaveRestores(&record);
34 assert_type<SkRecords::NoOp>(r, record, 0);
35 assert_type<SkRecords::DrawRect>(r, record, 1);
36 assert_type<SkRecords::NoOp>(r, record, 2);
37 assert_type<SkRecords::DrawRect>(r, record, 3);
38 assert_type<SkRecords::NoOp>(r, record, 4);
42 SkRecord record; local
56 SkRecord record; local
79 SkRecord record; local
95 assert_savelayer_restore(skiatest::Reporter* r, SkRecord* record, unsigned i, bool shouldBeNoOped) argument
110 SkRecord record; local
[all...]
H A DRecordPatternTest.cpp17 SkRecord record; local
18 REPORTER_ASSERT(r, !pattern.match(&record, 0));
20 SkRecorder recorder(&record, 1920, 1200);
24 REPORTER_ASSERT(r, !pattern.match(&record, 0));
27 REPORTER_ASSERT(r, !pattern.match(&record, 0));
30 REPORTER_ASSERT(r, pattern.match(&record, 0));
39 SkRecord record; local
40 SkRecorder recorder(&record, 1920, 1200);
52 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3);
54 REPORTER_ASSERT(r, !pattern.match(&record,
62 SkRecord record; local
76 SkRecord record; local
98 SkRecord record; local
137 SkRecord record; local
194 SkRecord record; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolationEffect.cpp16 const InterpolationRecord* record = m_interpolations[i].get(); local
17 if (fraction >= record->m_applyFrom && fraction < record->m_applyTo) {
18 RefPtrWillBeRawPtr<Interpolation> interpolation = record->m_interpolation;
19 double localFraction = (fraction - record->m_start) / (record->m_end - record->m_start);
20 if (record->m_easing)
21 localFraction = record->m_easing->evaluate(localFraction, accuracyForDuration(iterationDuration));
/external/chromium_org/device/nfc/
H A Dnfc_ndef_record_unittest.cc30 scoped_ptr<NfcNdefRecord> record(new NfcNdefRecord());
33 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data));
34 EXPECT_FALSE(record->IsPopulated());
38 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data));
39 EXPECT_FALSE(record->IsPopulated());
44 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data));
45 EXPECT_FALSE(record->IsPopulated());
47 // Populating a successfully populated record should fail.
48 EXPECT_FALSE(record->Populate(NfcNdefRecord::kTypeText, &data));
52 EXPECT_FALSE(record
[all...]
/external/chromium_org/sync/internal_api/public/
H A Dchange_record_unittest.cc49 const ChangeRecord& record,
51 ExpectChangeRecordActionValue(record.action, value, "action");
52 ExpectDictStringValue(base::Int64ToString(record.id), value, "id");
53 if (record.action == ChangeRecord::ACTION_DELETE) {
55 if (record.extra.get()) {
56 expected_extra_value.reset(record.extra->ToValue());
59 EXPECT_EQ(record.extra.get() != NULL,
64 EntitySpecificsToValue(record.specifics));
86 ChangeRecord record; local
87 record
48 CheckChangeRecordValue( const ChangeRecord& record, const base::DictionaryValue& value) argument
97 ChangeRecord record; local
108 ChangeRecord record; local
118 ChangeRecord record; local
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSListener.java11 * DNSListener. Listener for record updates.
18 * Update a DNS record.
21 * record cache
24 * @param record
25 * DNS record
27 void updateRecord(DNSCache dnsCache, long now, DNSEntry record); argument
/external/chromium_org/third_party/skia/src/core/
H A DSkRecordOpts.cpp16 void SkRecordOptimize(SkRecord* record) { argument
21 //SkRecordNoopSaveRestores(record);
23 SkRecordNoopSaveLayerDrawRestores(record);
33 // record, and [begin,end) span of the commands that matched.
35 static bool apply(Pass* pass, SkRecord* record) { argument
40 while (pattern.search(record, &begin, &end)) {
41 changed |= pass->onMatch(record, &pattern, begin, end);
53 bool onMatch(SkRecord* record, Pattern* pattern, unsigned begin, unsigned end) { argument
54 record->replace<NoOp>(begin); // Save
55 record
71 onMatch(SkRecord* record, Pattern* pattern, unsigned begin, unsigned end) argument
79 SkRecordNoopSaveRestores(SkRecord* record) argument
92 onMatch(SkRecord* record, Pattern* pattern, unsigned begin, unsigned end) argument
125 KillSaveLayerAndRestore(SkRecord* record, unsigned saveLayerIndex) argument
149 SkRecordNoopSaveLayerDrawRestores(SkRecord* record) argument
[all...]
/external/chromium_org/net/dns/
H A Drecord_parsed.cc27 DnsResourceRecord record; local
30 if (!parser->ReadRecord(&record))
33 switch (record.type) {
35 rdata = ARecordRdata::Create(record.rdata, *parser);
38 rdata = AAAARecordRdata::Create(record.rdata, *parser);
41 rdata = CnameRecordRdata::Create(record.rdata, *parser);
44 rdata = PtrRecordRdata::Create(record.rdata, *parser);
47 rdata = SrvRecordRdata::Create(record.rdata, *parser);
50 rdata = TxtRecordRdata::Create(record.rdata, *parser);
53 rdata = NsecRecordRdata::Create(record
[all...]
/external/skia/tests/
H A DRecordTest.cpp26 void apply(const SkRecord& record) { argument
27 for (unsigned i = 0; i < record.count(); i++) {
28 record.visit<void>(i, *this);
44 void apply(SkRecord* record) { argument
45 for (unsigned i = 0; i < record->count(); i++) {
46 record->mutate<void>(i, *this);
53 SkRecord record; local
58 SkNEW_PLACEMENT_ARGS(record.append<SkRecords::DrawRect>(), SkRecords::DrawRect, (paint, rect));
62 summer.apply(record);
67 stretch.apply(&record);
[all...]
H A DRecordOptsTest.cpp20 SkRecord record; local
21 SkRecorder recorder(&record, W, H);
33 SkRecordAnnotateCullingPairs(&record);
35 REPORTER_ASSERT(r, 6 == assert_type<SkRecords::PairedPushCull>(r, record, 1)->skip);
36 REPORTER_ASSERT(r, 2 == assert_type<SkRecords::PairedPushCull>(r, record, 4)->skip);
40 SkRecord record; local
41 SkRecorder recorder(&record, W, H);
56 SkRecordNoopCulls(&record);
59 assert_type<SkRecords::NoOp>(r, record, i);
61 assert_type<SkRecords::PushCull>(r, record,
79 SkRecord record; local
93 SkRecord record; local
116 SkRecord record; local
138 SkRecord record; local
152 SkRecord record; local
174 assert_savelayer_restore(skiatest::Reporter* r, SkRecord* record, unsigned i, bool shouldBeNoOped) argument
189 SkRecord record; local
[all...]
/external/chromium_org/chrome/browser/
H A Dcrash_upload_list_win.cc37 EVENTLOGRECORD* record = (EVENTLOGRECORD*)&buffer[record_offset]; local
38 DCHECK(record_offset + record->Length <= bytes_read);
39 if (IsPossibleCrashLogRecord(record))
40 ProcessPossibleCrashLogRecord(record);
41 record_offset += record->Length;
58 EVENTLOGRECORD* record) const {
59 LPWSTR provider_name = (LPWSTR)((uint8*)record + sizeof(EVENTLOGRECORD));
61 record->EventType == EVENTLOG_INFORMATION_TYPE &&
62 record->NumStrings >= 1;
65 void CrashUploadListWin::ProcessPossibleCrashLogRecord(EVENTLOGRECORD* record) { argument
[all...]

Completed in 445 milliseconds

1234567891011>>