| /OK3568_Linux_fs/yocto/poky/bitbake/lib/ |
| H A D | codegen.py | 102 def newline(self, node=None, extra=0): member in SourceGenerator 118 self.newline() 146 self.newline(decorator) 153 self.newline(node) 162 self.newline(node) 168 self.newline(node) 176 self.newline(node) 182 self.newline(node) 186 self.newline(extra=1) 188 self.newline(node) [all …]
|
| /OK3568_Linux_fs/u-boot/tools/patman/ |
| H A D | terminal.py | 31 def __init__(self, text, newline, colour): argument 33 self.newline = newline 37 return 'newline=%s, colour=%s, text=%s' % (self.newline, self.colour, 40 def Print(text='', newline=True, colour=None): argument 52 print_test_list.append(PrintLine(text, newline, colour)) 58 if newline: 89 if line.newline:
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/exec/ |
| H A D | binfmt_script | 44 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="")
|
| /OK3568_Linux_fs/kernel/tools/scripts/ |
| H A 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 …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/bin/ |
| H A D | tzselect | 200 newline=' 202 IFS=$newline 430 *"$newline"*) 462 *"$newline"*) 527 ?*%?*%) say >&2 " $country$newline $region";; 529 %?*%?*) say >&2 " coord $coord$newline $region";;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/bin/ |
| H A D | tzselect | 200 newline=' 202 IFS=$newline 430 *"$newline"*) 462 *"$newline"*) 527 ?*%?*%) say >&2 " $country$newline $region";; 529 %?*%?*) say >&2 " coord $coord$newline $region";;
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | ini.c | 84 int newline = 1; in memgets() local 91 newline = 0; in memgets() 93 len = min((end - *mem) + newline, num); in memgets() 99 *memsize -= (end - *mem) + newline; in memgets() 100 *mem += (end - *mem) + newline; in memgets()
|
| /OK3568_Linux_fs/buildroot/package/libhid/ |
| H A D | 0002-no-newline-in-ldflags.patch | 1 Fix improper usage of macro that introduces a wrong newline 3 The MD_CONF_FLAGS() macro was used with a final newline that 4 introduces an invalid newline in the middle of the macro expansion
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/parallel-deqp-runner/parallel-deqp-runner/ |
| H A D | 0001-memmove-and-memchr-are-C-APIs-not-C-std-namespace.patch | 13 255 | while (!(newline = (char *)std::memchr(buf_.data(), '\n', valid_sz_)) && 36 char *newline; 38 - while (!(newline = (char *)std::memchr(buf_.data(), '\n', valid_sz_)) && 39 + while (!(newline = (char *)memchr(buf_.data(), '\n', valid_sz_)) &&
|
| /OK3568_Linux_fs/kernel/drivers/staging/greybus/ |
| H A D | uart.c | 485 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() 499 newline.data_bits = 5; in gb_tty_set_termios() 502 newline.data_bits = 6; in gb_tty_set_termios() 505 newline.data_bits = 7; in gb_tty_set_termios() 509 newline.data_bits = 8; in gb_tty_set_termios() 517 newline.rate = gb_tty->line_coding.rate; in gb_tty_set_termios() 529 newline.flow_control = GB_SERIAL_AUTO_RTSCTS_EN; in gb_tty_set_termios() [all …]
|
| /OK3568_Linux_fs/external/xserver/os/ |
| H A D | log.c | 593 static Bool newline = TRUE; in LogSWrite() local 608 if (newline) in LogSWrite() 610 newline = end_line; in LogSWrite() 703 Bool newline; in LogVMessageVerb() local 726 newline = (buf[len - 1] == '\n'); in LogVMessageVerb() 727 LogSWrite(verb, buf, len, newline); in LogVMessageVerb() 768 Bool newline; in LogVMessageVerbSigSafe() local 786 newline = (len > 0 && buf[len - 1] == '\n'); in LogVMessageVerbSigSafe() 787 LogSWrite(verb, buf, len, newline); in LogVMessageVerbSigSafe() 797 Bool newline; in LogVHdrMessageVerb() local [all …]
|
| /OK3568_Linux_fs/kernel/scripts/coccinelle/misc/ |
| H A D | newline_in_nl_msg.cocci | 3 /// 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)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-connectivity/avahi/files/ |
| H A D | local-ping.patch | 42 \ No newline at end of file 59 \ No newline at end of file 118 \ No newline at end of file 135 \ No newline at end of file 152 \ No newline at end of file
|
| /OK3568_Linux_fs/buildroot/package/avahi/ |
| H A D | 0001-Fix-NULL-pointer-crashes-from-175.patch | 41 \ No newline at end of file 58 \ No newline at end of file 117 \ No newline at end of file 134 \ No newline at end of file 151 \ No newline at end of file
|
| /OK3568_Linux_fs/kernel/drivers/mtd/devices/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/rcutorture/bin/ |
| H A D | kvm-test-1-run.sh | 260 if test "$newline" != "$oldline" && echo $newline | grep -q ' [0-9]\+us : ' 269 if test "$newline" != "$oldline" -a "$last_ts" -lt $((seconds + $TORTURE_SHUTDOWN_GRACE)) 279 oldline=$newline
|
| /OK3568_Linux_fs/kernel/drivers/usb/serial/ |
| H A D | xr_usb_serial_common.c | 908 struct usb_cdc_line_coding newline; in xr_usb_serial_tty_ioctl() local 1047 memcpy(&newline,&(xr_usb_serial->line),sizeof(struct usb_cdc_line_coding)); in xr_usb_serial_tty_ioctl() 1049 rv = xr_usb_serial_set_line(xr_usb_serial,&newline); in xr_usb_serial_tty_ioctl() 1111 struct usb_cdc_line_coding newline; in xr_usb_serial_tty_set_termios() local 1114 newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty)); in xr_usb_serial_tty_set_termios() 1115 newline.bCharFormat = termios->c_cflag & CSTOPB ? 1 : 0; in xr_usb_serial_tty_set_termios() 1116 newline.bParityType = termios->c_cflag & PARENB ? in xr_usb_serial_tty_set_termios() 1122 newline.bDataBits = 9; in xr_usb_serial_tty_set_termios() 1126 newline.bDataBits = 6; in xr_usb_serial_tty_set_termios() 1129 newline.bDataBits = 7; in xr_usb_serial_tty_set_termios() [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/compress/ |
| H A D | _pipecompress.py | 19 cls, filename, mode="rb", *, encoding=None, errors=None, newline=None, **kwargs argument 50 if newline is not None: 63 binary_file, encoding, errors, newline, write_through=True
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/ftrace/ |
| H A D | ftracetest | 227 newline="\n" 229 newline= 232 printf "$*$newline" 233 [ "$LOG_FILE" ] && printf "$*$newline" | strip_esc >> $LOG_FILE
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/iostreams/ |
| H A D | char_traits.hpp | 51 static char newline() { return '\n'; } in newline() function 62 static wchar_t newline() { return L'\n'; } in newline() function
|
| /OK3568_Linux_fs/kernel/fs/ocfs2/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/drivers/usb/class/ |
| H A D | cdc-acm.c | 1060 struct usb_cdc_line_coding newline; in acm_tty_set_termios() local 1063 newline.dwDTERate = cpu_to_le32(tty_get_baud_rate(tty)); in acm_tty_set_termios() 1064 newline.bCharFormat = termios->c_cflag & CSTOPB ? 2 : 0; in acm_tty_set_termios() 1065 newline.bParityType = termios->c_cflag & PARENB ? in acm_tty_set_termios() 1070 newline.bDataBits = 5; in acm_tty_set_termios() 1073 newline.bDataBits = 6; in acm_tty_set_termios() 1076 newline.bDataBits = 7; in acm_tty_set_termios() 1080 newline.bDataBits = 8; in acm_tty_set_termios() 1087 newline.dwDTERate = acm->line.dwDTERate; in acm_tty_set_termios() 1096 if (memcmp(&acm->line, &newline, sizeof newline)) { in acm_tty_set_termios() [all …]
|
| /OK3568_Linux_fs/u-boot/tools/buildman/ |
| H A D | builder.py | 368 Print(' ' * (self.last_line_len - length), newline=False) 369 Print('\r', newline=False) 418 Print('\r', newline=False) 446 Print(line + name, newline=False) 889 newline=False) 891 Print(msg, colour=color, newline=False) 999 arch_count[arch]), newline=False) 1001 Print(msg, colour=color, newline=False) 1126 Print(' ' + line, newline=True, colour=col) 1385 newline=False) [all …]
|
| /OK3568_Linux_fs/kernel/kernel/printk/ |
| H A D | printk_safe.c | 162 static const char newline[] = KERN_CONT "\n"; in printk_safe_flush_buffer() local 165 printk_safe_flush_line(newline, strlen(newline)); in printk_safe_flush_buffer()
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A 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()
|