Searched refs:line (Results 76 - 100 of 796) sorted by relevance

1234567891011>>

/linux-master/drivers/tty/serial/8250/
H A D8250_pnp.c440 long line; local
490 line = serial8250_register_8250_port(&uart);
491 if (line < 0 || (flags & CIR_PORT))
494 port = serial8250_get_port(line);
498 pnp_set_drvdata(dev, (void *)line);
504 long line = (long)pnp_get_drvdata(dev); local
507 serial8250_unregister_port(line);
512 long line = (long)dev_get_drvdata(dev); local
514 serial8250_suspend_port(line);
520 long line local
[all...]
H A D8250_hp300.c30 int line; /* line (tty) number */ member in struct:hp300_port
120 add_preferred_console("ttyS", port.line, "9600n8");
143 add_preferred_console("ttyS", port.line, "9600n8");
161 int line; local
180 line = serial8250_register_8250_port(&uart);
182 if (line < 0) {
191 dio_set_drvdata(d, (void *)line);
207 int line; local
262 line
290 int line; local
[all...]
/linux-master/drivers/media/pci/ivtv/
H A Divtv-vbi.c23 data.line = enabled ? 16 : 0;
40 data.line = (mode & 1) ? 21 : 0;
45 data.line = (mode & 2) ? 21 : 0;
68 data.line = enabled ? 23 : 0;
89 if (d->id == V4L2_SLICED_CAPTION_525 && d->line == 21) {
98 } else if (d->id == V4L2_SLICED_VPS && d->line == 16 && d->field == 0) {
111 d->line == 23 && d->field == 0) {
176 int line = 0; local
196 l = itv->vbi.sliced_data[i].line - 6;
204 dst[sd + 12 + line * 4
238 int line = 0; local
325 compress_sliced_buf(struct ivtv *itv, u32 line, u8 *buf, u32 size, u8 sav) argument
[all...]
H A Divtv-vbi.h17 int ivtv_used_line(struct ivtv *itv, int line, int field);
/linux-master/arch/sparc/include/asm/
H A Dbug.h9 void do_BUG(const char *file, int line);
/linux-master/sound/core/seq/
H A Dseq_lock.h19 void snd_use_lock_sync_helper(snd_use_lock_t *lock, const char *file, int line);
/linux-master/arch/sh/mm/
H A Dcache-debugfs.c68 unsigned int line; local
74 for (addr = addrstart, line = 0;
76 addr += cache->linesz, line++) {
85 line, data & 2 ? 'U' : ' ',
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dgm107.c27 gm107_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) argument
34 gm107_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty) argument
43 gm107_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty) argument
52 gm107_fan_pwm_clock(struct nvkm_therm *therm, int line) argument
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/subdev/
H A Dgpio.h12 u8 line; member in struct:nvkm_gpio_ntfy_req
30 int nvkm_gpio_find(struct nvkm_gpio *, int idx, u8 tag, u8 line,
32 int nvkm_gpio_set(struct nvkm_gpio *, int idx, u8 tag, u8 line, int state);
33 int nvkm_gpio_get(struct nvkm_gpio *, int idx, u8 tag, u8 line);
/linux-master/tools/verification/dot2/
H A Ddot2c.py32 for line in buff:
33 string = string + line + "\n"
167 line = "\t\t{ "
174 line = line + strformat % next_state + ", "
176 line = line + strformat % next_state + " },"
177 buff.append(line)
200 line = ""
204 line
[all...]
/linux-master/tools/testing/vsock/
H A Dcontrol.h14 bool control_cmpln(char *line, const char *str, bool fail);
/linux-master/lib/kunit/
H A Dhooks-impl.h19 int line,
/linux-master/tools/testing/selftests/gpio/
H A DMakefile5 TEST_GEN_PROGS_EXTENDED := gpio-mockup-cdev gpio-chip-info gpio-line-name
/linux-master/tools/lib/api/fs/
H A Dcgroup.c22 char *line = NULL; local
53 while (getline(&line, &len, fp) != -1) {
55 p = strchr(line, ' ');
91 free(line);
/linux-master/drivers/gpu/drm/ci/xfails/
H A Dupdate-xfails.py54 return any(unit_test_name in line for line in file_content)
64 lines[:] = [line for line in lines if unit_test_name not in line]
71 elif all(unit_test_name not in line for line in lines):
77 for i, line in enumerate(fails_txt):
78 if unit_test_name in line:
79 _, current_result = get_unit_test_name_and_results(line)
[all...]
/linux-master/samples/cgroup/
H A Dcgroup_event_listener.c28 char line[LINE_MAX]; local
51 ret = snprintf(line, LINE_MAX, "%d %d %s", efd, cfd, argv[2]);
55 ret = write(event_control, line, strlen(line) + 1);
/linux-master/tools/sound/
H A Ddapm-graph112 read line
114 if echo "${line}" | grep -q ': On '
120 while read line; do
122 if echo "${line}" | grep -q '^widget-type '; then
123 local w_type_raw="$(echo "$line" | cut -d ' ' -f 2)"
134 if echo "${line}" | grep -q '^in '; then
135 local w_src=$(echo "$line" |
219 # Parse command line
/linux-master/arch/x86/tools/
H A Dinsn_decoder_test.c42 static void malformed_line(const char *line, int line_nr) argument
44 fprintf(stderr, "%s: error: malformed line %d:\n%s",
45 prog, line_nr, line);
113 char line[BUFSIZE], sym[BUFSIZE] = "<unknown>"; local
121 while (fgets(line, BUFSIZE, stdin)) {
126 if (line[0] == '<') {
127 /* Symbol line */
128 strcpy(sym, line);
134 strcpy(copy, line);
137 malformed_line(line, insn
[all...]
/linux-master/tools/lib/api/
H A Dio.h149 char *line = NULL, *temp; local
162 temp = realloc(line, line_len + sizeof(buf));
165 line = temp;
166 memcpy(&line[line_len], buf, sizeof(buf));
172 temp = realloc(line, line_len + buf_pos + 1);
175 line = temp;
176 memcpy(&line[line_len], buf, buf_pos);
177 line[line_len + buf_pos] = '\0';
179 *line_out = line;
183 free(line);
[all...]
/linux-master/drivers/media/platform/qcom/camss/
H A Dcamss-vfe.c169 static u32 vfe_src_pad_code(struct vfe_line *line, u32 sink_code, argument
172 struct vfe_device *vfe = to_vfe(line);
316 struct vfe_output *output = &vfe->line[i].output;
397 int vfe_put_output(struct vfe_line *line) argument
399 struct vfe_device *vfe = to_vfe(line);
400 struct vfe_output *output = &line->output;
415 static int vfe_disable_output(struct vfe_line *line) argument
417 struct vfe_device *vfe = to_vfe(line);
418 struct vfe_output *output = &line->output;
432 * vfe_disable - Disable streaming on VFE line
437 vfe_disable(struct vfe_line *line) argument
769 struct vfe_line *line = container_of(vid, struct vfe_line, video_out); local
805 struct vfe_line *line = v4l2_get_subdevdata(sd); local
831 struct vfe_line *line = v4l2_get_subdevdata(sd); local
861 __vfe_get_format(struct vfe_line *line, struct v4l2_subdev_state *sd_state, unsigned int pad, enum v4l2_subdev_format_whence which) argument
881 __vfe_get_compose(struct vfe_line *line, struct v4l2_subdev_state *sd_state, enum v4l2_subdev_format_whence which) argument
901 __vfe_get_crop(struct vfe_line *line, struct v4l2_subdev_state *sd_state, enum v4l2_subdev_format_whence which) argument
919 vfe_try_format(struct vfe_line *line, struct v4l2_subdev_state *sd_state, unsigned int pad, struct v4l2_mbus_framefmt *fmt, enum v4l2_subdev_format_whence which) argument
979 vfe_try_compose(struct vfe_line *line, struct v4l2_subdev_state *sd_state, struct v4l2_rect *rect, enum v4l2_subdev_format_whence which) argument
1018 vfe_try_crop(struct vfe_line *line, struct v4l2_subdev_state *sd_state, struct v4l2_rect *rect, enum v4l2_subdev_format_whence which) argument
1066 struct vfe_line *line = v4l2_get_subdevdata(sd); local
1100 struct vfe_line *line = v4l2_get_subdevdata(sd); local
1138 struct vfe_line *line = v4l2_get_subdevdata(sd); local
1166 struct vfe_line *line = v4l2_get_subdevdata(sd); local
1217 struct vfe_line *line = v4l2_get_subdevdata(sd); local
1287 struct vfe_line *line = v4l2_get_subdevdata(sd); local
[all...]
/linux-master/tools/testing/selftests/lkdtm/
H A Drun.sh5 # with a leading "#" are skipped. The rest of the line after the
29 line=$(grep -E '^#?'"$test"'\b' tests.txt)
30 if [ -z "$line" ]; then
41 test=$(echo "$line" | cut -d" " -f1)
42 if echo "$line" | grep -q ' ' ; then
43 expect=$(echo "$line" | cut -d" " -f2-)
/linux-master/drivers/acpi/acpica/
H A Duttrack.c16 * line number. acpi_ut_allocate and acpi_ut_allocate_zeroed call
38 u32 component, const char *module, u32 line);
42 u32 component, const char *module, u32 line);
83 * line - Line number of caller
92 u32 component, const char *module, u32 line)
100 ACPI_WARNING((module, line,
111 ACPI_WARNING((module, line,
119 component, module, line);
145 * line - Line number of caller
155 const char *module, u32 line)
91 acpi_ut_allocate_and_track(acpi_size size, u32 component, const char *module, u32 line) argument
153 acpi_ut_allocate_zeroed_and_track(acpi_size size, u32 component, const char *module, u32 line) argument
217 acpi_ut_free_and_track(void *allocation, u32 component, const char *module, u32 line) argument
331 acpi_ut_track_allocation(struct acpi_debug_mem_block *allocation, acpi_size size, u8 alloc_type, u32 component, const char *module, u32 line) argument
421 acpi_ut_remove_allocation(struct acpi_debug_mem_block *allocation, u32 component, const char *module, u32 line) argument
[all...]
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dget_branch_snapshot.c11 char *line = NULL; local
20 while (getline(&line, &len, fp) != -1) {
21 if (!strncmp(line, "flags", 5)) {
22 if (strstr(line, "hypervisor") != NULL)
28 free(line);
/linux-master/fs/ext4/
H A Dext4_jbd2.c91 struct super_block *sb, unsigned int line,
113 GFP_NOFS, type, line);
116 int __ext4_journal_stop(const char *where, unsigned int line, handle_t *handle) argument
139 __ext4_std_error(sb, where, line, err);
143 handle_t *__ext4_journal_start_reserved(handle_t *handle, unsigned int line, argument
161 err = jbd2_journal_start_reserved(handle, type, line);
182 static void ext4_journal_abort_handle(const char *caller, unsigned int line, argument
202 caller, line, errstr, err_fn);
229 int __ext4_journal_get_write_access(const char *where, unsigned int line, argument
241 ext4_journal_abort_handle(where, line, __func_
90 __ext4_journal_start_sb(struct inode *inode, struct super_block *sb, unsigned int line, int type, int blocks, int rsv_blocks, int revoke_creds) argument
264 __ext4_forget(const char *where, unsigned int line, handle_t *handle, int is_metadata, struct inode *inode, struct buffer_head *bh, ext4_fsblk_t blocknr) argument
318 __ext4_journal_get_create_access(const char *where, unsigned int line, handle_t *handle, struct super_block *sb, struct buffer_head *bh, enum ext4_journal_trigger_type trigger_type) argument
342 __ext4_handle_dirty_metadata(const char *where, unsigned int line, handle_t *handle, struct inode *inode, struct buffer_head *bh) argument
[all...]
/linux-master/scripts/
H A Dcheckpatch.pl90 --no-signoff do not check for 'Signed-off-by' line
93 --terse one line per report
111 --max-line-length=n set the maximum line length, (default $max_line_length)
126 If correctable single-line errors exist, create
226 my $line = $_;
228 $line =~ s/\s*\n?$//g;
229 $line =~ s/^\s*//g;
230 $line =~ s/\s+/ /g;
232 next if ($line
[all...]

Completed in 238 milliseconds

1234567891011>>