Home
last modified time | relevance | path

Searched refs:newline (Results 1 – 25 of 41) sorted by relevance

12

/linux-5.19.10/tools/testing/selftests/exec/
Dbinfmt_script.py44 fill="A", arg="", newline="\n", hashbang="#!"): argument
67 buf=hashbang + leading + root + middle + target + arg + newline
68 if len(newline) > 0:
123 fill="", target="", newline="")
126 target="", newline="")
149 test(name="one-under-no-nl", size=SIZE-1, newline="")
151 test(name="half-under-no-nl", size=int(SIZE/2), newline="")
159 test(name="two-under-no-nl", size=SIZE-2, newline="")
164 test(name="two-under-no-nl", size=int(SIZE/2), newline="")
/linux-5.19.10/tools/scripts/
Dutilities.mak1 # This allows us to work with the newline character:
2 define newline macro
6 newline := $(newline) macro
13 # what should replace a newline when escaping
23 # single space each newline character in the output
27 # The only solution is to change each newline into
32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1))
40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1))
108 # At least GNU make gets confused by expanding a newline
115 # not it contains a newline.
[all …]
/linux-5.19.10/drivers/soc/apple/
Drtkit-crashlog.c45 u8 *newline = memchr(ptr, '\n', end - ptr); in apple_rtkit_crashlog_dump_str() local
47 if (newline) { in apple_rtkit_crashlog_dump_str()
48 u8 tmp = *newline; in apple_rtkit_crashlog_dump_str()
49 *newline = '\0'; in apple_rtkit_crashlog_dump_str()
52 *newline = tmp; in apple_rtkit_crashlog_dump_str()
53 ptr = newline + 1; in apple_rtkit_crashlog_dump_str()
/linux-5.19.10/tools/testing/selftests/rcutorture/bin/
Dkvm-test-1-run-qemu.sh152 newline="`tail $resdir/console.log`"
153 if test "$newline" != "$oldline" && echo $newline | grep -q ' [0-9]\+us : '
162 …if test "$newline" != "$oldline" && test "$last_ts" -lt $((seconds + $TORTURE_SHUTDOWN_GRACE)) && …
176 oldline=$newline
/linux-5.19.10/scripts/coccinelle/misc/
Dnewline_in_nl_msg.cocci3 /// Catch strings ending in newline with GENL_SET_ERR_MSG, NL_SET_ERR_MSG,
59 msg="WARNING avoid newline at end of message in %s" % (fname)
74 msg="WARNING avoid newline at end of message in %s" % (fname)
/linux-5.19.10/drivers/staging/greybus/
Duart.c485 struct gb_uart_set_line_coding_request newline; in gb_tty_set_termios() local
490 newline.rate = cpu_to_le32(tty_get_baud_rate(tty)); in gb_tty_set_termios()
491 newline.format = termios->c_cflag & CSTOPB ? in gb_tty_set_termios()
493 newline.parity = termios->c_cflag & PARENB ? in gb_tty_set_termios()
497 newline.data_bits = tty_get_char_size(termios->c_cflag); in gb_tty_set_termios()
503 newline.rate = gb_tty->line_coding.rate; in gb_tty_set_termios()
515 newline.flow_control = GB_SERIAL_AUTO_RTSCTS_EN; in gb_tty_set_termios()
517 newline.flow_control = 0; in gb_tty_set_termios()
519 if (memcmp(&gb_tty->line_coding, &newline, sizeof(newline))) { in gb_tty_set_termios()
520 memcpy(&gb_tty->line_coding, &newline, sizeof(newline)); in gb_tty_set_termios()
/linux-5.19.10/tools/testing/selftests/ftrace/
Dftracetest227 newline="\n"
229 newline=
232 printf "$*$newline"
233 [ "$LOG_FILE" ] && printf "$*$newline" | strip_esc >> $LOG_FILE
/linux-5.19.10/fs/ocfs2/
Dstack_user.c131 char newline; member
141 char newline; member
151 char newline; member
373 if ((msg->space != ' ') || (msg->newline != '\n')) in ocfs2_control_do_setnode_msg()
375 msg->space = msg->newline = '\0'; in ocfs2_control_do_setnode_msg()
407 (msg->newline != '\n')) in ocfs2_control_do_setversion_msg()
409 msg->space1 = msg->space2 = msg->newline = '\0'; in ocfs2_control_do_setversion_msg()
454 (msg->newline != '\n')) in ocfs2_control_do_down_msg()
456 msg->space1 = msg->space2 = msg->newline = '\0'; in ocfs2_control_do_down_msg()
/linux-5.19.10/drivers/mtd/devices/
Dphram.c234 char *newline = strrchr(str, '\n'); in kill_final_newline() local
236 if (newline && !newline[1]) in kill_final_newline()
237 *newline = 0; in kill_final_newline()
Dblock2mtd.c373 char *newline = strrchr(str, '\n'); in kill_final_newline() local
374 if (newline && !newline[1]) in kill_final_newline()
375 *newline = 0; in kill_final_newline()
/linux-5.19.10/scripts/
Dunifdef.c193 static const char *newline; /* input file format */ variable
523 "%s%s", replacement, newline); in keywordedit()
564 printf("#line %d%s", linenum, newline); in flushline()
571 fputs(newline, output); in flushline()
651 if (newline == NULL) { in parseline()
653 newline = newline_crlf; in parseline()
655 newline = newline_unix; in parseline()
725 strcpy(tline + len, newline); in parseline()
726 cp += strlen(newline); in parseline()
Dcheckpatch.pl5570 my $newline = "${space}if (";
5571 $newline .= '!' if defined($not);
5572 $newline .= '(' if (defined $not && defined($test) && defined($against));
5573 $newline .= "$assigned";
5574 $newline .= " $test $against" if (defined($test) && defined($against));
5575 $newline .= ')' if (defined $not && defined($test) && defined($against));
5576 $newline .= ')';
5577 $newline .= " {" if (defined($brace));
5578 fix_insert_line($fixlinenr + 1, $newline);
/linux-5.19.10/tools/testing/selftests/user_events/
Dftrace_test.c73 char *newline; in get_print_fmt() local
90 newline = strchr(buffer, '\n'); in get_print_fmt()
92 if (newline) in get_print_fmt()
93 *newline = '\0'; in get_print_fmt()
/linux-5.19.10/drivers/usb/class/
Dcdc-acm.c1056 struct usb_cdc_line_coding newline; in acm_tty_set_termios() local
1059 newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty)); in acm_tty_set_termios()
1060 newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0; in acm_tty_set_termios()
1061 newline.bParityType = termios->c_cflag & PARENB ? in acm_tty_set_termios()
1064 newline.bDataBits = tty_get_char_size(termios->c_cflag); in acm_tty_set_termios()
1070 newline.dwDTERate = acm->line.dwDTERate; in acm_tty_set_termios()
1079 if (memcmp(&acm->line, &newline, sizeof newline)) { in acm_tty_set_termios()
1080 memcpy(&acm->line, &newline, sizeof newline); in acm_tty_set_termios()
1083 le32_to_cpu(newline.dwDTERate), in acm_tty_set_termios()
1084 newline.bCharFormat, newline.bParityType, in acm_tty_set_termios()
[all …]
/linux-5.19.10/block/
Dbadblocks.c520 char newline; in badblocks_store() local
522 switch (sscanf(page, "%llu %d%c", &sector, &length, &newline)) { in badblocks_store()
524 if (newline != '\n') in badblocks_store()
/linux-5.19.10/scripts/kconfig/tests/preprocess/builtin_func/
DKconfig20 # Every newline in the output is replaced with a space,
/linux-5.19.10/Documentation/admin-guide/kdump/
Dgdbmacros.txt183 set var $newline = 1
224 set var $newline = 0
234 if ($newline)
/linux-5.19.10/tools/perf/util/
Dstat-display.c147 bool newline; member
162 os->newline = true; in new_line_std()
183 bool newline = os->newline; in print_metric_std() local
185 os->newline = false; in print_metric_std()
192 if (newline) in print_metric_std()
/linux-5.19.10/drivers/gpu/drm/i915/display/
Dintel_display_debugfs.c1643 char *newline; in i915_hpd_storm_ctl_write() local
1655 newline = strchr(tmp, '\n'); in i915_hpd_storm_ctl_write()
1656 if (newline) in i915_hpd_storm_ctl_write()
1657 *newline = '\0'; in i915_hpd_storm_ctl_write()
1722 char *newline; in i915_hpd_short_storm_ctl_write() local
1736 newline = strchr(tmp, '\n'); in i915_hpd_short_storm_ctl_write()
1737 if (newline) in i915_hpd_short_storm_ctl_write()
1738 *newline = '\0'; in i915_hpd_short_storm_ctl_write()
/linux-5.19.10/Documentation/s390/
D3270.rst221 Running" and nothing typed, the application receives a newline.)
256 driver appends a newline character and sends it to the tty driver;
257 otherwise the driver strips the "^n" and does not append a newline.
/linux-5.19.10/Documentation/ABI/testing/
Dconfigfs-usb-gadget-uvc223 separated by newline can be specified
282 separated by newline can be specified
Dsysfs-driver-wacom91 Writing the character sequence '*' followed by a newline to
/linux-5.19.10/Documentation/filesystems/nfs/
Drpc-cache.rst209 with precisely one newline character which should be at the end.
219 as them selves. At the very least, space, newline, nul, and
/linux-5.19.10/Documentation/admin-guide/
Dbootconfig.rst23 has to be terminated by semi-colon (``;``) or newline (``\n``).
126 with hash ("#") until newline ("\n") will be ignored.
/linux-5.19.10/Documentation/filesystems/spufs/
Dspufs.rst178 required length for the pointer value plus a newline character,
246 required length for the digit plus a newline character, subse-

12