/Linux-v5.4/tools/scripts/ |
D | utilities.mak | 1 # 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-v5.4/drivers/staging/greybus/ |
D | uart.c | 498 struct gb_tty_line_coding newline; in gb_tty_set_termios() local 501 newline.rate = cpu_to_le32(tty_get_baud_rate(tty)); in gb_tty_set_termios() 502 newline.format = termios->c_cflag & CSTOPB ? in gb_tty_set_termios() 504 newline.parity = termios->c_cflag & PARENB ? in gb_tty_set_termios() 510 newline.data_bits = 5; in gb_tty_set_termios() 513 newline.data_bits = 6; in gb_tty_set_termios() 516 newline.data_bits = 7; in gb_tty_set_termios() 520 newline.data_bits = 8; in gb_tty_set_termios() 528 newline.rate = gb_tty->line_coding.rate; in gb_tty_set_termios() 540 newline.flow_control |= GB_SERIAL_AUTO_RTSCTS_EN; in gb_tty_set_termios() [all …]
|
/Linux-v5.4/drivers/mtd/devices/ |
D | phram.c | 191 char *newline = strrchr(str, '\n'); in kill_final_newline() local 193 if (newline && !newline[1]) in kill_final_newline() 194 *newline = 0; in kill_final_newline()
|
D | block2mtd.c | 367 char *newline = strrchr(str, '\n'); in kill_final_newline() local 368 if (newline && !newline[1]) in kill_final_newline() 369 *newline = 0; in kill_final_newline()
|
/Linux-v5.4/tools/testing/selftests/rcutorture/bin/ |
D | kvm-test-1-run.sh | 225 if test "$newline" != "$oldline" && echo $newline | grep -q ' [0-9]\+us : ' 234 if test "$newline" != "$oldline" -a "$last_ts" -lt $((seconds + $TORTURE_SHUTDOWN_GRACE)) 244 oldline=$newline
|
/Linux-v5.4/tools/testing/selftests/ftrace/ |
D | ftracetest | 202 newline="\n" 204 newline= 207 printf "$*$newline" 208 [ "$LOG_FILE" ] && printf "$*$newline" | strip_esc >> $LOG_FILE
|
/Linux-v5.4/fs/ocfs2/ |
D | stack_user.c | 133 char newline; member 143 char newline; member 153 char newline; member 375 if ((msg->space != ' ') || (msg->newline != '\n')) in ocfs2_control_do_setnode_msg() 377 msg->space = msg->newline = '\0'; in ocfs2_control_do_setnode_msg() 409 (msg->newline != '\n')) in ocfs2_control_do_setversion_msg() 411 msg->space1 = msg->space2 = msg->newline = '\0'; in ocfs2_control_do_setversion_msg() 456 (msg->newline != '\n')) in ocfs2_control_do_down_msg() 458 msg->space1 = msg->space2 = msg->newline = '\0'; in ocfs2_control_do_down_msg()
|
/Linux-v5.4/kernel/printk/ |
D | printk_safe.c | 159 static const char newline[] = KERN_CONT "\n"; in printk_safe_flush_buffer() local 162 printk_safe_flush_line(newline, strlen(newline)); in printk_safe_flush_buffer()
|
/Linux-v5.4/drivers/usb/class/ |
D | cdc-acm.c | 1018 struct usb_cdc_line_coding newline; in acm_tty_set_termios() local 1021 newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty)); in acm_tty_set_termios() 1022 newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0; in acm_tty_set_termios() 1023 newline.bParityType = termios->c_cflag & PARENB ? in acm_tty_set_termios() 1028 newline.bDataBits = 5; in acm_tty_set_termios() 1031 newline.bDataBits = 6; in acm_tty_set_termios() 1034 newline.bDataBits = 7; in acm_tty_set_termios() 1038 newline.bDataBits = 8; in acm_tty_set_termios() 1045 newline.dwDTERate = acm->line.dwDTERate; in acm_tty_set_termios() 1054 if (memcmp(&acm->line, &newline, sizeof newline)) { in acm_tty_set_termios() [all …]
|
/Linux-v5.4/scripts/ |
D | unifdef.c | 193 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()
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-bus-counter-ftm-quaddec | 7 newline characters.
|
D | configfs-usb-gadget-uvc | 198 separated by newline can be specified 253 separated by newline can be specified
|
D | sysfs-driver-wacom | 89 Writing the character sequence '*' followed by a newline to
|
D | sysfs-bus-counter | 66 newline characters.
|
/Linux-v5.4/block/ |
D | badblocks.c | 522 char newline; in badblocks_store() local 524 switch (sscanf(page, "%llu %d%c", §or, &length, &newline)) { in badblocks_store() 526 if (newline != '\n') in badblocks_store()
|
/Linux-v5.4/scripts/kconfig/tests/preprocess/builtin_func/ |
D | Kconfig | 20 # Every newline in the output is replaced with a space,
|
/Linux-v5.4/Documentation/admin-guide/kdump/ |
D | gdbmacros.txt | 182 set $newline = 1 198 set $newline = 0 208 if ($newline)
|
/Linux-v5.4/tools/perf/util/ |
D | stat-display.c | 134 bool newline; member 148 os->newline = true; in new_line_std() 169 bool newline = os->newline; in print_metric_std() local 171 os->newline = false; in print_metric_std() 178 if (newline) in print_metric_std()
|
/Linux-v5.4/Documentation/s390/ |
D | 3270.rst | 221 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-v5.4/Documentation/filesystems/nfs/ |
D | rpc-cache.txt | 192 with precisely one newline character which should be at the end. 201 as them selves. At the very least, space, newline, nul, and
|
D | knfsd-stats.txt | 15 separated by newline '\n' characters. Lines beginning with a hash
|
/Linux-v5.4/drivers/gpu/drm/i915/ |
D | i915_debugfs.c | 4035 char *newline; in i915_hpd_storm_ctl_write() local 4047 newline = strchr(tmp, '\n'); in i915_hpd_storm_ctl_write() 4048 if (newline) in i915_hpd_storm_ctl_write() 4049 *newline = '\0'; in i915_hpd_storm_ctl_write() 4113 char *newline; in i915_hpd_short_storm_ctl_write() local 4127 newline = strchr(tmp, '\n'); in i915_hpd_short_storm_ctl_write() 4128 if (newline) in i915_hpd_short_storm_ctl_write() 4129 *newline = '\0'; in i915_hpd_short_storm_ctl_write()
|
/Linux-v5.4/Documentation/process/ |
D | deprecated.rst | 78 NUL or newline terminated.
|
/Linux-v5.4/Documentation/networking/ |
D | netconsole.txt | 154 newline is used as the delimeter.
|
/Linux-v5.4/Documentation/kbuild/ |
D | kconfig-macro-language.rst | 111 and returned as the value of the function. Every newline in the output is
|