Home
last modified time | relevance | path

Searched refs:record (Results 1 – 200 of 237) sorted by relevance

12

/linux-4.1.27/tools/perf/tests/attr/
DREADME35 perf record kill (test-record-basic)
36 perf record -b kill (test-record-branch-any)
37 perf record -j any kill (test-record-branch-filter-any)
38 perf record -j any_call kill (test-record-branch-filter-any_call)
39 perf record -j any_ret kill (test-record-branch-filter-any_ret)
40 perf record -j hv kill (test-record-branch-filter-hv)
41 perf record -j ind_call kill (test-record-branch-filter-ind_call)
42 perf record -j k kill (test-record-branch-filter-k)
43 perf record -j u kill (test-record-branch-filter-u)
44 perf record -c 123 kill (test-record-count)
[all …]
Dtest-record-group2 command = record
5 [event-1:base-record]
11 [event-2:base-record]
Dtest-record-group12 command = record
5 [event-1:base-record]
11 [event-2:base-record]
Dtest-record-group-sampling2 command = record
5 [event-1:base-record]
12 [event-2:base-record]
Dtest-record-basic2 command = record
5 [event:base-record]
Dtest-record-no-samples2 command = record
5 [event:base-record]
Dtest-record-freq2 command = record
5 [event:base-record]
Dtest-record-graph-default2 command = record
5 [event:base-record]
Dtest-record-raw2 command = record
5 [event:base-record]
Dtest-record-no-inherit2 command = record
5 [event:base-record]
Dtest-record-period2 command = record
5 [event:base-record]
Dtest-record-count2 command = record
5 [event:base-record]
Dtest-record-graph-fp2 command = record
5 [event:base-record]
Dtest-record-branch-any2 command = record
5 [event:base-record]
Dtest-record-branch-filter-any2 command = record
5 [event:base-record]
Dtest-record-branch-filter-hv2 command = record
5 [event:base-record]
Dtest-record-no-delay2 command = record
5 [event:base-record]
Dtest-record-branch-filter-any_ret2 command = record
5 [event:base-record]
Dtest-record-branch-filter-any_call2 command = record
5 [event:base-record]
Dtest-record-branch-filter-u2 command = record
5 [event:base-record]
Dtest-record-branch-filter-ind_call2 command = record
5 [event:base-record]
Dtest-record-branch-filter-k2 command = record
5 [event:base-record]
Dtest-record-data2 command = record
5 [event:base-record]
Dtest-record-graph-dwarf2 command = record
5 [event:base-record]
Dtest-record-C02 command = record
5 [event:base-record]
/linux-4.1.27/sound/usb/6fire/
Dfirmware.c84 static bool usb6fire_fw_ihex_next_record(struct ihex_record *record) in usb6fire_fw_ihex_next_record() argument
90 record->error = false; in usb6fire_fw_ihex_next_record()
93 while (record->txt_offset < record->txt_length in usb6fire_fw_ihex_next_record()
94 && record->txt_data[record->txt_offset] != ':') in usb6fire_fw_ihex_next_record()
95 record->txt_offset++; in usb6fire_fw_ihex_next_record()
96 if (record->txt_offset == record->txt_length) in usb6fire_fw_ihex_next_record()
100 record->txt_offset++; in usb6fire_fw_ihex_next_record()
101 if (record->txt_offset + 8 > record->txt_length) { in usb6fire_fw_ihex_next_record()
102 record->error = true; in usb6fire_fw_ihex_next_record()
106 record->len = usb6fire_fw_ihex_hex(record->txt_data + in usb6fire_fw_ihex_next_record()
[all …]
/linux-4.1.27/firmware/
Dihex2fw.c53 static void file_record(struct ihex_binrec *record);
133 struct ihex_binrec *record; in process_ihex() local
160 record = malloc((sizeof (*record) + len + 3) & ~3); in process_ihex()
161 if (!record) { in process_ihex()
165 memset(record, 0, (sizeof(*record) + len + 3) & ~3); in process_ihex()
166 record->len = len; in process_ihex()
169 if (i + 8 + (record->len * 2) > size) { in process_ihex()
175 record->addr = hex(data + i, &crc) << 8; i += 2; in process_ihex()
176 record->addr |= hex(data + i, &crc); i += 2; in process_ihex()
179 for (j = 0; j < record->len; j++, i += 2) in process_ihex()
[all …]
Datmsar11.HEX204 First record is start address in a __be32.
/linux-4.1.27/drivers/usb/misc/
Dezusb.c79 const struct ihex_binrec *record; in ezusb_ihex_firmware_download() local
93 record = (const struct ihex_binrec *)firmware->data; in ezusb_ihex_firmware_download()
94 for (; record; record = ihex_next_binrec(record)) { in ezusb_ihex_firmware_download()
95 if (be32_to_cpu(record->addr) > fx.max_internal_adress) { in ezusb_ihex_firmware_download()
96 ret = ezusb_writememory(dev, be32_to_cpu(record->addr), in ezusb_ihex_firmware_download()
97 (unsigned char *)record->data, in ezusb_ihex_firmware_download()
98 be16_to_cpu(record->len), WRITE_EXT_RAM); in ezusb_ihex_firmware_download()
103 be32_to_cpu(record->addr), record->data, in ezusb_ihex_firmware_download()
104 be16_to_cpu(record->len)); in ezusb_ihex_firmware_download()
113 record = (const struct ihex_binrec *)firmware->data; in ezusb_ihex_firmware_download()
[all …]
/linux-4.1.27/fs/jbd/
Drevoke.c144 struct jbd_revoke_record_s *record; in insert_revoke_hash() local
147 record = kmem_cache_alloc(revoke_record_cache, GFP_NOFS); in insert_revoke_hash()
148 if (!record) in insert_revoke_hash()
151 record->sequence = seq; in insert_revoke_hash()
152 record->blocknr = blocknr; in insert_revoke_hash()
155 list_add(&record->hash, hash_list); in insert_revoke_hash()
173 struct jbd_revoke_record_s *record; in find_revoke_record() local
178 record = (struct jbd_revoke_record_s *) hash_list->next; in find_revoke_record()
179 while (&(record->hash) != hash_list) { in find_revoke_record()
180 if (record->blocknr == blocknr) { in find_revoke_record()
[all …]
/linux-4.1.27/fs/jbd2/
Drevoke.c143 struct jbd2_revoke_record_s *record; in insert_revoke_hash() local
146 record = kmem_cache_alloc(jbd2_revoke_record_cache, GFP_NOFS); in insert_revoke_hash()
147 if (!record) in insert_revoke_hash()
150 record->sequence = seq; in insert_revoke_hash()
151 record->blocknr = blocknr; in insert_revoke_hash()
154 list_add(&record->hash, hash_list); in insert_revoke_hash()
172 struct jbd2_revoke_record_s *record; in find_revoke_record() local
177 record = (struct jbd2_revoke_record_s *) hash_list->next; in find_revoke_record()
178 while (&(record->hash) != hash_list) { in find_revoke_record()
179 if (record->blocknr == blocknr) { in find_revoke_record()
[all …]
/linux-4.1.27/tools/lib/traceevent/
Dplugin_hrtimer.c28 struct pevent_record *record, in timer_expire_handler() argument
34 record, 0) == -1) in timer_expire_handler()
36 record, 1); in timer_expire_handler()
40 pevent_print_num_field(s, "%llu", event, "now", record, 1); in timer_expire_handler()
43 record, 0); in timer_expire_handler()
48 struct pevent_record *record, in timer_start_handler() argument
54 record, 0) == -1) in timer_start_handler()
56 record, 1); in timer_start_handler()
59 record, 0); in timer_start_handler()
62 pevent_print_num_field(s, "%llu", event, "expires", record, 1); in timer_start_handler()
[all …]
Dplugin_sched_switch.c48 struct pevent_record *record, in write_and_save_comm() argument
54 comm = (char *)(record->data + field->offset); in write_and_save_comm()
68 struct pevent_record *record, in sched_wakeup_handler() argument
74 if (pevent_get_field_val(s, event, "pid", record, &val, 1)) in sched_wakeup_handler()
79 write_and_save_comm(field, record, s, val); in sched_wakeup_handler()
84 if (pevent_get_field_val(s, event, "prio", record, &val, 0) == 0) in sched_wakeup_handler()
87 if (pevent_get_field_val(s, event, "success", record, &val, 1) == 0) in sched_wakeup_handler()
90 if (pevent_get_field_val(s, event, "target_cpu", record, &val, 0) == 0) in sched_wakeup_handler()
97 struct pevent_record *record, in sched_switch_handler() argument
103 if (pevent_get_field_val(s, event, "prev_pid", record, &val, 1)) in sched_switch_handler()
[all …]
Dplugin_kvm.c247 static int print_exit_reason(struct trace_seq *s, struct pevent_record *record, in print_exit_reason() argument
254 if (pevent_get_field_val(s, event, field, record, &val, 1) < 0) in print_exit_reason()
257 if (pevent_get_field_val(s, event, "isa", record, &isa, 0) < 0) in print_exit_reason()
268 static int kvm_exit_handler(struct trace_seq *s, struct pevent_record *record, in kvm_exit_handler() argument
273 if (print_exit_reason(s, record, event, "exit_reason") < 0) in kvm_exit_handler()
276 pevent_print_num_field(s, " rip 0x%lx", event, "guest_rip", record, 1); in kvm_exit_handler()
278 if (pevent_get_field_val(s, event, "info1", record, &info1, 0) >= 0 in kvm_exit_handler()
279 && pevent_get_field_val(s, event, "info2", record, &info2, 0) >= 0) in kvm_exit_handler()
291 struct pevent_record *record, in kvm_emulate_insn_handler() argument
299 if (pevent_get_field_val(s, event, "rip", record, &rip, 1) < 0) in kvm_emulate_insn_handler()
[all …]
Dplugin_mac80211.c56 #define SF(fn) pevent_print_num_field(s, fn ":%d", event, fn, record, 0)
57 #define SFX(fn) pevent_print_num_field(s, fn ":%#x", event, fn, record, 0)
61 struct pevent_record *record, in drv_bss_info_changed() argument
64 void *data = record->data; in drv_bss_info_changed()
69 pevent_print_num_field(s, "(%d)", event, "vif_type", record, 1); in drv_bss_info_changed()
Dparse-filter.c1694 struct pevent_record *record, enum pevent_errno *err);
1697 get_comm(struct event_format *event, struct pevent_record *record) in get_comm() argument
1702 pid = pevent_data_pid(event->pevent, record); in get_comm()
1709 struct format_field *field, struct pevent_record *record) in get_value() argument
1717 name = get_comm(event, record); in get_value()
1721 pevent_read_number_field(field, record->data, &val); in get_value()
1741 struct pevent_record *record, enum pevent_errno *err);
1745 struct pevent_record *record, enum pevent_errno *err) in get_exp_value() argument
1749 lval = get_arg_value(event, arg->exp.left, record, err); in get_exp_value()
1750 rval = get_arg_value(event, arg->exp.right, record, err); in get_exp_value()
[all …]
Dplugin_function.c125 static int function_handler(struct trace_seq *s, struct pevent_record *record, in function_handler() argument
135 if (pevent_get_field_val(s, event, "ip", record, &function, 1)) in function_handler()
140 if (pevent_get_field_val(s, event, "parent_ip", record, &pfunction, 1)) in function_handler()
146 index = add_and_get_index(parent, func, record->cpu); in function_handler()
Devent-parse.h105 struct pevent_record *record,
622 struct pevent_record *record, bool use_trace_clock);
637 const char *name, struct pevent_record *record,
641 const char *name, struct pevent_record *record,
644 const char *name, struct pevent_record *record,
647 const char *name, struct pevent_record *record,
652 struct pevent_record *record, int err);
656 struct pevent_record *record, int err);
688 struct trace_seq *s, struct pevent_record *record);
699 struct pevent_record *record);
[all …]
Dplugin_kmem.c26 static int call_site_handler(struct trace_seq *s, struct pevent_record *record, in call_site_handler() argument
31 void *data = record->data; in call_site_handler()
Devent-parse.c4948 struct trace_seq *s, struct pevent_record *record) in pevent_data_lat_fmt() argument
4960 void *data = record->data; in pevent_data_lat_fmt()
5172 struct pevent_record *record) in pevent_event_info() argument
5177 print_event_fields(s, record->data, record->size, event); in pevent_event_info()
5181 print_pretty = event->handler(s, record, event, in pevent_event_info()
5185 pretty_print(s, record->data, record->size, event); in pevent_event_info()
5205 struct pevent_record *record, bool use_trace_clock) in pevent_print_event() argument
5213 void *data = record->data; in pevent_print_event()
5223 secs = record->ts / NSECS_PER_SEC; in pevent_print_event()
5224 nsecs = record->ts - secs * NSECS_PER_SEC; in pevent_print_event()
[all …]
/linux-4.1.27/tools/perf/
Dbuiltin-record.c36 struct record { struct
50 static int record__write(struct record *rec, void *bf, size_t size) in record__write() argument
66 struct record *rec = container_of(tool, struct record, tool); in process_synthesized_event()
70 static int record__mmap_read(struct record *rec, int idx) in record__mmap_read()
136 static int record__open(struct record *rec) in record__open()
200 struct record *rec = container_of(tool, struct record, tool); in process_sample_event()
207 static int process_buildids(struct record *rec) in process_buildids()
266 static int record__mmap_read_all(struct record *rec) in record__mmap_read_all()
292 static void record__init_features(struct record *rec) in record__init_features()
326 static int __cmd_record(struct record *rec, int argc, const char **argv) in __cmd_record()
[all …]
Dperf-with-kcore.sh53 ("$PERF" record -o perf.data.junk $PERF_OPTIONS -- sleep 60) >/dev/null 2>/dev/null &
153 record() function
197 "$PERF" record -o "$PERF_DATA_DIR/perf.data" $PERF_OPTIONS -- $* || true
245 record $*
D.gitignore9 perf-record
Dcommand-list.txt20 perf-record mainporcelain common
DBuild10 perf-y += builtin-record.o
Dperf-completion.sh163 $prev_skip_opts == @(record|stat|top) ]]; then
/linux-4.1.27/arch/m68k/kernel/
Dsetup_mm.c145 static void __init m68k_parse_bootinfo(const struct bi_record *record) in m68k_parse_bootinfo() argument
149 save_bootinfo(record); in m68k_parse_bootinfo()
151 while ((tag = be16_to_cpu(record->tag)) != BI_LAST) { in m68k_parse_bootinfo()
153 const void *data = record->data; in m68k_parse_bootinfo()
154 uint16_t size = be16_to_cpu(record->size); in m68k_parse_bootinfo()
192 unknown = amiga_parse_bootinfo(record); in m68k_parse_bootinfo()
194 unknown = atari_parse_bootinfo(record); in m68k_parse_bootinfo()
196 unknown = mac_parse_bootinfo(record); in m68k_parse_bootinfo()
198 unknown = q40_parse_bootinfo(record); in m68k_parse_bootinfo()
200 unknown = bvme6000_parse_bootinfo(record); in m68k_parse_bootinfo()
[all …]
/linux-4.1.27/fs/hfs/
Dbfind.c83 fd->record = e; in __hfs_brec_find()
128 if (fd->record < 0) in hfs_brec_find()
173 while (cnt > fd->record) { in hfs_brec_goto()
174 cnt -= fd->record + 1; in hfs_brec_goto()
175 fd->record = bnode->num_recs - 1; in hfs_brec_goto()
189 fd->record -= cnt; in hfs_brec_goto()
191 while (cnt >= bnode->num_recs - fd->record) { in hfs_brec_goto()
192 cnt -= bnode->num_recs - fd->record; in hfs_brec_goto()
193 fd->record = 0; in hfs_brec_goto()
207 fd->record += cnt; in hfs_brec_goto()
[all …]
Dbrec.c80 fd->record = -1; in hfs_brec_insert()
86 rec = fd->record + 1; in hfs_brec_insert()
184 rec_off = tree->node_size - (fd->record + 2) * 2; in hfs_brec_remove()
193 fd->record, fd->keylength + fd->entrylength); in hfs_brec_remove()
224 if (!fd->record) in hfs_brec_remove()
280 if (fd->record + 1 < num_recs) { in hfs_bnode_split()
291 fd->record -= num_recs; in hfs_bnode_split()
369 if (fd->record < 0) in hfs_brec_update_parent()
372 rec = fd->record; in hfs_brec_update_parent()
397 rec = fd->record; in hfs_brec_update_parent()
Dbtree.h74 int record; member
/linux-4.1.27/tools/hv/
Dhv_kvp_daemon.c181 struct kvp_record *record = kvp_file_info[pool].records; in kvp_update_mem_state() local
196 readp = &record[records_read]; in kvp_update_mem_state()
211 record = realloc(record, alloc_unit * num_blocks); in kvp_update_mem_state()
213 if (record == NULL) { in kvp_update_mem_state()
223 kvp_file_info[pool].records = record; in kvp_update_mem_state()
235 struct kvp_record *record; in kvp_file_init() local
266 record = malloc(alloc_unit * num_blocks); in kvp_file_init()
267 if (record == NULL) { in kvp_file_init()
273 readp = &record[records_read]; in kvp_file_init()
289 record = realloc(record, alloc_unit * in kvp_file_init()
[all …]
/linux-4.1.27/fs/hfsplus/
Dbfind.c151 fd->record = e; in __hfs_brec_find()
197 if (fd->record < 0) in hfs_brec_find()
242 while (cnt > fd->record) { in hfs_brec_goto()
243 cnt -= fd->record + 1; in hfs_brec_goto()
244 fd->record = bnode->num_recs - 1; in hfs_brec_goto()
258 fd->record -= cnt; in hfs_brec_goto()
260 while (cnt >= bnode->num_recs - fd->record) { in hfs_brec_goto()
261 cnt -= bnode->num_recs - fd->record; in hfs_brec_goto()
262 fd->record = 0; in hfs_brec_goto()
276 fd->record += cnt; in hfs_brec_goto()
[all …]
Dbrec.c78 fd->record = -1; in hfs_brec_insert()
84 rec = fd->record + 1; in hfs_brec_insert()
186 rec_off = tree->node_size - (fd->record + 2) * 2; in hfs_brec_remove()
195 fd->record, fd->keylength + fd->entrylength); in hfs_brec_remove()
228 if (!fd->record) in hfs_brec_remove()
284 if (fd->record + 1 < num_recs) { in hfs_bnode_split()
295 fd->record -= num_recs; in hfs_bnode_split()
373 if (fd->record < 0) in hfs_brec_update_parent()
376 rec = fd->record; in hfs_brec_update_parent()
402 rec = fd->record; in hfs_brec_update_parent()
Dhfsplus_fs.h290 int record; member
/linux-4.1.27/kernel/
Dlatencytop.c114 unsigned long record = lat->backtrace[q]; in account_global_scheduler_latency() local
116 if (latency_record[i].backtrace[q] != record) { in account_global_scheduler_latency()
122 if (record == 0 || record == ULONG_MAX) in account_global_scheduler_latency()
204 unsigned long record = lat.backtrace[q]; in __account_scheduler_latency() local
206 if (mylat->backtrace[q] != record) { in __account_scheduler_latency()
212 if (record == 0 || record == ULONG_MAX) in __account_scheduler_latency()
/linux-4.1.27/tools/perf/Documentation/
Dperf-timechart.txt11 'perf timechart' [<timechart options>] {record} [<record options>]
17 'perf timechart record <command>' to record the system level events
20 but it's possible to record IO (disk, network) activity using -I argument.
99 $ perf timechart record git pull
101 [ perf record: Woken up 13 times to write data ]
102 [ perf record: Captured and wrote 4.253 MB perf.data (~185801 samples) ]
110 $ perf timechart record
118 $ perf timechart record -I
126 linkperf:perf-record[1]
Dperf-mem.txt11 'perf mem' [<options>] (record [<command>] | report)
15 "perf mem record" runs a command and gathers memory operation data
16 from it, into perf.data. Perf record options are accepted and are passed through.
48 option can be passed in record mode. It will be interpreted the same way as perf
49 record.
53 linkperf:perf-record[1], linkperf:perf-report[1]
Dperf-kvm.txt13 {top|record|report|diff|buildid-list} [<options>]
15 | --guestvmlinux=<path>] {top|record|report|diff|buildid-list|stat} [<options>]
16 'perf kvm stat [record|report|live] [<options>]
26 'perf kvm record <command>' to record the performance counter profile
30 the perf data file name is perf.data.kvm. If you want to record data into
40 recorded via perf kvm record.
43 files captured via perf record.
49 was captured with --guestmount in perf kvm record.
53 Especially, perf 'kvm stat record/report' generates a statistical analysis
55 events are supported. 'perf kvm stat record <command>' records kvm events
[all …]
Dperf-sched.txt11 'perf sched' {record|latency|map|replay|script}
17 'perf sched record <command>' to record the scheduling events
27 via perf sched record. (this is done by starting up mockup threads
34 workload captured via perf sched record. Columns stand for
55 linkperf:perf-record[1]
Dperf-script.txt6 perf-script - Read perf.data (created by perf record) and display trace output
12 'perf script' [<options>] record <script> [<record-options>] <command>
14 'perf script' [<options>] <script> <required-script-args> [<record-options>] <command>
29 record and run those scripts:
31 'perf script record <script> <command>' to record the events required
35 recorded using the -a (system-wide) 'perf record' option.
41 record <script>' is used and should be present for this command to
46 record the events required for <script> and to run the <script>
51 'perf record' option. If <script> has any required args, they
54 desired, they can be specified using separate 'perf script record'
[all …]
Dperf-kmem.txt11 'perf kmem' {record|stat} [<options>]
17 'perf kmem record <command>' to record the kmem events
57 linkperf:perf-record[1]
Dperf-script-python.txt75 that, but first we need to record the data that will be processed by
92 don't care how it exited, so we'll use 'perf record' to record only
96 # perf record -a -e raw_syscalls:sys_enter
98 ^C[ perf record: Woken up 1 times to write data ]
99 [ perf record: Captured and wrote 56.545 MB perf.data (~2470503 samples) ]
171 every event in the 'perf record' output. The handler functions take
181 mean either that the record step recorded event types that it wasn't
325 detailed event and field info, record the corresponding trace data
326 using 'perf record', passing it the list of interesting events,
345 probably lengthy 'perf record' command needed to record the events for
[all …]
Dperf-trace.txt12 'perf trace record'
21 the other perf tools. Files can be generated using the 'perf record' command
23 Alternatively, 'perf trace record' can be used as a shortcut to
26 The following options apply to perf trace; options to perf trace record are
27 found in the perf record man page.
164 linkperf:perf-record[1], linkperf:perf-script[1]
Dperf-list.txt55 perf record -a -e cpu-cycles:p ... # use ibs op counting cycles
56 perf record -a -e r076:p ... # same as -e cpu-cycles:p
57 perf record -a -e r0C1:p ... # use ibs op counting micro-ops
88 perf record -e r1a8 ...
140 linkperf:perf-record[1],
Dperf-lock.txt11 'perf lock' {record|report|script|info}
18 'perf lock record <command>' records lock events
Dperf-inject.txt15 perf-inject reads a perf-record event stream and repipes it to stdout. At any
49 linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-archive[1]
Dexamples.txt69 titan:~/git> perf record -e kmem:mm_page_alloc -c 1 ./git gc
75 [ perf record: Captured and wrote 0.267 MB perf.data (~11679 samples) ]
123 titan:~/git> perf record -g -e kmem:mm_page_alloc -c 1 ./git gc
129 [ perf record: Captured and wrote 0.963 MB perf.data (~42069 samples) ]
Dperf-annotate.txt6 perf-annotate - Read perf.data (created by perf record) and display annotated code
101 linkperf:perf-record[1], linkperf:perf-report[1]
Dperf-archive.txt22 linkperf:perf-record[1], linkperf:perf-buildid-list[1], linkperf:perf-report[1]
Dperf-evlist.txt37 linkperf:perf-record[1], linkperf:perf-list[1],
Dperf-record.txt1 perf-record(1)
6 perf-record - Run a command and record its profile into perf.data
11 'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] <command>
12 'perf record' [-e <EVENT> | --event=EVENT] [-l] [-a] -- <command> [<options>]
Dperf-buildid-list.txt42 linkperf:perf-record[1], linkperf:perf-top[1],
Dperf.txt40 linkperf:perf-record[1], linkperf:perf-report[1],
Dperf-report.txt6 perf-report - Read perf.data (created by perf record) and display the profile
16 via perf record.
273 perf.data file must have been obtained using perf record -b or
274 perf record --branch-filter xxx where xxx is a branch filter option.
300 file must have been obtained using perf record -d -W and using a
Dperf-script-perl.txt49 As an example, the following perf record command can be used to record
52 # perf record -a -e sched:sched_wakeup
Dperf-diff.txt16 files captured via perf record.
214 linkperf:perf-record[1], linkperf:perf-report[1]
Dperf-buildid-cache.txt63 linkperf:perf-record[1], linkperf:perf-report[1], linkperf:perf-buildid-list[1]
Dperf-probe.txt222 linkperf:perf-trace[1], linkperf:perf-record[1]
/linux-4.1.27/drivers/infiniband/ulp/ipoib/
Dipoib_verbs.c297 struct ib_event *record) in ipoib_event() argument
302 if (record->element.port_num != priv->port) in ipoib_event()
305 ipoib_dbg(priv, "Event %d on device %s port %d\n", record->event, in ipoib_event()
306 record->device->name, record->element.port_num); in ipoib_event()
308 if (record->event == IB_EVENT_SM_CHANGE || in ipoib_event()
309 record->event == IB_EVENT_CLIENT_REREGISTER) { in ipoib_event()
311 } else if (record->event == IB_EVENT_PORT_ERR || in ipoib_event()
312 record->event == IB_EVENT_PORT_ACTIVE || in ipoib_event()
313 record->event == IB_EVENT_LID_CHANGE) { in ipoib_event()
315 } else if (record->event == IB_EVENT_PKEY_CHANGE) { in ipoib_event()
Dipoib.h531 struct ib_event *record);
/linux-4.1.27/tools/perf/util/
Dtrace-event-parse.c118 struct pevent_record record; in event_format__fprintf() local
121 memset(&record, 0, sizeof(record)); in event_format__fprintf()
122 record.cpu = cpu; in event_format__fprintf()
123 record.size = size; in event_format__fprintf()
124 record.data = data; in event_format__fprintf()
127 pevent_event_info(&s, event, &record); in event_format__fprintf()
DBuild71 libperf-y += record.o
/linux-4.1.27/kernel/gcov/
Dgcc_3_4.c337 int record; member
401 iter->record = 0; in gcov_iter_start()
434 switch (iter->record) { in gcov_iter_next()
442 iter->record++; in gcov_iter_next()
450 iter->record = 9; in gcov_iter_next()
460 iter->record = 7; in gcov_iter_next()
469 iter->record = 3; in gcov_iter_next()
471 iter->record = -1; in gcov_iter_next()
475 if (iter->record == -1) in gcov_iter_next()
525 switch (iter->record) { in gcov_iter_write()
/linux-4.1.27/drivers/fmc/
Dfmc-sdb.c51 arr->record = kzalloc(sizeof(arr->record[0]) * n, GFP_KERNEL); in __fmc_scan_sdb_tree()
53 if (!arr->record || !arr->subtree) { in __fmc_scan_sdb_tree()
54 kfree(arr->record); in __fmc_scan_sdb_tree()
66 for (j = 0; j < sizeof(arr->record[0]); j += 4) { in __fmc_scan_sdb_tree()
67 *(uint32_t *)((void *)(arr->record + i) + j) = in __fmc_scan_sdb_tree()
70 r = &arr->record[i]; in __fmc_scan_sdb_tree()
116 kfree(arr->record); in __fmc_sdb_free()
179 r = &arr->record[i]; in __fmc_show_sdb_tree()
265 r = &tree->record[i]; in fmc_find_sdb_device()
Dfmc-dump.c95 line = (void *)fmc->sdb->record; in fmc_dump_sdb()
/linux-4.1.27/drivers/pci/
Dpci-acpi.c44 static acpi_status decode_type0_hpx_record(union acpi_object *record, in decode_type0_hpx_record() argument
48 union acpi_object *fields = record->package.elements; in decode_type0_hpx_record()
53 if (record->package.count != 6) in decode_type0_hpx_record()
74 static acpi_status decode_type1_hpx_record(union acpi_object *record, in decode_type1_hpx_record() argument
78 union acpi_object *fields = record->package.elements; in decode_type1_hpx_record()
83 if (record->package.count != 5) in decode_type1_hpx_record()
103 static acpi_status decode_type2_hpx_record(union acpi_object *record, in decode_type2_hpx_record() argument
107 union acpi_object *fields = record->package.elements; in decode_type2_hpx_record()
112 if (record->package.count != 18) in decode_type2_hpx_record()
149 union acpi_object *package, *record, *fields; in acpi_run_hpx() local
[all …]
/linux-4.1.27/drivers/net/ethernet/intel/igb/
De1000_i210.c465 u32 *record = NULL; in igb_read_invm_version() local
483 record = &buffer[invm_blocks - i]; in igb_read_invm_version()
487 if ((i == 1) && ((*record & E1000_INVM_VER_FIELD_ONE) == 0)) { in igb_read_invm_version()
494 ((*record & E1000_INVM_VER_FIELD_TWO) == 0)) { in igb_read_invm_version()
495 version = (*record & E1000_INVM_VER_FIELD_ONE) >> 3; in igb_read_invm_version()
502 else if ((((*record & E1000_INVM_VER_FIELD_ONE) == 0) && in igb_read_invm_version()
503 ((*record & 0x3) == 0)) || (((*record & 0x3) != 0) && in igb_read_invm_version()
513 else if (((*record & E1000_INVM_VER_FIELD_TWO) == 0) && in igb_read_invm_version()
514 ((*record & 0x3) == 0)) { in igb_read_invm_version()
515 version = (*record & E1000_INVM_VER_FIELD_ONE) >> 3; in igb_read_invm_version()
[all …]
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
Dhtc.c267 struct ath10k_htc_record *record; in ath10k_htc_process_trailer() local
276 record = (struct ath10k_htc_record *)buffer; in ath10k_htc_process_trailer()
278 if (length < sizeof(record->hdr)) { in ath10k_htc_process_trailer()
283 if (record->hdr.len > length) { in ath10k_htc_process_trailer()
286 record->hdr.len); in ath10k_htc_process_trailer()
291 switch (record->hdr.id) { in ath10k_htc_process_trailer()
294 if (record->hdr.len < len) { in ath10k_htc_process_trailer()
300 record->credit_report, in ath10k_htc_process_trailer()
301 record->hdr.len, in ath10k_htc_process_trailer()
306 record->hdr.id, record->hdr.len); in ath10k_htc_process_trailer()
[all …]
/linux-4.1.27/tools/perf/scripts/python/bin/
Dfailed-syscalls-by-pid-record2 (perf record -e raw_syscalls:sys_exit $@ || \
3 perf record -e syscalls:sys_exit $@) 2> /dev/null
Dsyscall-counts-by-pid-record2 (perf record -e raw_syscalls:sys_enter $@ || \
3 perf record -e syscalls:sys_enter $@) 2> /dev/null
Dsyscall-counts-record2 (perf record -e raw_syscalls:sys_enter $@ || \
3 perf record -e syscalls:sys_enter $@) 2> /dev/null
Dsctop-record2 (perf record -e raw_syscalls:sys_enter $@ || \
3 perf record -e syscalls:sys_enter $@) 2> /dev/null
Devent_analyzing_sample-record8 perf record $@
Dexport-to-postgresql-record8 perf record $@
Dnet_dropmonitor-record2 perf record -e skb:kfree_skb $@
Dfutex-contention-record2 perf record -e syscalls:sys_enter_futex -e syscalls:sys_exit_futex $@
Dsched-migration-record2 perf record -m 16384 -e sched:sched_wakeup -e sched:sched_wakeup_new -e sched:sched_switch -e sched…
Dnetdev-times-record2 perf record -e net:net_dev_xmit -e net:net_dev_queue \
/linux-4.1.27/tools/perf/scripts/perl/bin/
Dfailed-syscalls-record2 (perf record -e raw_syscalls:sys_exit $@ || \
3 perf record -e syscalls:sys_exit $@) 2> /dev/null
Dwakeup-latency-record2 perf record -e sched:sched_switch -e sched:sched_wakeup $@
Drw-by-file-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_enter_write $@
Dcheck-perf-trace-record2 perf record -a -e kmem:kmalloc -e irq:softirq_entry -e kmem:kfree
Drwtop-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
Drw-by-pid-record2 perf record -e syscalls:sys_enter_read -e syscalls:sys_exit_read -e syscalls:sys_enter_write -e sys…
/linux-4.1.27/include/acpi/
Dapei.h36 int erst_write(const struct cper_record_header *record);
41 ssize_t erst_read(u64 record_id, struct cper_record_header *record,
/linux-4.1.27/Documentation/ABI/testing/
Ddev-kmsg24 Every read() from the opened device node receives one record
32 Every read() will receive the next available record. If no more
36 Messages in the record ring buffer get overwritten as whole,
41 and the seek position be updated to the next available record.
44 Unlike the classic syslog() interface, the 64 bit record
56 seek after the last record available at the time
Dsysfs-class-cxl94 configuration record.
101 configuration record.
108 configuration record.
115 record. The format is expected to match the either the standard
Dpstore39 multiple) files based on the record size of the underlying
/linux-4.1.27/arch/m68k/apollo/
Dconfig.c49 int __init apollo_parse_bootinfo(const struct bi_record *record) in apollo_parse_bootinfo() argument
52 const void *data = record->data; in apollo_parse_bootinfo()
54 switch (be16_to_cpu(record->tag)) { in apollo_parse_bootinfo()
/linux-4.1.27/drivers/acpi/apei/
Derst.c765 static int __erst_write_to_nvram(const struct cper_record_header *record) in __erst_write_to_nvram() argument
783 int erst_write(const struct cper_record_header *record) in erst_write() argument
792 if (memcmp(record->signature, CPER_SIG_RECORD, CPER_SIG_SIZE)) in erst_write()
798 rc = __erst_write_to_nvram(record); in erst_write()
803 if (record->record_length > erst_erange.size) in erst_write()
808 memcpy(erst_erange.vaddr, record, record->record_length); in erst_write()
836 static ssize_t __erst_read(u64 record_id, struct cper_record_header *record, in __erst_read() argument
849 memcpy(record, rcd_tmp, len); in __erst_read()
859 ssize_t erst_read(u64 record_id, struct cper_record_header *record, in erst_read() argument
869 len = __erst_read(record_id, record, buflen); in erst_read()
/linux-4.1.27/arch/m68k/hp300/
Dconfig.c72 int __init hp300_parse_bootinfo(const struct bi_record *record) in hp300_parse_bootinfo() argument
75 const void *data = record->data; in hp300_parse_bootinfo()
77 switch (be16_to_cpu(record->tag)) { in hp300_parse_bootinfo()
/linux-4.1.27/drivers/gpu/drm/radeon/
Dradeon_atombios.c662 ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *) in radeon_get_atom_connector_info_from_object_table() local
668 while (record->ucRecordSize > 0 && in radeon_get_atom_connector_info_from_object_table()
669 record->ucRecordType > 0 && in radeon_get_atom_connector_info_from_object_table()
670 record->ucRecordType <= ATOM_MAX_OBJECT_RECORD_NUMBER) { in radeon_get_atom_connector_info_from_object_table()
671 switch (record->ucRecordType) { in radeon_get_atom_connector_info_from_object_table()
674 record; in radeon_get_atom_connector_info_from_object_table()
678 record = (ATOM_COMMON_RECORD_HEADER *) in radeon_get_atom_connector_info_from_object_table()
679 ((char *)record + record->ucRecordSize); in radeon_get_atom_connector_info_from_object_table()
693 ATOM_COMMON_RECORD_HEADER *record = (ATOM_COMMON_RECORD_HEADER *) in radeon_get_atom_connector_info_from_object_table() local
717 while (record->ucRecordSize > 0 && in radeon_get_atom_connector_info_from_object_table()
[all …]
/linux-4.1.27/drivers/staging/wlan-ng/
Dprism2fw.c856 static int read_fwfile(const struct ihex_binrec *record) in read_fwfile() argument
866 while (record) { in read_fwfile()
870 len = be16_to_cpu(record->len); in read_fwfile()
871 addr = be32_to_cpu(record->addr); in read_fwfile()
874 ptr32 = (u32 *) record->data; in read_fwfile()
875 ptr16 = (u16 *) record->data; in read_fwfile()
948 s3data[ns3data].data = (uint8_t *) record->data; in read_fwfile()
956 record = ihex_next_binrec(record); in read_fwfile()
/linux-4.1.27/drivers/net/wireless/ath/ath6kl/
Dhtc_pipe.c858 struct htc_record_hdr *record; in htc_process_trailer() local
873 record = (struct htc_record_hdr *) buffer; in htc_process_trailer()
877 if (record->len > len) { in htc_process_trailer()
881 record->len, record->rec_id, len); in htc_process_trailer()
889 switch (record->rec_id) { in htc_process_trailer()
891 if (record->len < sizeof(struct htc_credit_report)) { in htc_process_trailer()
898 record->len / sizeof(*report), in htc_process_trailer()
904 record->rec_id, record->len); in htc_process_trailer()
912 buffer += record->len; in htc_process_trailer()
913 len -= record->len; in htc_process_trailer()
Dhtc_mbox.c1673 struct htc_record_hdr *record, in htc_parse_trailer() argument
1682 switch (record->rec_id) { in htc_parse_trailer()
1684 len = record->len / sizeof(struct htc_credit_report); in htc_parse_trailer()
1695 len = record->len / sizeof(*lk_ahd); in htc_parse_trailer()
1719 len = record->len / sizeof(*bundle_lkahd_rpt); in htc_parse_trailer()
1732 "", record_buf, record->len); in htc_parse_trailer()
1745 record->rec_id, record->len); in htc_parse_trailer()
1756 struct htc_record_hdr *record; in htc_proc_trailer() local
1775 record = (struct htc_record_hdr *) buf; in htc_proc_trailer()
1779 if (record->len > len) { in htc_proc_trailer()
[all …]
/linux-4.1.27/samples/kfifo/
DMakefile1 obj-$(CONFIG_SAMPLE_KFIFO) += bytestream-example.o dma-example.o inttype-example.o record-example.o
/linux-4.1.27/Documentation/blockdev/drbd/
Ddrbd-connection-state-overview.dot15 CommTrouble [ shape=record,
48 …cluster_resync [ shape=record,label="{<any>resynchronisation process running\l'concurrent' applica…
/linux-4.1.27/Documentation/filesystems/caching/
Dbackend-api.txt153 (*) FS-Cache operation record:
176 (*) FS-Cache retrieval operation record:
185 A structure of this type is allocated by FS-Cache to record retrieval and
201 (*) FS-Cache storage operation record:
209 A structure of this type is allocated by FS-Cache to record outstanding
430 The retrieval record pointed to by op should be retained for each page
434 The retrieval record may be used to get CPU time via the FS-Cache thread
439 The to_do field in the retrieval record is provided to aid in this.
559 This is called to record the fact that one or more pages have been dealt
569 This is called to record the completion of an operation. This deducts
[all …]
Doperations.txt11 (*) Operation record initialisation.
74 There are a number of parameters that can be set in the operation record's flag
Dobject.txt273 The object transits to this state when the in-memory object record is
/linux-4.1.27/sound/soc/dwc/
DKconfig8 maximum of 8 channels each for play and record.
/linux-4.1.27/include/linux/
Dfmc-sdb.h30 union sdb_record *record; /* copies of the struct */ member
Dperf_event.h870 extern void perf_tp_event(u64 addr, u64 count, void *record,
/linux-4.1.27/Documentation/s390/
Dmonreader.txt128 contains information on the type of the following record set (sample/event
130 of the record set in the monitor DCSS. The start and end address can be used
131 to determine the size of the record set, the end address is the address of the
133 correctly (domain 1, record 13), i.e. it can be used to determine the record
151 There may be more than one combination of MCE and corresponding record set
DDASD35 partition table in the label record.
/linux-4.1.27/Documentation/networking/
Dpolicy-routing.txt37 Rule is a record of (src prefix, src interface, tos, dst prefix)
85 info. record. This approach is not appropriate for automated
120 Area classes must be terminated with reject record.
Dray_cs.txt118 1 = sniffer which can be used to record all
129 interpret the contents, but it can record to a file. This is only
Ddns_resolver.txt31 (*) Dns query support for AFSDB resource record.
/linux-4.1.27/sound/soc/rockchip/
DKconfig16 8 channels each for play and record.
/linux-4.1.27/scripts/
Dobjdiff143 record)
Danalyze_suspend.py3042 record = struct.unpack('HBBIQQQQQ', recdata)
3045 print(' Reset END : %u ns' % record[4])
3046 print(' OS Loader LoadImage Start : %u ns' % record[5])
3047 print(' OS Loader StartImage Start : %u ns' % record[6])
3048 print(' ExitBootServices Entry : %u ns' % record[7])
3049 print(' ExitBootServices Exit : %u ns' % record[8])
3059 record = struct.unpack('IIQQ', recdata[j:j+prechead[1]])
3060 fwData[1] = record[2]
3064 record[1])
3066 record[2])
[all …]
/linux-4.1.27/Documentation/
Dramoops.txt38 The module uses a counter to record multiple dumps but the counter gets reset
104 files is "dmesg-ramoops-N", where N is the record number in memory. To delete
105 a stored record from RAM, simply unlink the respective pstore file.
Diostats.txt130 record of the partition-relative address is kept, the subsequent success
144 keep record of the partition-relative address, an operation is attributed to
Dmd-cluster.txt7 The bitmaps record all writes that may have been started on that node,
Dkasan.txt145 of kmemcheck: use shadow memory to record whether each byte of memory is safe
/linux-4.1.27/Documentation/filesystems/
Dqnx6.txt101 Eeach filename record additionally got a filename length field.
105 record plus the longfile inode number also stored in that record.
117 no block pointers and the directory file record pointing to the target file
Dxfs-delayed-logging-design.txt246 Now that we can record transactional changes in memory in a form that allows
306 formatted log items and a commit record at the tail. From a recovery
317 the transaction commit record, but tracking this requires us to have a
394 attached to the log buffer that the commit record was written to along with a
423 To do this, transactions need to record the LSN of the commit record of the
449 the checkpoint context records the LSN of the commit record for the checkpoint,
450 we can also wait on the log buffer that contains the commit record, thereby
486 usage of the transaction. The reservation accounts for log record headers,
514 problematic. Typically log record headers use at least 16KB of log space per
661 The final serialisation point is the checkpoint commit record ordering code
[all …]
Doverlayfs.txt88 filesystem, an overlay filesystem needs to record in the upper filesystem
/linux-4.1.27/drivers/usb/serial/
Dio_ti.c1020 u8 *record; in download_fw() local
1069 record = kmalloc(1, GFP_KERNEL); in download_fw()
1070 if (!record) { in download_fw()
1088 *record = I2C_DESC_TYPE_FIRMWARE_BLANK; in download_fw()
1093 sizeof(*record), record); in download_fw()
1095 kfree(record); in download_fw()
1108 sizeof(*record), in download_fw()
1109 record); in download_fw()
1111 kfree(record); in download_fw()
1118 if (*record != I2C_DESC_TYPE_FIRMWARE_BLANK) { in download_fw()
[all …]
/linux-4.1.27/Documentation/trace/
Dtracepoint-analysis.txt210 o When receiving an event about a PID, it can record who the parent was so
222 $ perf record -c 1 \
227 [ perf record: Captured and wrote 0.733 MB perf.data (~32010 samples) ]
233 This record outputted a file called perf.data which can be analysed using
262 $ perf record -c 1 -f \
Dmmiotrace.txt125 The raw log is text and easily filtered with e.g. grep and awk. One record is
126 one line in the log. A record starts with a keyword, followed by keyword-
Dftrace.txt130 Some of the tracers record the max latency.
140 Some latency tracers will record a trace whenever the
727 record-cmd
853 record-cmd - When any event or tracer is enabled, a hook is enabled
1197 The irqsoff tracer will record the total length of
1201 The preemptoff tracer will record the total length of
1207 not schedule. To record this time, use the preemptirqsoff
1438 to record the worst case wakeups of RT tasks. Non-RT tasks are
1701 record. For this reason, it is sometimes better to disable
2583 record max latency, such as "irqsoff" or "wakeup", can't use
/linux-4.1.27/arch/m68k/atari/
Dconfig.c131 int __init atari_parse_bootinfo(const struct bi_record *record) in atari_parse_bootinfo() argument
134 const void *data = record->data; in atari_parse_bootinfo()
136 switch (be16_to_cpu(record->tag)) { in atari_parse_bootinfo()
/linux-4.1.27/sound/usb/line6/
DKconfig20 * Signal routing (record clean/processed guitar signal,
/linux-4.1.27/Documentation/cpuidle/
Dgovernor.txt18 by the governor for some record keeping.
/linux-4.1.27/arch/arm/boot/dts/
Domap443x.dtsi64 /* Default unused, just provide register info for record */
Dspear1340.dtsi86 record;
/linux-4.1.27/arch/powerpc/perf/
Dcore-fsl-emb.c611 int record = 0; in record_and_restart() local
634 record = 1; in record_and_restart()
649 if (record) { in record_and_restart()
Dcore-book3s.c1933 int record = 0; in record_and_restart() local
1958 record = siar_valid(regs); in record_and_restart()
1973 if (record) { in record_and_restart()
/linux-4.1.27/arch/m68k/amiga/
Dconfig.c145 int __init amiga_parse_bootinfo(const struct bi_record *record) in amiga_parse_bootinfo() argument
148 const void *data = record->data; in amiga_parse_bootinfo()
150 switch (be16_to_cpu(record->tag)) { in amiga_parse_bootinfo()
/linux-4.1.27/drivers/infiniband/hw/mthca/
Dmthca_eq.c248 struct ib_event record; in port_change() local
253 record.device = &dev->ib_dev; in port_change()
254 record.event = active ? IB_EVENT_PORT_ACTIVE : IB_EVENT_PORT_ERR; in port_change()
255 record.element.port_num = port; in port_change()
257 ib_dispatch_event(&record); in port_change()
/linux-4.1.27/sound/pci/
Dsis7019.c600 u32 record = 0; in sis_pcm_trigger() local
630 record |= 1 << voice->num; in sis_pcm_trigger()
644 if (record) in sis_pcm_trigger()
645 outl(record, io + SIS_RECORD_START_REG); in sis_pcm_trigger()
651 if (record) in sis_pcm_trigger()
652 outl(record, io + SIS_RECORD_STOP_REG); in sis_pcm_trigger()
/linux-4.1.27/drivers/net/ethernet/sfc/
Dsiena_sriov.c246 MCDI_DECLARE_STRUCT_PTR(record); in efx_siena_sriov_memcpy()
259 record = MCDI_ARRAY_STRUCT_PTR(inbuf, MEMCPY_IN_RECORD, index); in efx_siena_sriov_memcpy()
260 MCDI_SET_DWORD(record, MEMCPY_RECORD_TYPEDEF_NUM_RECORDS, in efx_siena_sriov_memcpy()
262 MCDI_SET_DWORD(record, MEMCPY_RECORD_TYPEDEF_TO_RID, in efx_siena_sriov_memcpy()
264 MCDI_SET_QWORD(record, MEMCPY_RECORD_TYPEDEF_TO_ADDR, in efx_siena_sriov_memcpy()
283 MCDI_SET_DWORD(record, MEMCPY_RECORD_TYPEDEF_FROM_RID, from_rid); in efx_siena_sriov_memcpy()
284 MCDI_SET_QWORD(record, MEMCPY_RECORD_TYPEDEF_FROM_ADDR, in efx_siena_sriov_memcpy()
286 MCDI_SET_DWORD(record, MEMCPY_RECORD_TYPEDEF_LENGTH, in efx_siena_sriov_memcpy()
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Dmarvell,armada-370-xp-mpic.txt15 support, the "virtual" must be use (For the record, these registers
/linux-4.1.27/arch/arm/kernel/
Dhyp-stub.S60 strne \reg1, [\reg2, \reg3] @ record what happened and give up
/linux-4.1.27/tools/perf/tests/
DBuild10 perf-y += perf-record.o
/linux-4.1.27/drivers/s390/block/
Ddasd_eckd.h101 __u8 record; member
120 __u8 record; member
Ddasd_eckd.c475 data->search_arg.record = rec_on_trk; in fill_LRE_data()
730 data->search_arg.record = rec_on_trk; in locate_record()
1986 private->count_area[i].record != count_area_rec[i]) { in dasd_eckd_end_analysis()
2001 private->count_area[i].record != count_area_rec[i]) in dasd_eckd_end_analysis()
2007 if (private->count_area[3].record == 1) in dasd_eckd_end_analysis()
2277 ect->record = 0; in dasd_eckd_build_format()
2292 ect->record = 1; in dasd_eckd_build_format()
2306 ect->record = i + 1; in dasd_eckd_build_format()
3053 lredata->search_arg.record = rec_on_trk; in prepare_itcw()
/linux-4.1.27/arch/s390/
DKconfig734 APPLDATA monitor record, i.e. enables or disables monitoring this record
751 APPLDATA monitor record, i.e. enables or disables monitoring this record
767 APPLDATA monitor record, i.e. enables or disables monitoring this record
/linux-4.1.27/Documentation/input/
Datarikbd.txt32 0xF7 absolute mouse position record
69 The relative mouse position record is a three byte record of the form
71 %111110xy ; mouse position record flag
106 In this mode, the ikbd generates a record whenever the joystick position is
109 The joystick event record is two bytes of the form:
389 joystick switch or trigger causes a joystick event record to be generated.
402 Return a record indicating the current state of the joysticks. This command
Dyealink.txt12 - audio record full support, snd_usb_audio.ko / alsa API
/linux-4.1.27/Documentation/arm/
DCCN.txt47 The driver does not support sampling, therefore "perf record" will
/linux-4.1.27/sound/oss/dmasound/
Ddmasound.h127 void (*record)(void); /* optional */ member
/linux-4.1.27/arch/m68k/mac/
Dconfig.c83 int __init mac_parse_bootinfo(const struct bi_record *record) in mac_parse_bootinfo() argument
86 const void *data = record->data; in mac_parse_bootinfo()
88 switch (be16_to_cpu(record->tag)) { in mac_parse_bootinfo()
/linux-4.1.27/arch/blackfin/
DKconfig.debug122 two entries. Omitting one of these entries from the record prevents
138 The trace buffer does not record single loops - helpful if trace
144 The trace buffer does not record loops two levels deep. Helpful if
/linux-4.1.27/Documentation/blackfin/
Dbfin-gpio-notes.txt45 The request functions will record the function state for a certain pin,
/linux-4.1.27/arch/arm/include/debug/
Dtegra.S85 mov \rv, #0 @ yes; record init is done
/linux-4.1.27/Documentation/fmc/
Dfmc-chardev.txt55 SDB record from a SPEC device programmed with its golden image:
Didentifiers.txt112 record at address 256, 512 and 1024.
/linux-4.1.27/Documentation/device-mapper/
Dera.txt89 The target uses a bitset to record writes in the current era. It also
/linux-4.1.27/Documentation/devicetree/
Doverlay-notes.txt42 /plugin/; /* allow undefined label references and record them */
/linux-4.1.27/Documentation/sound/alsa/
DMIXART.txt67 - mono record
Dhda_codec.txt147 The pcm_info array contains the following record:
174 runtime->hw record. They and maxbps fields are used also to compute
/linux-4.1.27/Documentation/sound/oss/
DALS52 - Software selection of record source (line in, CD, FM, mic, master)
/linux-4.1.27/Documentation/acpi/apei/
Doutput_format.txt7 <error record> :=
/linux-4.1.27/drivers/s390/char/
Dvmur.c466 static int diag_position_to_record(int devno, int record) in diag_position_to_record() argument
470 cc = diag14(record, devno, 0x28); in diag_position_to_record()
DKconfig197 prompt "z/VM unit record device driver"
/linux-4.1.27/Documentation/filesystems/nfs/
Drpc-cache.txt191 Each request or response record should be printable ASCII
193 Fields within the record should be separated by spaces, normally one.
Dnfsroot.txt129 be carried in the DHCP request to hopefully update DNS record.
/linux-4.1.27/Documentation/video4linux/
DREADME.cpia2118 (http://mjpeg.sourceforge.net) can also be used to record from the camera.
/linux-4.1.27/kernel/trace/
DKconfig412 Those events can be inserted wherever kprobes can probe, and record
431 can probe, and record various registers.
547 run), and calls the tracepoint. Each iteration will record the time
/linux-4.1.27/sound/soc/blackfin/
DKconfig83 Note: This driver assumes that the ADAV80X digital record and playback
/linux-4.1.27/arch/m68k/ifpsp060/
Dilsp.doc134 to record that such an event occurred if desired.
Dfplsp.doc116 to record that the event occurred.
/linux-4.1.27/arch/frv/mm/
Dtlb-miss.S612 # map this PTD instead and record coverage address
/linux-4.1.27/Documentation/dvb/
Dfaq.txt30 TV watching and record/playback, have a look at VDR.
DREADME.dvb-usb185 working like charm now with VDR. Sometimes I even was able to record a channel
/linux-4.1.27/Documentation/watchdog/
Dconvert_drivers_to_kernel_api.txt157 have their own record-keeping for things like bootstatus and timeout using
Dwatchdog-api.txt111 interrupt, or other mechanism. This allows Linux to record useful
/linux-4.1.27/Documentation/spi/
Dspidev66 of devices at a time. Just provide one spi_board_info record for each such
/linux-4.1.27/Documentation/driver-model/
Ddevres.txt88 /* record size, vaddr, dma_handle in dr */
/linux-4.1.27/Documentation/cgroups/
Dmemcg_test.txt11 0. How to record usage ?
/linux-4.1.27/Documentation/accounting/
Dtaskstats.txt42 an additional record containing the per-tgid stats is also sent to userspace.
/linux-4.1.27/Documentation/isdn/
DREADME.hysdn164 0x00000020 Log firmware record parser
/linux-4.1.27/Documentation/pps/
Dpps.txt33 and record it for userland.
/linux-4.1.27/Documentation/blockdev/
Dparide.txt317 from ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/ . To record CD-R media
319 should be set to 0. With those settings it is possible to record at 2x
/linux-4.1.27/net/ipv6/netfilter/
DKconfig18 Connection tracking keeps a record of what packets have passed
/linux-4.1.27/arch/powerpc/platforms/
DKconfig.cputype307 Should a bad CT used for "non-record form ICSWX" cause an
/linux-4.1.27/net/ipv4/netfilter/
DKconfig18 Connection tracking keeps a record of what packets have passed
/linux-4.1.27/drivers/media/rc/
DKconfig300 Note that this device can only record bursts of 36 IR pulses and

12