Searched refs:line (Results 251 - 275 of 791) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/leds/
H A Dleds-sc27xx-bltc.c51 u8 line; member in struct:sc27xx_led
84 return leds->priv->base + SC27XX_LEDS_OFFSET * leds->line;
91 u8 ctrl_shift = SC27XX_CTRL_SHIFT * leds->line;
111 u8 ctrl_shift = SC27XX_CTRL_SHIFT * leds->line;
152 u8 ctrl_shift = SC27XX_CTRL_SHIFT * leds->line;
178 u8 ctrl_shift = SC27XX_CTRL_SHIFT * leds->line;
256 led->line = i;
/linux-master/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_hw_pingpong.c195 u32 line = 0xFFFF; local
205 return line;
207 line = DPU_REG_READ(c, PP_INT_COUNT_VAL) & 0xFFFF;
209 if (line < init)
210 line += (0xFFFF - init);
212 line -= init;
214 return line;
/linux-master/drivers/tty/serial/8250/
H A D8250_of.c28 int line; member in struct:of_serial_info
219 info->line = ret;
231 * Release a line
237 serial8250_unregister_port(info->line);
249 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
252 serial8250_suspend_port(info->line);
264 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
272 serial8250_resume_port(info->line);
/linux-master/scripts/
H A Dget_feat.pl55 # Displays an error message, printing file name and line
180 parse_error($file, $ln, "line is invalid", $_);
433 my $line = "";
446 if ($line ne "") {
447 push @lines, $line;
448 $line = "";
450 $line = "- **" . $status . "**: " . $arch;
451 } elsif (length($line) + length ($arch) + 2 < $status_size) {
452 $line .= ", " . $arch;
454 push @lines, $line;
[all...]
/linux-master/scripts/kconfig/
H A Dnconf.gui.c154 int get_line_length(const char *line) argument
157 while (*line != '\0' && *line != '\n') {
158 line++;
172 /* do not go over end of line */
176 const char *line = get_line(text, i); local
177 int len = get_line_length(line);
178 strncpy(tmp, line, min(len, x));
219 /* find the widest line of msg: */
222 const char *line local
334 const char *line = get_line(prompt, i); local
536 const char *line = get_line(text, i); local
[all...]
/linux-master/arch/x86/kernel/cpu/mtrr/
H A Dif.c90 * Format of control line:
100 char line[LINE_SIZE]; local
104 memset(line, 0, LINE_SIZE);
107 length = strncpy_from_user(line, buf, len);
111 linelen = strlen(line);
112 ptr = line + linelen - 1;
116 if (!strncmp(line, "disable=", 8)) {
117 reg = simple_strtoul(line + 8, &ptr, 0);
124 if (strncmp(line, "base=", 5))
127 base = simple_strtoull(line
[all...]
/linux-master/drivers/tty/
H A Dgoldfish.c124 static void goldfish_tty_do_write(int line, const u8 *buf, size_t count) argument
126 struct goldfish_tty *qtty = &goldfish_ttys[line];
294 unsigned int line; local
317 line = goldfish_tty_current_line_count;
319 line = pdev->id;
321 if (line >= goldfish_tty_line_count) {
335 qtty = &goldfish_ttys[line];
379 line, &pdev->dev);
390 qtty->console.index = line;
/linux-master/drivers/mtd/tests/
H A Dreadtest.c82 char line[128]; local
88 char *p = line;
93 printk(KERN_CRIT "%s\n", line);
102 char *p = line;
108 printk(KERN_CRIT "%s\n", line);
/linux-master/tools/perf/scripts/python/Perf-Trace-Util/
H A DContext.c143 unsigned int line = 0; local
160 srcfile = get_srcline_split(dso, map__rip_2objdump(map, addr), &line);
164 srccode = find_sourceline(srcfile, line, &len);
165 result = Py_BuildValue("(sIs#)", srcfile, line, srccode, (Py_ssize_t)len);
167 result = Py_BuildValue("(sI)", srcfile, line);
199 METH_VARARGS, "Get source file name and line number."},
201 METH_VARARGS, "Get source file name, line number and line."},
/linux-master/include/trace/events/
H A D9p.h181 __dynamic_array(unsigned char, line,
189 memcpy(__get_dynamic_array(line), pdu->sdata,
190 __get_dynamic_array_len(line));
194 __entry->tag, __get_dynamic_array_len(line),
195 __get_dynamic_array(line))
/linux-master/tools/perf/ui/gtk/
H A Dannotate.c81 char *line = g_markup_escape_text(dl->al.line, -1); local
86 if (!line)
94 ret += scnprintf(buf + ret, size - ret, "%s", line);
98 g_free(line);
/linux-master/drivers/net/pse-pd/
H A Dpd692x0.c762 char *line, size_t size)
769 memset(line, 0, PD692X0_FW_LINE_MAX_SZ);
772 line[i] = '\r';
773 line[i + 1] = '\n';
776 line[i] = *data;
823 const char line[PD692X0_FW_LINE_MAX_SZ],
828 while (*line != 0) {
829 ret = i2c_master_send(client, line, 1);
832 line++;
957 char line[PD692X0_FW_LINE_MAX_S local
761 pd692x0_fw_get_next_line(const u8 *data, char *line, size_t size) argument
822 pd692x0_fw_write_line(const struct i2c_client *client, const char line[PD692X0_FW_LINE_MAX_SZ], const bool last_line) argument
[all...]
/linux-master/tools/testing/selftests/net/af_unix/
H A Dscm_rights.c72 char *line = NULL; local
81 while (getline(&line, &unused, f) != -1) {
84 if (strncmp(line, variant->name, len))
87 ret = sscanf(line + len, "%d %d", &unused2, &sockets);
93 free(line);
/linux-master/tools/power/pm-graph/
H A Dsleepgraph.py348 msg = 'Signal %s caused a tool exit, line %d' % (signame, frame.f_lineno)
466 for line in fp:
467 if re.match('^processor[ \t]*:[ \t]*[0-9]*', line):
471 for line in fp:
472 m = re.match('^MemTotal:[ \t]*(?P<sz>[0-9]*) *kB', line)
475 m = re.match('^MemFree:[ \t]*(?P<sz>[0-9]*) *kB', line)
480 for line in fp:
481 if line.startswith('PRETTY_NAME='):
482 self.osversion = line[12:].strip().replace('"', '')
537 for line i
[all...]
/linux-master/scripts/gdb/linux/
H A Ddmesg.py137 for line in text.splitlines():
138 msg = u"[{time:12.6f}] {line}\n".format(
140 line=line)
/linux-master/Documentation/sphinx/
H A Dkerneldoc.py134 for line in lines:
135 match = line_regex.search(line)
142 result.append(line, doc + ": " + filename, lineoffset)
/linux-master/include/linux/
H A Dserial_8250.h178 void serial8250_unregister_port(int line);
179 void serial8250_suspend_port(int line);
180 void serial8250_resume_port(int line);
/linux-master/include/asm-generic/
H A Dbug.h27 void __warn(const char *file, int line, void *caller, unsigned taint,
45 unsigned short line; member in struct:bug_entry
91 void warn_slowpath_fmt(const char *file, const int line, unsigned taint,
219 * a stand alone line statement or as a condition in an if ()
/linux-master/include/acpi/
H A Dacoutput.h198 * Error reporting. Callers module and line number are inserted by AE_INFO,
255 * line number, function name, module(file) name, component ID
297 #define ACPI_DO_DEBUG_PRINT(function, level, line, filename, modulename, component, ...) \
301 function (level, line, filename, modulename, component, __VA_ARGS__); \
305 #define ACPI_ACTUAL_DEBUG(level, line, filename, modulename, component, ...) \
306 ACPI_DO_DEBUG_PRINT (acpi_debug_print, level, line, \
309 #define ACPI_ACTUAL_DEBUG_RAW(level, line, filename, modulename, component, ...) \
310 ACPI_DO_DEBUG_PRINT (acpi_debug_print_raw, level, line, \
/linux-master/drivers/pinctrl/bcm/
H A Dpinctrl-bcm63xx.c26 unsigned int line = offset % BCM63XX_BANK_GPIOS; local
30 *mask = BIT(line);
/linux-master/arch/parisc/kernel/vdso32/
H A Dvdso32.lds.S64 .line 0 : { *(.line) }
/linux-master/arch/parisc/kernel/vdso64/
H A Dvdso64.lds.S62 .line 0 : { *(.line) }
/linux-master/drivers/mfd/
H A Dtwl4030-irq.c36 * I2C masters. Each has a dedicated IRQ line, and dedicated IRQ status
53 /* Linux could (eventually) use either IRQ line */
228 * For example, it supports only one interrupt output line.
315 static int twl4030_init_sih_modules(unsigned line) argument
322 /* line 0 == int1_n signal; line 1 == int2_n signal */
323 if (line > 1)
326 irq_line = line;
328 /* disable all interrupts on our line */
337 if (sih->irq_lines <= line)
[all...]
/linux-master/tools/memory-model/scripts/
H A Dcmplitmushist.sh5 # one full pathname per line. Outputs comparison results followed by
78 echo Missing Observation line "(e.g., syntax error)": $2
112 echo Missing Observation line "(e.g., syntax error)": $noobsline 1>&2
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dfantog.c85 therm->func->pwm_ctrl(therm, fan->func.line, false);
97 ret = therm->func->pwm_ctrl(therm, func->line, false);

Completed in 1224 milliseconds

<<11121314151617181920>>